rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
227 lines (226 loc) • 15 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface BdsBdsInstanceOperationCertificateManagementsManagementConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#bds_instance_id BdsBdsInstanceOperationCertificateManagementsManagement#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_operation_certificate_managements_management#cluster_admin_password BdsBdsInstanceOperationCertificateManagementsManagement#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_operation_certificate_managements_management#enable_operation_certificate_management BdsBdsInstanceOperationCertificateManagementsManagement#enable_operation_certificate_management}
*/
readonly enableOperationCertificateManagement: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#id BdsBdsInstanceOperationCertificateManagementsManagement#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_operation_certificate_managements_management#renew_operation_certificate_management BdsBdsInstanceOperationCertificateManagementsManagement#renew_operation_certificate_management}
*/
readonly renewOperationCertificateManagement: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#root_certificate BdsBdsInstanceOperationCertificateManagementsManagement#root_certificate}
*/
readonly rootCertificate?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#server_key_password BdsBdsInstanceOperationCertificateManagementsManagement#server_key_password}
*/
readonly serverKeyPassword?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#services BdsBdsInstanceOperationCertificateManagementsManagement#services}
*/
readonly services: string[];
/**
* host_cert_details block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#host_cert_details BdsBdsInstanceOperationCertificateManagementsManagement#host_cert_details}
*/
readonly hostCertDetails?: BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetails[] | cdktf.IResolvable;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#timeouts BdsBdsInstanceOperationCertificateManagementsManagement#timeouts}
*/
readonly timeouts?: BdsBdsInstanceOperationCertificateManagementsManagementTimeouts;
}
export interface BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetails {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#certificate BdsBdsInstanceOperationCertificateManagementsManagement#certificate}
*/
readonly certificate?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#host_name BdsBdsInstanceOperationCertificateManagementsManagement#host_name}
*/
readonly hostName?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#private_key BdsBdsInstanceOperationCertificateManagementsManagement#private_key}
*/
readonly privateKey?: string;
}
export declare function bdsBdsInstanceOperationCertificateManagementsManagementHostCertDetailsToTerraform(struct?: BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetails | cdktf.IResolvable): any;
export declare function bdsBdsInstanceOperationCertificateManagementsManagementHostCertDetailsToHclTerraform(struct?: BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetails | cdktf.IResolvable): any;
export declare class BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetailsOutputReference 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(): BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetails | cdktf.IResolvable | undefined;
set internalValue(value: BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetails | cdktf.IResolvable | undefined);
private _certificate?;
get certificate(): string;
set certificate(value: string);
resetCertificate(): void;
get certificateInput(): string | undefined;
private _hostName?;
get hostName(): string;
set hostName(value: string);
resetHostName(): void;
get hostNameInput(): string | undefined;
private _privateKey?;
get privateKey(): string;
set privateKey(value: string);
resetPrivateKey(): void;
get privateKeyInput(): string | undefined;
}
export declare class BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetailsList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetails[] | 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): BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetailsOutputReference;
}
export interface BdsBdsInstanceOperationCertificateManagementsManagementTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#create BdsBdsInstanceOperationCertificateManagementsManagement#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#delete BdsBdsInstanceOperationCertificateManagementsManagement#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#update BdsBdsInstanceOperationCertificateManagementsManagement#update}
*/
readonly update?: string;
}
export declare function bdsBdsInstanceOperationCertificateManagementsManagementTimeoutsToTerraform(struct?: BdsBdsInstanceOperationCertificateManagementsManagementTimeouts | cdktf.IResolvable): any;
export declare function bdsBdsInstanceOperationCertificateManagementsManagementTimeoutsToHclTerraform(struct?: BdsBdsInstanceOperationCertificateManagementsManagementTimeouts | cdktf.IResolvable): any;
export declare class BdsBdsInstanceOperationCertificateManagementsManagementTimeoutsOutputReference 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(): BdsBdsInstanceOperationCertificateManagementsManagementTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: BdsBdsInstanceOperationCertificateManagementsManagementTimeouts | 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_operation_certificate_managements_management oci_bds_bds_instance_operation_certificate_managements_management}
*/
export declare class BdsBdsInstanceOperationCertificateManagementsManagement extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_bds_bds_instance_operation_certificate_managements_management";
/**
* Generates CDKTF code for importing a BdsBdsInstanceOperationCertificateManagementsManagement 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 BdsBdsInstanceOperationCertificateManagementsManagement to import
* @param importFromId The id of the existing BdsBdsInstanceOperationCertificateManagementsManagement that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_operation_certificate_managements_management#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the BdsBdsInstanceOperationCertificateManagementsManagement 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_operation_certificate_managements_management oci_bds_bds_instance_operation_certificate_managements_management} 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 BdsBdsInstanceOperationCertificateManagementsManagementConfig
*/
constructor(scope: Construct, id: string, config: BdsBdsInstanceOperationCertificateManagementsManagementConfig);
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 _enableOperationCertificateManagement?;
get enableOperationCertificateManagement(): boolean | cdktf.IResolvable;
set enableOperationCertificateManagement(value: boolean | cdktf.IResolvable);
get enableOperationCertificateManagementInput(): boolean | cdktf.IResolvable | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _renewOperationCertificateManagement?;
get renewOperationCertificateManagement(): boolean | cdktf.IResolvable;
set renewOperationCertificateManagement(value: boolean | cdktf.IResolvable);
get renewOperationCertificateManagementInput(): boolean | cdktf.IResolvable | undefined;
private _rootCertificate?;
get rootCertificate(): string;
set rootCertificate(value: string);
resetRootCertificate(): void;
get rootCertificateInput(): string | undefined;
private _serverKeyPassword?;
get serverKeyPassword(): string;
set serverKeyPassword(value: string);
resetServerKeyPassword(): void;
get serverKeyPasswordInput(): string | undefined;
private _services?;
get services(): string[];
set services(value: string[]);
get servicesInput(): string[] | undefined;
private _hostCertDetails;
get hostCertDetails(): BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetailsList;
putHostCertDetails(value: BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetails[] | cdktf.IResolvable): void;
resetHostCertDetails(): void;
get hostCertDetailsInput(): cdktf.IResolvable | BdsBdsInstanceOperationCertificateManagementsManagementHostCertDetails[] | undefined;
private _timeouts;
get timeouts(): BdsBdsInstanceOperationCertificateManagementsManagementTimeoutsOutputReference;
putTimeouts(value: BdsBdsInstanceOperationCertificateManagementsManagementTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | BdsBdsInstanceOperationCertificateManagementsManagementTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}