rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
242 lines (241 loc) • 12.1 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciDnsRrsetsConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_rrsets#domain DataOciDnsRrsets#domain}
*/
readonly domain?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_rrsets#domain_contains DataOciDnsRrsets#domain_contains}
*/
readonly domainContains?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_rrsets#id DataOciDnsRrsets#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/data-sources/dns_rrsets#rtype DataOciDnsRrsets#rtype}
*/
readonly rtype?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_rrsets#scope DataOciDnsRrsets#scope}
*/
readonly scope?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_rrsets#view_id DataOciDnsRrsets#view_id}
*/
readonly viewId?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_rrsets#zone_name_or_id DataOciDnsRrsets#zone_name_or_id}
*/
readonly zoneNameOrId: string;
/**
* filter block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_rrsets#filter DataOciDnsRrsets#filter}
*/
readonly filter?: DataOciDnsRrsetsFilter[] | cdktf.IResolvable;
}
export interface DataOciDnsRrsetsRrsetsItems {
}
export declare function dataOciDnsRrsetsRrsetsItemsToTerraform(struct?: DataOciDnsRrsetsRrsetsItems): any;
export declare function dataOciDnsRrsetsRrsetsItemsToHclTerraform(struct?: DataOciDnsRrsetsRrsetsItems): any;
export declare class DataOciDnsRrsetsRrsetsItemsOutputReference 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(): DataOciDnsRrsetsRrsetsItems | undefined;
set internalValue(value: DataOciDnsRrsetsRrsetsItems | undefined);
get domain(): string;
get isProtected(): cdktf.IResolvable;
get rdata(): string;
get recordHash(): string;
get rrsetVersion(): string;
get rtype(): string;
get ttl(): number;
}
export declare class DataOciDnsRrsetsRrsetsItemsList 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): DataOciDnsRrsetsRrsetsItemsOutputReference;
}
export interface DataOciDnsRrsetsRrsets {
}
export declare function dataOciDnsRrsetsRrsetsToTerraform(struct?: DataOciDnsRrsetsRrsets): any;
export declare function dataOciDnsRrsetsRrsetsToHclTerraform(struct?: DataOciDnsRrsetsRrsets): any;
export declare class DataOciDnsRrsetsRrsetsOutputReference 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(): DataOciDnsRrsetsRrsets | undefined;
set internalValue(value: DataOciDnsRrsetsRrsets | undefined);
get domain(): string;
private _items;
get items(): DataOciDnsRrsetsRrsetsItemsList;
get rtype(): string;
}
export declare class DataOciDnsRrsetsRrsetsList 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): DataOciDnsRrsetsRrsetsOutputReference;
}
export interface DataOciDnsRrsetsFilter {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_rrsets#name DataOciDnsRrsets#name}
*/
readonly name: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_rrsets#regex DataOciDnsRrsets#regex}
*/
readonly regex?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_rrsets#values DataOciDnsRrsets#values}
*/
readonly values: string[];
}
export declare function dataOciDnsRrsetsFilterToTerraform(struct?: DataOciDnsRrsetsFilter | cdktf.IResolvable): any;
export declare function dataOciDnsRrsetsFilterToHclTerraform(struct?: DataOciDnsRrsetsFilter | cdktf.IResolvable): any;
export declare class DataOciDnsRrsetsFilterOutputReference 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(): DataOciDnsRrsetsFilter | cdktf.IResolvable | undefined;
set internalValue(value: DataOciDnsRrsetsFilter | cdktf.IResolvable | undefined);
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
private _regex?;
get regex(): boolean | cdktf.IResolvable;
set regex(value: boolean | cdktf.IResolvable);
resetRegex(): void;
get regexInput(): boolean | cdktf.IResolvable | undefined;
private _values?;
get values(): string[];
set values(value: string[]);
get valuesInput(): string[] | undefined;
}
export declare class DataOciDnsRrsetsFilterList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: DataOciDnsRrsetsFilter[] | 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): DataOciDnsRrsetsFilterOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_rrsets oci_dns_rrsets}
*/
export declare class DataOciDnsRrsets extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_dns_rrsets";
/**
* Generates CDKTF code for importing a DataOciDnsRrsets 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 DataOciDnsRrsets to import
* @param importFromId The id of the existing DataOciDnsRrsets that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_rrsets#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciDnsRrsets 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/dns_rrsets oci_dns_rrsets} 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 DataOciDnsRrsetsConfig
*/
constructor(scope: Construct, id: string, config: DataOciDnsRrsetsConfig);
private _domain?;
get domain(): string;
set domain(value: string);
resetDomain(): void;
get domainInput(): string | undefined;
private _domainContains?;
get domainContains(): string;
set domainContains(value: string);
resetDomainContains(): void;
get domainContainsInput(): string | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _rrsets;
get rrsets(): DataOciDnsRrsetsRrsetsList;
private _rtype?;
get rtype(): string;
set rtype(value: string);
resetRtype(): void;
get rtypeInput(): string | undefined;
private _scope?;
get scope(): string;
set scope(value: string);
resetScope(): void;
get scopeInput(): string | undefined;
private _viewId?;
get viewId(): string;
set viewId(value: string);
resetViewId(): void;
get viewIdInput(): string | undefined;
private _zoneNameOrId?;
get zoneNameOrId(): string;
set zoneNameOrId(value: string);
get zoneNameOrIdInput(): string | undefined;
private _filter;
get filter(): DataOciDnsRrsetsFilterList;
putFilter(value: DataOciDnsRrsetsFilter[] | cdktf.IResolvable): void;
resetFilter(): void;
get filterInput(): cdktf.IResolvable | DataOciDnsRrsetsFilter[] | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}