UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

151 lines (150 loc) 8.13 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface GenericArtifactsContentArtifactByPathConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generic_artifacts_content_artifact_by_path#artifact_path GenericArtifactsContentArtifactByPath#artifact_path} */ readonly artifactPath: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generic_artifacts_content_artifact_by_path#content GenericArtifactsContentArtifactByPath#content} */ readonly content?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generic_artifacts_content_artifact_by_path#id GenericArtifactsContentArtifactByPath#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/generic_artifacts_content_artifact_by_path#repository_id GenericArtifactsContentArtifactByPath#repository_id} */ readonly repositoryId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generic_artifacts_content_artifact_by_path#source GenericArtifactsContentArtifactByPath#source} */ readonly source?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generic_artifacts_content_artifact_by_path#version GenericArtifactsContentArtifactByPath#version} */ readonly version: string; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generic_artifacts_content_artifact_by_path#timeouts GenericArtifactsContentArtifactByPath#timeouts} */ readonly timeouts?: GenericArtifactsContentArtifactByPathTimeouts; } export interface GenericArtifactsContentArtifactByPathTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generic_artifacts_content_artifact_by_path#create GenericArtifactsContentArtifactByPath#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generic_artifacts_content_artifact_by_path#delete GenericArtifactsContentArtifactByPath#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generic_artifacts_content_artifact_by_path#update GenericArtifactsContentArtifactByPath#update} */ readonly update?: string; } export declare function genericArtifactsContentArtifactByPathTimeoutsToTerraform(struct?: GenericArtifactsContentArtifactByPathTimeouts | cdktf.IResolvable): any; export declare function genericArtifactsContentArtifactByPathTimeoutsToHclTerraform(struct?: GenericArtifactsContentArtifactByPathTimeouts | cdktf.IResolvable): any; export declare class GenericArtifactsContentArtifactByPathTimeoutsOutputReference 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(): GenericArtifactsContentArtifactByPathTimeouts | cdktf.IResolvable | undefined; set internalValue(value: GenericArtifactsContentArtifactByPathTimeouts | 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/generic_artifacts_content_artifact_by_path oci_generic_artifacts_content_artifact_by_path} */ export declare class GenericArtifactsContentArtifactByPath extends cdktf.TerraformResource { static readonly tfResourceType = "oci_generic_artifacts_content_artifact_by_path"; /** * Generates CDKTF code for importing a GenericArtifactsContentArtifactByPath 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 GenericArtifactsContentArtifactByPath to import * @param importFromId The id of the existing GenericArtifactsContentArtifactByPath that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/generic_artifacts_content_artifact_by_path#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the GenericArtifactsContentArtifactByPath 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/generic_artifacts_content_artifact_by_path oci_generic_artifacts_content_artifact_by_path} 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 GenericArtifactsContentArtifactByPathConfig */ constructor(scope: Construct, id: string, config: GenericArtifactsContentArtifactByPathConfig); get artifactId(): string; private _artifactPath?; get artifactPath(): string; set artifactPath(value: string); get artifactPathInput(): string | undefined; get compartmentId(): string; private _content?; get content(): string; set content(value: string); resetContent(): void; get contentInput(): string | undefined; private _definedTags; get definedTags(): cdktf.StringMap; get displayName(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _repositoryId?; get repositoryId(): string; set repositoryId(value: string); get repositoryIdInput(): string | undefined; get sha256(): string; get sizeInBytes(): string; private _source?; get source(): string; set source(value: string); resetSource(): void; get sourceInput(): string | undefined; get state(): string; get timeCreated(): string; private _version?; get version(): string; set version(value: string); get versionInput(): string | undefined; private _timeouts; get timeouts(): GenericArtifactsContentArtifactByPathTimeoutsOutputReference; putTimeouts(value: GenericArtifactsContentArtifactByPathTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | GenericArtifactsContentArtifactByPathTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }