import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Network Firewalls in Oracle Cloud Infrastructure Network Firewall service. * * Returns a list of NetworkFirewalls. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNetworkFirewalls = oci.networkfirewall.getNetworkFirewalls({ * compartmentId: compartmentId, * availabilityDomain: networkFirewallAvailabilityDomain, * displayName: networkFirewallDisplayName, * id: networkFirewallId, * networkFirewallPolicyId: testNetworkFirewallPolicy.id, * state: networkFirewallState, * }); * ``` */ export declare function getNetworkFirewalls(args: GetNetworkFirewallsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkFirewalls. */ export interface GetNetworkFirewallsArgs { /** * A filter to return only resources that are present within the specified availability domain. To get a list of availability domains for a tenancy, use [ListAvailabilityDomains](https://docs.cloud.oracle.com/iaas/api/#/en/identity/20160918/AvailabilityDomain/ListAvailabilityDomains) operation. Example: `kIdk:PHX-AD-1` */ availabilityDomain?: string; /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.NetworkFirewall.GetNetworkFirewallsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Network Firewall resource. */ id?: string; /** * A filter to return only resources that match the entire networkFirewallPolicyId given. */ networkFirewallPolicyId?: string; /** * A filter to return only resources with a lifecycleState matching the given value. */ state?: string; } /** * A collection of values returned by getNetworkFirewalls. */ export interface GetNetworkFirewallsResult { /** * Availability Domain where Network Firewall instance is created. To get a list of availability domains for a tenancy, use the [ListAvailabilityDomains](https://docs.cloud.oracle.com/iaas/api/#/en/identity/20160918/AvailabilityDomain/ListAvailabilityDomains) operation. Example: `kIdk:PHX-AD-1` */ readonly availabilityDomain?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Network Firewall. */ readonly compartmentId: string; /** * A user-friendly name for the Network Firewall. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.NetworkFirewall.GetNetworkFirewallsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Network Firewall resource. */ readonly id?: string; /** * The list of network_firewall_collection. */ readonly networkFirewallCollections: outputs.NetworkFirewall.GetNetworkFirewallsNetworkFirewallCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Network Firewall Policy. */ readonly networkFirewallPolicyId?: string; /** * The current state of the Network Firewall. */ readonly state?: string; } /** * This data source provides the list of Network Firewalls in Oracle Cloud Infrastructure Network Firewall service. * * Returns a list of NetworkFirewalls. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNetworkFirewalls = oci.networkfirewall.getNetworkFirewalls({ * compartmentId: compartmentId, * availabilityDomain: networkFirewallAvailabilityDomain, * displayName: networkFirewallDisplayName, * id: networkFirewallId, * networkFirewallPolicyId: testNetworkFirewallPolicy.id, * state: networkFirewallState, * }); * ``` */ export declare function getNetworkFirewallsOutput(args: GetNetworkFirewallsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkFirewalls. */ export interface GetNetworkFirewallsOutputArgs { /** * A filter to return only resources that are present within the specified availability domain. To get a list of availability domains for a tenancy, use [ListAvailabilityDomains](https://docs.cloud.oracle.com/iaas/api/#/en/identity/20160918/AvailabilityDomain/ListAvailabilityDomains) operation. Example: `kIdk:PHX-AD-1` */ availabilityDomain?: pulumi.Input; /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Network Firewall resource. */ id?: pulumi.Input; /** * A filter to return only resources that match the entire networkFirewallPolicyId given. */ networkFirewallPolicyId?: pulumi.Input; /** * A filter to return only resources with a lifecycleState matching the given value. */ state?: pulumi.Input; } //# sourceMappingURL=getNetworkFirewalls.d.ts.map