UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

182 lines (181 loc) 10.2 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface BdsBdsInstancePatchActionConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#bds_instance_id BdsBdsInstancePatchAction#bds_instance_id} */ readonly bdsInstanceId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#cluster_admin_password BdsBdsInstancePatchAction#cluster_admin_password} */ readonly clusterAdminPassword: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#id BdsBdsInstancePatchAction#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/bds_bds_instance_patch_action#version BdsBdsInstancePatchAction#version} */ readonly version: string; /** * patching_config block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#patching_config BdsBdsInstancePatchAction#patching_config} */ readonly patchingConfig?: BdsBdsInstancePatchActionPatchingConfig; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#timeouts BdsBdsInstancePatchAction#timeouts} */ readonly timeouts?: BdsBdsInstancePatchActionTimeouts; } export interface BdsBdsInstancePatchActionPatchingConfig { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#batch_size BdsBdsInstancePatchAction#batch_size} */ readonly batchSize?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#patching_config_strategy BdsBdsInstancePatchAction#patching_config_strategy} */ readonly patchingConfigStrategy: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#wait_time_between_batch_in_seconds BdsBdsInstancePatchAction#wait_time_between_batch_in_seconds} */ readonly waitTimeBetweenBatchInSeconds?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#wait_time_between_domain_in_seconds BdsBdsInstancePatchAction#wait_time_between_domain_in_seconds} */ readonly waitTimeBetweenDomainInSeconds?: number; } export declare function bdsBdsInstancePatchActionPatchingConfigToTerraform(struct?: BdsBdsInstancePatchActionPatchingConfigOutputReference | BdsBdsInstancePatchActionPatchingConfig): any; export declare function bdsBdsInstancePatchActionPatchingConfigToHclTerraform(struct?: BdsBdsInstancePatchActionPatchingConfigOutputReference | BdsBdsInstancePatchActionPatchingConfig): any; export declare class BdsBdsInstancePatchActionPatchingConfigOutputReference 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(): BdsBdsInstancePatchActionPatchingConfig | undefined; set internalValue(value: BdsBdsInstancePatchActionPatchingConfig | undefined); private _batchSize?; get batchSize(): number; set batchSize(value: number); resetBatchSize(): void; get batchSizeInput(): number | undefined; private _patchingConfigStrategy?; get patchingConfigStrategy(): string; set patchingConfigStrategy(value: string); get patchingConfigStrategyInput(): string | undefined; private _waitTimeBetweenBatchInSeconds?; get waitTimeBetweenBatchInSeconds(): number; set waitTimeBetweenBatchInSeconds(value: number); resetWaitTimeBetweenBatchInSeconds(): void; get waitTimeBetweenBatchInSecondsInput(): number | undefined; private _waitTimeBetweenDomainInSeconds?; get waitTimeBetweenDomainInSeconds(): number; set waitTimeBetweenDomainInSeconds(value: number); resetWaitTimeBetweenDomainInSeconds(): void; get waitTimeBetweenDomainInSecondsInput(): number | undefined; } export interface BdsBdsInstancePatchActionTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#create BdsBdsInstancePatchAction#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#delete BdsBdsInstancePatchAction#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#update BdsBdsInstancePatchAction#update} */ readonly update?: string; } export declare function bdsBdsInstancePatchActionTimeoutsToTerraform(struct?: BdsBdsInstancePatchActionTimeouts | cdktf.IResolvable): any; export declare function bdsBdsInstancePatchActionTimeoutsToHclTerraform(struct?: BdsBdsInstancePatchActionTimeouts | cdktf.IResolvable): any; export declare class BdsBdsInstancePatchActionTimeoutsOutputReference 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(): BdsBdsInstancePatchActionTimeouts | cdktf.IResolvable | undefined; set internalValue(value: BdsBdsInstancePatchActionTimeouts | 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/bds_bds_instance_patch_action oci_bds_bds_instance_patch_action} */ export declare class BdsBdsInstancePatchAction extends cdktf.TerraformResource { static readonly tfResourceType = "oci_bds_bds_instance_patch_action"; /** * Generates CDKTF code for importing a BdsBdsInstancePatchAction 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 BdsBdsInstancePatchAction to import * @param importFromId The id of the existing BdsBdsInstancePatchAction that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_patch_action#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the BdsBdsInstancePatchAction 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/bds_bds_instance_patch_action oci_bds_bds_instance_patch_action} 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 BdsBdsInstancePatchActionConfig */ constructor(scope: Construct, id: string, config: BdsBdsInstancePatchActionConfig); private _bdsInstanceId?; get bdsInstanceId(): string; set bdsInstanceId(value: string); get bdsInstanceIdInput(): string | undefined; private _clusterAdminPassword?; get clusterAdminPassword(): string; set clusterAdminPassword(value: string); get clusterAdminPasswordInput(): string | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _version?; get version(): string; set version(value: string); get versionInput(): string | undefined; private _patchingConfig; get patchingConfig(): BdsBdsInstancePatchActionPatchingConfigOutputReference; putPatchingConfig(value: BdsBdsInstancePatchActionPatchingConfig): void; resetPatchingConfig(): void; get patchingConfigInput(): BdsBdsInstancePatchActionPatchingConfig | undefined; private _timeouts; get timeouts(): BdsBdsInstancePatchActionTimeoutsOutputReference; putTimeouts(value: BdsBdsInstancePatchActionTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | BdsBdsInstancePatchActionTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }