rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
87 lines (86 loc) • 5.54 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciNetworkFirewallNetworkFirewallPolicyUrlListConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_firewall_network_firewall_policy_url_list#name DataOciNetworkFirewallNetworkFirewallPolicyUrlList#name}
*/
readonly name: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_firewall_network_firewall_policy_url_list#network_firewall_policy_id DataOciNetworkFirewallNetworkFirewallPolicyUrlList#network_firewall_policy_id}
*/
readonly networkFirewallPolicyId: string;
}
export interface DataOciNetworkFirewallNetworkFirewallPolicyUrlListUrls {
}
export declare function dataOciNetworkFirewallNetworkFirewallPolicyUrlListUrlsToTerraform(struct?: DataOciNetworkFirewallNetworkFirewallPolicyUrlListUrls): any;
export declare function dataOciNetworkFirewallNetworkFirewallPolicyUrlListUrlsToHclTerraform(struct?: DataOciNetworkFirewallNetworkFirewallPolicyUrlListUrls): any;
export declare class DataOciNetworkFirewallNetworkFirewallPolicyUrlListUrlsOutputReference 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(): DataOciNetworkFirewallNetworkFirewallPolicyUrlListUrls | undefined;
set internalValue(value: DataOciNetworkFirewallNetworkFirewallPolicyUrlListUrls | undefined);
get pattern(): string;
get type(): string;
}
export declare class DataOciNetworkFirewallNetworkFirewallPolicyUrlListUrlsList 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): DataOciNetworkFirewallNetworkFirewallPolicyUrlListUrlsOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_firewall_network_firewall_policy_url_list oci_network_firewall_network_firewall_policy_url_list}
*/
export declare class DataOciNetworkFirewallNetworkFirewallPolicyUrlList extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_network_firewall_network_firewall_policy_url_list";
/**
* Generates CDKTF code for importing a DataOciNetworkFirewallNetworkFirewallPolicyUrlList 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 DataOciNetworkFirewallNetworkFirewallPolicyUrlList to import
* @param importFromId The id of the existing DataOciNetworkFirewallNetworkFirewallPolicyUrlList that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/network_firewall_network_firewall_policy_url_list#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciNetworkFirewallNetworkFirewallPolicyUrlList 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/network_firewall_network_firewall_policy_url_list oci_network_firewall_network_firewall_policy_url_list} 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 DataOciNetworkFirewallNetworkFirewallPolicyUrlListConfig
*/
constructor(scope: Construct, id: string, config: DataOciNetworkFirewallNetworkFirewallPolicyUrlListConfig);
get id(): string;
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
private _networkFirewallPolicyId?;
get networkFirewallPolicyId(): string;
set networkFirewallPolicyId(value: string);
get networkFirewallPolicyIdInput(): string | undefined;
get parentResourceId(): string;
get totalUrls(): number;
private _urls;
get urls(): DataOciNetworkFirewallNetworkFirewallPolicyUrlListUrlsList;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}