UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

375 lines (374 loc) 19.8 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VisualBuilderVbInstanceConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#compartment_id VisualBuilderVbInstance#compartment_id} */ readonly compartmentId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#consumption_model VisualBuilderVbInstance#consumption_model} */ readonly consumptionModel?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#defined_tags VisualBuilderVbInstance#defined_tags} */ readonly definedTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#display_name VisualBuilderVbInstance#display_name} */ readonly displayName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#freeform_tags VisualBuilderVbInstance#freeform_tags} */ readonly freeformTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#id VisualBuilderVbInstance#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/visual_builder_vb_instance#idcs_open_id VisualBuilderVbInstance#idcs_open_id} */ readonly idcsOpenId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#is_visual_builder_enabled VisualBuilderVbInstance#is_visual_builder_enabled} */ readonly isVisualBuilderEnabled?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#node_count VisualBuilderVbInstance#node_count} */ readonly nodeCount: number; /** * alternate_custom_endpoints block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#alternate_custom_endpoints VisualBuilderVbInstance#alternate_custom_endpoints} */ readonly alternateCustomEndpoints?: VisualBuilderVbInstanceAlternateCustomEndpoints[] | cdktf.IResolvable; /** * custom_endpoint block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#custom_endpoint VisualBuilderVbInstance#custom_endpoint} */ readonly customEndpoint?: VisualBuilderVbInstanceCustomEndpoint; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#timeouts VisualBuilderVbInstance#timeouts} */ readonly timeouts?: VisualBuilderVbInstanceTimeouts; } export interface VisualBuilderVbInstanceAttachments { } export declare function visualBuilderVbInstanceAttachmentsToTerraform(struct?: VisualBuilderVbInstanceAttachments): any; export declare function visualBuilderVbInstanceAttachmentsToHclTerraform(struct?: VisualBuilderVbInstanceAttachments): any; export declare class VisualBuilderVbInstanceAttachmentsOutputReference 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(): VisualBuilderVbInstanceAttachments | undefined; set internalValue(value: VisualBuilderVbInstanceAttachments | undefined); get isImplicit(): cdktf.IResolvable; get targetId(): string; get targetInstanceUrl(): string; get targetRole(): string; get targetServiceType(): string; } export declare class VisualBuilderVbInstanceAttachmentsList 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): VisualBuilderVbInstanceAttachmentsOutputReference; } export interface VisualBuilderVbInstanceIdcsInfo { } export declare function visualBuilderVbInstanceIdcsInfoToTerraform(struct?: VisualBuilderVbInstanceIdcsInfo): any; export declare function visualBuilderVbInstanceIdcsInfoToHclTerraform(struct?: VisualBuilderVbInstanceIdcsInfo): any; export declare class VisualBuilderVbInstanceIdcsInfoOutputReference 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(): VisualBuilderVbInstanceIdcsInfo | undefined; set internalValue(value: VisualBuilderVbInstanceIdcsInfo | undefined); get idcsAppDisplayName(): string; get idcsAppId(): string; get idcsAppLocationUrl(): string; get idcsAppName(): string; get instancePrimaryAudienceUrl(): string; } export declare class VisualBuilderVbInstanceIdcsInfoList 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): VisualBuilderVbInstanceIdcsInfoOutputReference; } export interface VisualBuilderVbInstanceAlternateCustomEndpoints { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#certificate_secret_id VisualBuilderVbInstance#certificate_secret_id} */ readonly certificateSecretId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#hostname VisualBuilderVbInstance#hostname} */ readonly hostname: string; } export declare function visualBuilderVbInstanceAlternateCustomEndpointsToTerraform(struct?: VisualBuilderVbInstanceAlternateCustomEndpoints | cdktf.IResolvable): any; export declare function visualBuilderVbInstanceAlternateCustomEndpointsToHclTerraform(struct?: VisualBuilderVbInstanceAlternateCustomEndpoints | cdktf.IResolvable): any; export declare class VisualBuilderVbInstanceAlternateCustomEndpointsOutputReference 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(): VisualBuilderVbInstanceAlternateCustomEndpoints | cdktf.IResolvable | undefined; set internalValue(value: VisualBuilderVbInstanceAlternateCustomEndpoints | cdktf.IResolvable | undefined); private _certificateSecretId?; get certificateSecretId(): string; set certificateSecretId(value: string); resetCertificateSecretId(): void; get certificateSecretIdInput(): string | undefined; get certificateSecretVersion(): number; private _hostname?; get hostname(): string; set hostname(value: string); get hostnameInput(): string | undefined; } export declare class VisualBuilderVbInstanceAlternateCustomEndpointsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: VisualBuilderVbInstanceAlternateCustomEndpoints[] | 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): VisualBuilderVbInstanceAlternateCustomEndpointsOutputReference; } export interface VisualBuilderVbInstanceCustomEndpoint { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#certificate_secret_id VisualBuilderVbInstance#certificate_secret_id} */ readonly certificateSecretId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#hostname VisualBuilderVbInstance#hostname} */ readonly hostname: string; } export declare function visualBuilderVbInstanceCustomEndpointToTerraform(struct?: VisualBuilderVbInstanceCustomEndpointOutputReference | VisualBuilderVbInstanceCustomEndpoint): any; export declare function visualBuilderVbInstanceCustomEndpointToHclTerraform(struct?: VisualBuilderVbInstanceCustomEndpointOutputReference | VisualBuilderVbInstanceCustomEndpoint): any; export declare class VisualBuilderVbInstanceCustomEndpointOutputReference 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(): VisualBuilderVbInstanceCustomEndpoint | undefined; set internalValue(value: VisualBuilderVbInstanceCustomEndpoint | undefined); private _certificateSecretId?; get certificateSecretId(): string; set certificateSecretId(value: string); resetCertificateSecretId(): void; get certificateSecretIdInput(): string | undefined; get certificateSecretVersion(): number; private _hostname?; get hostname(): string; set hostname(value: string); get hostnameInput(): string | undefined; } export interface VisualBuilderVbInstanceTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#create VisualBuilderVbInstance#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#delete VisualBuilderVbInstance#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#update VisualBuilderVbInstance#update} */ readonly update?: string; } export declare function visualBuilderVbInstanceTimeoutsToTerraform(struct?: VisualBuilderVbInstanceTimeouts | cdktf.IResolvable): any; export declare function visualBuilderVbInstanceTimeoutsToHclTerraform(struct?: VisualBuilderVbInstanceTimeouts | cdktf.IResolvable): any; export declare class VisualBuilderVbInstanceTimeoutsOutputReference 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(): VisualBuilderVbInstanceTimeouts | cdktf.IResolvable | undefined; set internalValue(value: VisualBuilderVbInstanceTimeouts | 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/visual_builder_vb_instance oci_visual_builder_vb_instance} */ export declare class VisualBuilderVbInstance extends cdktf.TerraformResource { static readonly tfResourceType = "oci_visual_builder_vb_instance"; /** * Generates CDKTF code for importing a VisualBuilderVbInstance 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 VisualBuilderVbInstance to import * @param importFromId The id of the existing VisualBuilderVbInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/visual_builder_vb_instance#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VisualBuilderVbInstance 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/visual_builder_vb_instance oci_visual_builder_vb_instance} 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 VisualBuilderVbInstanceConfig */ constructor(scope: Construct, id: string, config: VisualBuilderVbInstanceConfig); private _attachments; get attachments(): VisualBuilderVbInstanceAttachmentsList; private _compartmentId?; get compartmentId(): string; set compartmentId(value: string); get compartmentIdInput(): string | undefined; private _consumptionModel?; get consumptionModel(): string; set consumptionModel(value: string); resetConsumptionModel(): void; get consumptionModelInput(): string | undefined; private _definedTags?; get definedTags(): { [key: string]: string; }; set definedTags(value: { [key: string]: string; }); resetDefinedTags(): void; get definedTagsInput(): { [key: string]: string; } | undefined; private _displayName?; get displayName(): string; set displayName(value: string); 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; private _idcsInfo; get idcsInfo(): VisualBuilderVbInstanceIdcsInfoList; private _idcsOpenId?; get idcsOpenId(): string; set idcsOpenId(value: string); resetIdcsOpenId(): void; get idcsOpenIdInput(): string | undefined; get instanceUrl(): string; private _isVisualBuilderEnabled?; get isVisualBuilderEnabled(): boolean | cdktf.IResolvable; set isVisualBuilderEnabled(value: boolean | cdktf.IResolvable); resetIsVisualBuilderEnabled(): void; get isVisualBuilderEnabledInput(): boolean | cdktf.IResolvable | undefined; get managementNatGatewayIp(): string; get managementVcnId(): string; private _nodeCount?; get nodeCount(): number; set nodeCount(value: number); get nodeCountInput(): number | undefined; get serviceNatGatewayIp(): string; get serviceVcnId(): string; get state(): string; get stateMessage(): string; private _systemTags; get systemTags(): cdktf.StringMap; get timeCreated(): string; get timeUpdated(): string; private _alternateCustomEndpoints; get alternateCustomEndpoints(): VisualBuilderVbInstanceAlternateCustomEndpointsList; putAlternateCustomEndpoints(value: VisualBuilderVbInstanceAlternateCustomEndpoints[] | cdktf.IResolvable): void; resetAlternateCustomEndpoints(): void; get alternateCustomEndpointsInput(): cdktf.IResolvable | VisualBuilderVbInstanceAlternateCustomEndpoints[] | undefined; private _customEndpoint; get customEndpoint(): VisualBuilderVbInstanceCustomEndpointOutputReference; putCustomEndpoint(value: VisualBuilderVbInstanceCustomEndpoint): void; resetCustomEndpoint(): void; get customEndpointInput(): VisualBuilderVbInstanceCustomEndpoint | undefined; private _timeouts; get timeouts(): VisualBuilderVbInstanceTimeoutsOutputReference; putTimeouts(value: VisualBuilderVbInstanceTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | VisualBuilderVbInstanceTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }