rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
334 lines (333 loc) • 16.4 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface WaasCertificateConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/waas_certificate#certificate_data WaasCertificate#certificate_data}
*/
readonly certificateData: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/waas_certificate#compartment_id WaasCertificate#compartment_id}
*/
readonly compartmentId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/waas_certificate#defined_tags WaasCertificate#defined_tags}
*/
readonly definedTags?: {
[key: string]: string;
};
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/waas_certificate#display_name WaasCertificate#display_name}
*/
readonly displayName?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/waas_certificate#freeform_tags WaasCertificate#freeform_tags}
*/
readonly freeformTags?: {
[key: string]: string;
};
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/waas_certificate#id WaasCertificate#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/waas_certificate#is_trust_verification_disabled WaasCertificate#is_trust_verification_disabled}
*/
readonly isTrustVerificationDisabled?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/waas_certificate#private_key_data WaasCertificate#private_key_data}
*/
readonly privateKeyData: string;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/waas_certificate#timeouts WaasCertificate#timeouts}
*/
readonly timeouts?: WaasCertificateTimeouts;
}
export interface WaasCertificateExtensions {
}
export declare function waasCertificateExtensionsToTerraform(struct?: WaasCertificateExtensions): any;
export declare function waasCertificateExtensionsToHclTerraform(struct?: WaasCertificateExtensions): any;
export declare class WaasCertificateExtensionsOutputReference 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(): WaasCertificateExtensions | undefined;
set internalValue(value: WaasCertificateExtensions | undefined);
get isCritical(): cdktf.IResolvable;
get name(): string;
get value(): string;
}
export declare class WaasCertificateExtensionsList 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): WaasCertificateExtensionsOutputReference;
}
export interface WaasCertificateIssuerName {
}
export declare function waasCertificateIssuerNameToTerraform(struct?: WaasCertificateIssuerName): any;
export declare function waasCertificateIssuerNameToHclTerraform(struct?: WaasCertificateIssuerName): any;
export declare class WaasCertificateIssuerNameOutputReference 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(): WaasCertificateIssuerName | undefined;
set internalValue(value: WaasCertificateIssuerName | undefined);
get commonName(): string;
get country(): string;
get emailAddress(): string;
get locality(): string;
get organization(): string;
get organizationalUnit(): string;
get stateProvince(): string;
}
export declare class WaasCertificateIssuerNameList 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): WaasCertificateIssuerNameOutputReference;
}
export interface WaasCertificatePublicKeyInfo {
}
export declare function waasCertificatePublicKeyInfoToTerraform(struct?: WaasCertificatePublicKeyInfo): any;
export declare function waasCertificatePublicKeyInfoToHclTerraform(struct?: WaasCertificatePublicKeyInfo): any;
export declare class WaasCertificatePublicKeyInfoOutputReference 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(): WaasCertificatePublicKeyInfo | undefined;
set internalValue(value: WaasCertificatePublicKeyInfo | undefined);
get algorithm(): string;
get exponent(): number;
get keySize(): number;
}
export declare class WaasCertificatePublicKeyInfoList 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): WaasCertificatePublicKeyInfoOutputReference;
}
export interface WaasCertificateSubjectName {
}
export declare function waasCertificateSubjectNameToTerraform(struct?: WaasCertificateSubjectName): any;
export declare function waasCertificateSubjectNameToHclTerraform(struct?: WaasCertificateSubjectName): any;
export declare class WaasCertificateSubjectNameOutputReference 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(): WaasCertificateSubjectName | undefined;
set internalValue(value: WaasCertificateSubjectName | undefined);
get commonName(): string;
get country(): string;
get emailAddress(): string;
get locality(): string;
get organization(): string;
get organizationalUnit(): string;
get stateProvince(): string;
}
export declare class WaasCertificateSubjectNameList 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): WaasCertificateSubjectNameOutputReference;
}
export interface WaasCertificateTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/waas_certificate#create WaasCertificate#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/waas_certificate#delete WaasCertificate#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/waas_certificate#update WaasCertificate#update}
*/
readonly update?: string;
}
export declare function waasCertificateTimeoutsToTerraform(struct?: WaasCertificateTimeouts | cdktf.IResolvable): any;
export declare function waasCertificateTimeoutsToHclTerraform(struct?: WaasCertificateTimeouts | cdktf.IResolvable): any;
export declare class WaasCertificateTimeoutsOutputReference 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(): WaasCertificateTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: WaasCertificateTimeouts | 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/waas_certificate oci_waas_certificate}
*/
export declare class WaasCertificate extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_waas_certificate";
/**
* Generates CDKTF code for importing a WaasCertificate 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 WaasCertificate to import
* @param importFromId The id of the existing WaasCertificate that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/waas_certificate#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the WaasCertificate 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/waas_certificate oci_waas_certificate} 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 WaasCertificateConfig
*/
constructor(scope: Construct, id: string, config: WaasCertificateConfig);
private _certificateData?;
get certificateData(): string;
set certificateData(value: string);
get certificateDataInput(): string | undefined;
private _compartmentId?;
get compartmentId(): string;
set compartmentId(value: string);
get compartmentIdInput(): 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);
resetDisplayName(): void;
get displayNameInput(): string | undefined;
private _extensions;
get extensions(): WaasCertificateExtensionsList;
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 _isTrustVerificationDisabled?;
get isTrustVerificationDisabled(): boolean | cdktf.IResolvable;
set isTrustVerificationDisabled(value: boolean | cdktf.IResolvable);
resetIsTrustVerificationDisabled(): void;
get isTrustVerificationDisabledInput(): boolean | cdktf.IResolvable | undefined;
get issuedBy(): string;
private _issuerName;
get issuerName(): WaasCertificateIssuerNameList;
private _privateKeyData?;
get privateKeyData(): string;
set privateKeyData(value: string);
get privateKeyDataInput(): string | undefined;
private _publicKeyInfo;
get publicKeyInfo(): WaasCertificatePublicKeyInfoList;
get serialNumber(): string;
get signatureAlgorithm(): string;
get state(): string;
private _subjectName;
get subjectName(): WaasCertificateSubjectNameList;
get timeCreated(): string;
get timeNotValidAfter(): string;
get timeNotValidBefore(): string;
get version(): number;
private _timeouts;
get timeouts(): WaasCertificateTimeoutsOutputReference;
putTimeouts(value: WaasCertificateTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | WaasCertificateTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}