1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. NetworkFirewall
  5. getNetworkFirewalls
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.NetworkFirewall.getNetworkFirewalls

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

This data source provides the list of Network Firewalls in Oracle Cloud Infrastructure Network Firewall service.

Returns a list of NetworkFirewalls.

Example Usage

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,
});
Copy
import pulumi
import pulumi_oci as oci

test_network_firewalls = oci.NetworkFirewall.get_network_firewalls(compartment_id=compartment_id,
    availability_domain=network_firewall_availability_domain,
    display_name=network_firewall_display_name,
    id=network_firewall_id,
    network_firewall_policy_id=test_network_firewall_policy["id"],
    state=network_firewall_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/networkfirewall"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := networkfirewall.GetNetworkFirewalls(ctx, &networkfirewall.GetNetworkFirewallsArgs{
			CompartmentId:           compartmentId,
			AvailabilityDomain:      pulumi.StringRef(networkFirewallAvailabilityDomain),
			DisplayName:             pulumi.StringRef(networkFirewallDisplayName),
			Id:                      pulumi.StringRef(networkFirewallId),
			NetworkFirewallPolicyId: pulumi.StringRef(testNetworkFirewallPolicy.Id),
			State:                   pulumi.StringRef(networkFirewallState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testNetworkFirewalls = Oci.NetworkFirewall.GetNetworkFirewalls.Invoke(new()
    {
        CompartmentId = compartmentId,
        AvailabilityDomain = networkFirewallAvailabilityDomain,
        DisplayName = networkFirewallDisplayName,
        Id = networkFirewallId,
        NetworkFirewallPolicyId = testNetworkFirewallPolicy.Id,
        State = networkFirewallState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.NetworkFirewall.NetworkFirewallFunctions;
import com.pulumi.oci.NetworkFirewall.inputs.GetNetworkFirewallsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testNetworkFirewalls = NetworkFirewallFunctions.getNetworkFirewalls(GetNetworkFirewallsArgs.builder()
            .compartmentId(compartmentId)
            .availabilityDomain(networkFirewallAvailabilityDomain)
            .displayName(networkFirewallDisplayName)
            .id(networkFirewallId)
            .networkFirewallPolicyId(testNetworkFirewallPolicy.id())
            .state(networkFirewallState)
            .build());

    }
}
Copy
variables:
  testNetworkFirewalls:
    fn::invoke:
      function: oci:NetworkFirewall:getNetworkFirewalls
      arguments:
        compartmentId: ${compartmentId}
        availabilityDomain: ${networkFirewallAvailabilityDomain}
        displayName: ${networkFirewallDisplayName}
        id: ${networkFirewallId}
        networkFirewallPolicyId: ${testNetworkFirewallPolicy.id}
        state: ${networkFirewallState}
Copy

Using getNetworkFirewalls

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getNetworkFirewalls(args: GetNetworkFirewallsArgs, opts?: InvokeOptions): Promise<GetNetworkFirewallsResult>
function getNetworkFirewallsOutput(args: GetNetworkFirewallsOutputArgs, opts?: InvokeOptions): Output<GetNetworkFirewallsResult>
Copy
def get_network_firewalls(availability_domain: Optional[str] = None,
                          compartment_id: Optional[str] = None,
                          display_name: Optional[str] = None,
                          filters: Optional[Sequence[_networkfirewall.GetNetworkFirewallsFilter]] = None,
                          id: Optional[str] = None,
                          network_firewall_policy_id: Optional[str] = None,
                          state: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetNetworkFirewallsResult
def get_network_firewalls_output(availability_domain: Optional[pulumi.Input[str]] = None,
                          compartment_id: Optional[pulumi.Input[str]] = None,
                          display_name: Optional[pulumi.Input[str]] = None,
                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[_networkfirewall.GetNetworkFirewallsFilterArgs]]]] = None,
                          id: Optional[pulumi.Input[str]] = None,
                          network_firewall_policy_id: Optional[pulumi.Input[str]] = None,
                          state: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetNetworkFirewallsResult]
Copy
func GetNetworkFirewalls(ctx *Context, args *GetNetworkFirewallsArgs, opts ...InvokeOption) (*GetNetworkFirewallsResult, error)
func GetNetworkFirewallsOutput(ctx *Context, args *GetNetworkFirewallsOutputArgs, opts ...InvokeOption) GetNetworkFirewallsResultOutput
Copy

> Note: This function is named GetNetworkFirewalls in the Go SDK.

public static class GetNetworkFirewalls 
{
    public static Task<GetNetworkFirewallsResult> InvokeAsync(GetNetworkFirewallsArgs args, InvokeOptions? opts = null)
    public static Output<GetNetworkFirewallsResult> Invoke(GetNetworkFirewallsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetNetworkFirewallsResult> getNetworkFirewalls(GetNetworkFirewallsArgs args, InvokeOptions options)
public static Output<GetNetworkFirewallsResult> getNetworkFirewalls(GetNetworkFirewallsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:NetworkFirewall/getNetworkFirewalls:getNetworkFirewalls
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The ID of the compartment in which to list resources.
AvailabilityDomain string
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 operation. Example: kIdk:PHX-AD-1
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. List<GetNetworkFirewallsFilter>
Id string
The OCID of the Network Firewall resource.
NetworkFirewallPolicyId string
A filter to return only resources that match the entire networkFirewallPolicyId given.
State string
A filter to return only resources with a lifecycleState matching the given value.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
AvailabilityDomain string
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 operation. Example: kIdk:PHX-AD-1
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. []GetNetworkFirewallsFilter
Id string
The OCID of the Network Firewall resource.
NetworkFirewallPolicyId string
A filter to return only resources that match the entire networkFirewallPolicyId given.
State string
A filter to return only resources with a lifecycleState matching the given value.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
availabilityDomain String
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 operation. Example: kIdk:PHX-AD-1
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<GetsFilter>
id String
The OCID of the Network Firewall resource.
networkFirewallPolicyId String
A filter to return only resources that match the entire networkFirewallPolicyId given.
state String
A filter to return only resources with a lifecycleState matching the given value.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
availabilityDomain string
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 operation. Example: kIdk:PHX-AD-1
displayName string
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. GetNetworkFirewallsFilter[]
id string
The OCID of the Network Firewall resource.
networkFirewallPolicyId string
A filter to return only resources that match the entire networkFirewallPolicyId given.
state string
A filter to return only resources with a lifecycleState matching the given value.
compartment_id This property is required. str
The ID of the compartment in which to list resources.
availability_domain str
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 operation. Example: kIdk:PHX-AD-1
display_name str
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. Sequence[networkfirewall.GetNetworkFirewallsFilter]
id str
The OCID of the Network Firewall resource.
network_firewall_policy_id str
A filter to return only resources that match the entire networkFirewallPolicyId given.
state str
A filter to return only resources with a lifecycleState matching the given value.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
availabilityDomain String
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 operation. Example: kIdk:PHX-AD-1
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<Property Map>
id String
The OCID of the Network Firewall resource.
networkFirewallPolicyId String
A filter to return only resources that match the entire networkFirewallPolicyId given.
state String
A filter to return only resources with a lifecycleState matching the given value.

getNetworkFirewalls Result

The following output properties are available:

CompartmentId string
The OCID of the compartment containing the Network Firewall.
NetworkFirewallCollections List<GetNetworkFirewallsNetworkFirewallCollection>
The list of network_firewall_collection.
AvailabilityDomain string
Availability Domain where Network Firewall instance is created. To get a list of availability domains for a tenancy, use the ListAvailabilityDomains operation. Example: kIdk:PHX-AD-1
DisplayName string
A user-friendly name for the Network Firewall. Does not have to be unique, and it's changeable. Avoid entering confidential information.
Filters List<GetNetworkFirewallsFilter>
Id string
The OCID of the Network Firewall resource.
NetworkFirewallPolicyId string
The OCID of the Network Firewall Policy.
State string
The current state of the Network Firewall.
CompartmentId string
The OCID of the compartment containing the Network Firewall.
NetworkFirewallCollections []GetNetworkFirewallsNetworkFirewallCollection
The list of network_firewall_collection.
AvailabilityDomain string
Availability Domain where Network Firewall instance is created. To get a list of availability domains for a tenancy, use the ListAvailabilityDomains operation. Example: kIdk:PHX-AD-1
DisplayName string
A user-friendly name for the Network Firewall. Does not have to be unique, and it's changeable. Avoid entering confidential information.
Filters []GetNetworkFirewallsFilter
Id string
The OCID of the Network Firewall resource.
NetworkFirewallPolicyId string
The OCID of the Network Firewall Policy.
State string
The current state of the Network Firewall.
compartmentId String
The OCID of the compartment containing the Network Firewall.
networkFirewallCollections List<GetsCollection>
The list of network_firewall_collection.
availabilityDomain String
Availability Domain where Network Firewall instance is created. To get a list of availability domains for a tenancy, use the ListAvailabilityDomains operation. Example: kIdk:PHX-AD-1
displayName String
A user-friendly name for the Network Firewall. Does not have to be unique, and it's changeable. Avoid entering confidential information.
filters List<GetsFilter>
id String
The OCID of the Network Firewall resource.
networkFirewallPolicyId String
The OCID of the Network Firewall Policy.
state String
The current state of the Network Firewall.
compartmentId string
The OCID of the compartment containing the Network Firewall.
networkFirewallCollections GetNetworkFirewallsNetworkFirewallCollection[]
The list of network_firewall_collection.
availabilityDomain string
Availability Domain where Network Firewall instance is created. To get a list of availability domains for a tenancy, use the ListAvailabilityDomains operation. Example: kIdk:PHX-AD-1
displayName string
A user-friendly name for the Network Firewall. Does not have to be unique, and it's changeable. Avoid entering confidential information.
filters GetNetworkFirewallsFilter[]
id string
The OCID of the Network Firewall resource.
networkFirewallPolicyId string
The OCID of the Network Firewall Policy.
state string
The current state of the Network Firewall.
compartment_id str
The OCID of the compartment containing the Network Firewall.
network_firewall_collections Sequence[networkfirewall.GetNetworkFirewallsNetworkFirewallCollection]
The list of network_firewall_collection.
availability_domain str
Availability Domain where Network Firewall instance is created. To get a list of availability domains for a tenancy, use the ListAvailabilityDomains operation. Example: kIdk:PHX-AD-1
display_name str
A user-friendly name for the Network Firewall. Does not have to be unique, and it's changeable. Avoid entering confidential information.
filters Sequence[networkfirewall.GetNetworkFirewallsFilter]
id str
The OCID of the Network Firewall resource.
network_firewall_policy_id str
The OCID of the Network Firewall Policy.
state str
The current state of the Network Firewall.
compartmentId String
The OCID of the compartment containing the Network Firewall.
networkFirewallCollections List<Property Map>
The list of network_firewall_collection.
availabilityDomain String
Availability Domain where Network Firewall instance is created. To get a list of availability domains for a tenancy, use the ListAvailabilityDomains operation. Example: kIdk:PHX-AD-1
displayName String
A user-friendly name for the Network Firewall. Does not have to be unique, and it's changeable. Avoid entering confidential information.
filters List<Property Map>
id String
The OCID of the Network Firewall resource.
networkFirewallPolicyId String
The OCID of the Network Firewall Policy.
state String
The current state of the Network Firewall.

Supporting Types

GetNetworkFirewallsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetNetworkFirewallsNetworkFirewallCollection

items This property is required. List<GetsCollectionItem>
items This property is required. List<Property Map>

GetNetworkFirewallsNetworkFirewallCollectionItem

AvailabilityDomain This property is required. string
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 operation. Example: kIdk:PHX-AD-1
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
FreeformTags This property is required. Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id This property is required. string
The OCID of the Network Firewall resource.
Ipv4address This property is required. string
IPv4 address for the Network Firewall.
Ipv6address This property is required. string
IPv6 address for the Network Firewall.
LifecycleDetails This property is required. string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'FAILED' state.
NetworkFirewallPolicyId This property is required. string
A filter to return only resources that match the entire networkFirewallPolicyId given.
NetworkSecurityGroupIds This property is required. List<string>
An array of network security groups OCID associated with the Network Firewall.
State This property is required. string
A filter to return only resources with a lifecycleState matching the given value.
SubnetId This property is required. string
The OCID of the subnet associated with the Network Firewall.
SystemTags This property is required. Dictionary<string, string>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The time at which the Network Firewall was created in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
TimeUpdated This property is required. string
The time at which the Network Firewall was updated in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
AvailabilityDomain This property is required. string
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 operation. Example: kIdk:PHX-AD-1
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
FreeformTags This property is required. map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id This property is required. string
The OCID of the Network Firewall resource.
Ipv4address This property is required. string
IPv4 address for the Network Firewall.
Ipv6address This property is required. string
IPv6 address for the Network Firewall.
LifecycleDetails This property is required. string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'FAILED' state.
NetworkFirewallPolicyId This property is required. string
A filter to return only resources that match the entire networkFirewallPolicyId given.
NetworkSecurityGroupIds This property is required. []string
An array of network security groups OCID associated with the Network Firewall.
State This property is required. string
A filter to return only resources with a lifecycleState matching the given value.
SubnetId This property is required. string
The OCID of the subnet associated with the Network Firewall.
SystemTags This property is required. map[string]string
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The time at which the Network Firewall was created in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
TimeUpdated This property is required. string
The time at which the Network Firewall was updated in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
availabilityDomain This property is required. String
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 operation. Example: kIdk:PHX-AD-1
compartmentId This property is required. String
The ID of the compartment in which to list resources.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
displayName This property is required. String
A filter to return only resources that match the entire display name given.
freeformTags This property is required. Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. String
The OCID of the Network Firewall resource.
ipv4address This property is required. String
IPv4 address for the Network Firewall.
ipv6address This property is required. String
IPv6 address for the Network Firewall.
lifecycleDetails This property is required. String
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'FAILED' state.
networkFirewallPolicyId This property is required. String
A filter to return only resources that match the entire networkFirewallPolicyId given.
networkSecurityGroupIds This property is required. List<String>
An array of network security groups OCID associated with the Network Firewall.
state This property is required. String
A filter to return only resources with a lifecycleState matching the given value.
subnetId This property is required. String
The OCID of the subnet associated with the Network Firewall.
systemTags This property is required. Map<String,String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The time at which the Network Firewall was created in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated This property is required. String
The time at which the Network Firewall was updated in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
availabilityDomain This property is required. string
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 operation. Example: kIdk:PHX-AD-1
compartmentId This property is required. string
The ID of the compartment in which to list resources.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
displayName This property is required. string
A filter to return only resources that match the entire display name given.
freeformTags This property is required. {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. string
The OCID of the Network Firewall resource.
ipv4address This property is required. string
IPv4 address for the Network Firewall.
ipv6address This property is required. string
IPv6 address for the Network Firewall.
lifecycleDetails This property is required. string
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'FAILED' state.
networkFirewallPolicyId This property is required. string
A filter to return only resources that match the entire networkFirewallPolicyId given.
networkSecurityGroupIds This property is required. string[]
An array of network security groups OCID associated with the Network Firewall.
state This property is required. string
A filter to return only resources with a lifecycleState matching the given value.
subnetId This property is required. string
The OCID of the subnet associated with the Network Firewall.
systemTags This property is required. {[key: string]: string}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
The time at which the Network Firewall was created in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated This property is required. string
The time at which the Network Firewall was updated in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
availability_domain This property is required. str
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 operation. Example: kIdk:PHX-AD-1
compartment_id This property is required. str
The ID of the compartment in which to list resources.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
display_name This property is required. str
A filter to return only resources that match the entire display name given.
freeform_tags This property is required. Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. str
The OCID of the Network Firewall resource.
ipv4address This property is required. str
IPv4 address for the Network Firewall.
ipv6address This property is required. str
IPv6 address for the Network Firewall.
lifecycle_details This property is required. str
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'FAILED' state.
network_firewall_policy_id This property is required. str
A filter to return only resources that match the entire networkFirewallPolicyId given.
network_security_group_ids This property is required. Sequence[str]
An array of network security groups OCID associated with the Network Firewall.
state This property is required. str
A filter to return only resources with a lifecycleState matching the given value.
subnet_id This property is required. str
The OCID of the subnet associated with the Network Firewall.
system_tags This property is required. Mapping[str, str]
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created This property is required. str
The time at which the Network Firewall was created in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
time_updated This property is required. str
The time at which the Network Firewall was updated in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
availabilityDomain This property is required. String
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 operation. Example: kIdk:PHX-AD-1
compartmentId This property is required. String
The ID of the compartment in which to list resources.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
displayName This property is required. String
A filter to return only resources that match the entire display name given.
freeformTags This property is required. Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. String
The OCID of the Network Firewall resource.
ipv4address This property is required. String
IPv4 address for the Network Firewall.
ipv6address This property is required. String
IPv6 address for the Network Firewall.
lifecycleDetails This property is required. String
A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'FAILED' state.
networkFirewallPolicyId This property is required. String
A filter to return only resources that match the entire networkFirewallPolicyId given.
networkSecurityGroupIds This property is required. List<String>
An array of network security groups OCID associated with the Network Firewall.
state This property is required. String
A filter to return only resources with a lifecycleState matching the given value.
subnetId This property is required. String
The OCID of the subnet associated with the Network Firewall.
systemTags This property is required. Map<String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The time at which the Network Firewall was created in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated This property is required. String
The time at which the Network Firewall was updated in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi