UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

93 lines (92 loc) 5.68 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciSecurityAttributeSecurityAttributeConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/security_attribute_security_attribute#security_attribute_name DataOciSecurityAttributeSecurityAttribute#security_attribute_name} */ readonly securityAttributeName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/security_attribute_security_attribute#security_attribute_namespace_id DataOciSecurityAttributeSecurityAttribute#security_attribute_namespace_id} */ readonly securityAttributeNamespaceId: string; } export interface DataOciSecurityAttributeSecurityAttributeValidator { } export declare function dataOciSecurityAttributeSecurityAttributeValidatorToTerraform(struct?: DataOciSecurityAttributeSecurityAttributeValidator): any; export declare function dataOciSecurityAttributeSecurityAttributeValidatorToHclTerraform(struct?: DataOciSecurityAttributeSecurityAttributeValidator): any; export declare class DataOciSecurityAttributeSecurityAttributeValidatorOutputReference 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(): DataOciSecurityAttributeSecurityAttributeValidator | undefined; set internalValue(value: DataOciSecurityAttributeSecurityAttributeValidator | undefined); get validatorType(): string; get values(): string[]; } export declare class DataOciSecurityAttributeSecurityAttributeValidatorList 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): DataOciSecurityAttributeSecurityAttributeValidatorOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/security_attribute_security_attribute oci_security_attribute_security_attribute} */ export declare class DataOciSecurityAttributeSecurityAttribute extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_security_attribute_security_attribute"; /** * Generates CDKTF code for importing a DataOciSecurityAttributeSecurityAttribute 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 DataOciSecurityAttributeSecurityAttribute to import * @param importFromId The id of the existing DataOciSecurityAttributeSecurityAttribute that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/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 DataOciSecurityAttributeSecurityAttribute 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/data-sources/security_attribute_security_attribute oci_security_attribute_security_attribute} Data Source * * @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 DataOciSecurityAttributeSecurityAttributeConfig */ constructor(scope: Construct, id: string, config: DataOciSecurityAttributeSecurityAttributeConfig); get compartmentId(): string; get description(): string; get id(): string; get isRetired(): cdktf.IResolvable; get name(): string; private _securityAttributeName?; get securityAttributeName(): string; set securityAttributeName(value: string); get securityAttributeNameInput(): 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 _validator; get validator(): DataOciSecurityAttributeSecurityAttributeValidatorList; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }