rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
178 lines (177 loc) • 10 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface SecurityAttributeSecurityAttributeConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute#description SecurityAttributeSecurityAttribute#description}
*/
readonly description: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute#id SecurityAttributeSecurityAttribute#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/security_attribute_security_attribute#is_retired SecurityAttributeSecurityAttribute#is_retired}
*/
readonly isRetired?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute#name SecurityAttributeSecurityAttribute#name}
*/
readonly name: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute#security_attribute_namespace_id SecurityAttributeSecurityAttribute#security_attribute_namespace_id}
*/
readonly securityAttributeNamespaceId: string;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute#timeouts SecurityAttributeSecurityAttribute#timeouts}
*/
readonly timeouts?: SecurityAttributeSecurityAttributeTimeouts;
/**
* validator block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute#validator SecurityAttributeSecurityAttribute#validator}
*/
readonly validator?: SecurityAttributeSecurityAttributeValidator;
}
export interface SecurityAttributeSecurityAttributeTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute#create SecurityAttributeSecurityAttribute#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute#delete SecurityAttributeSecurityAttribute#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute#update SecurityAttributeSecurityAttribute#update}
*/
readonly update?: string;
}
export declare function securityAttributeSecurityAttributeTimeoutsToTerraform(struct?: SecurityAttributeSecurityAttributeTimeouts | cdktf.IResolvable): any;
export declare function securityAttributeSecurityAttributeTimeoutsToHclTerraform(struct?: SecurityAttributeSecurityAttributeTimeouts | cdktf.IResolvable): any;
export declare class SecurityAttributeSecurityAttributeTimeoutsOutputReference 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(): SecurityAttributeSecurityAttributeTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: SecurityAttributeSecurityAttributeTimeouts | 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;
}
export interface SecurityAttributeSecurityAttributeValidator {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute#validator_type SecurityAttributeSecurityAttribute#validator_type}
*/
readonly validatorType: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute#values SecurityAttributeSecurityAttribute#values}
*/
readonly values?: string[];
}
export declare function securityAttributeSecurityAttributeValidatorToTerraform(struct?: SecurityAttributeSecurityAttributeValidatorOutputReference | SecurityAttributeSecurityAttributeValidator): any;
export declare function securityAttributeSecurityAttributeValidatorToHclTerraform(struct?: SecurityAttributeSecurityAttributeValidatorOutputReference | SecurityAttributeSecurityAttributeValidator): any;
export declare class SecurityAttributeSecurityAttributeValidatorOutputReference 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(): SecurityAttributeSecurityAttributeValidator | undefined;
set internalValue(value: SecurityAttributeSecurityAttributeValidator | undefined);
private _validatorType?;
get validatorType(): string;
set validatorType(value: string);
get validatorTypeInput(): string | undefined;
private _values?;
get values(): string[];
set values(value: string[]);
resetValues(): void;
get valuesInput(): string[] | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute oci_security_attribute_security_attribute}
*/
export declare class SecurityAttributeSecurityAttribute extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_security_attribute_security_attribute";
/**
* Generates CDKTF code for importing a SecurityAttributeSecurityAttribute 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 SecurityAttributeSecurityAttribute to import
* @param importFromId The id of the existing SecurityAttributeSecurityAttribute that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/security_attribute_security_attribute#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the SecurityAttributeSecurityAttribute 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/security_attribute_security_attribute oci_security_attribute_security_attribute} 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 SecurityAttributeSecurityAttributeConfig
*/
constructor(scope: Construct, id: string, config: SecurityAttributeSecurityAttributeConfig);
get compartmentId(): string;
private _description?;
get description(): string;
set description(value: string);
get descriptionInput(): string | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _isRetired?;
get isRetired(): boolean | cdktf.IResolvable;
set isRetired(value: boolean | cdktf.IResolvable);
resetIsRetired(): void;
get isRetiredInput(): boolean | cdktf.IResolvable | undefined;
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
private _securityAttributeNamespaceId?;
get securityAttributeNamespaceId(): string;
set securityAttributeNamespaceId(value: string);
get securityAttributeNamespaceIdInput(): string | undefined;
get securityAttributeNamespaceName(): string;
get state(): string;
get timeCreated(): string;
get type(): string;
private _timeouts;
get timeouts(): SecurityAttributeSecurityAttributeTimeoutsOutputReference;
putTimeouts(value: SecurityAttributeSecurityAttributeTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | SecurityAttributeSecurityAttributeTimeouts | undefined;
private _validator;
get validator(): SecurityAttributeSecurityAttributeValidatorOutputReference;
putValidator(value: SecurityAttributeSecurityAttributeValidator): void;
resetValidator(): void;
get validatorInput(): SecurityAttributeSecurityAttributeValidator | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}