import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Network Firewall Health Status resource in Oracle Cloud Infrastructure Network Firewall service. * * Get Overall health status of Network Firewall * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNetworkFirewallHealthStatus = oci.networkfirewall.getNetworkFirewallHealthStatus({ * networkFirewallId: testNetworkFirewall.id, * }); * ``` */ export declare function getNetworkFirewallHealthStatus(args: GetNetworkFirewallHealthStatusArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkFirewallHealthStatus. */ export interface GetNetworkFirewallHealthStatusArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Network Firewall resource. */ networkFirewallId: string; } /** * A collection of values returned by getNetworkFirewallHealthStatus. */ export interface GetNetworkFirewallHealthStatusResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly networkFirewallId: string; /** * Overall health status of Network firewall */ readonly status: string; } /** * This data source provides details about a specific Network Firewall Health Status resource in Oracle Cloud Infrastructure Network Firewall service. * * Get Overall health status of Network Firewall * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNetworkFirewallHealthStatus = oci.networkfirewall.getNetworkFirewallHealthStatus({ * networkFirewallId: testNetworkFirewall.id, * }); * ``` */ export declare function getNetworkFirewallHealthStatusOutput(args: GetNetworkFirewallHealthStatusOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkFirewallHealthStatus. */ export interface GetNetworkFirewallHealthStatusOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Network Firewall resource. */ networkFirewallId: pulumi.Input; } //# sourceMappingURL=getNetworkFirewallHealthStatus.d.ts.map