Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.NetworkFirewall.getNetworkFirewallPolicyDecryptionProfiles
Explore with Pulumi AI
This data source provides the list of Network Firewall Policy Decryption Profiles in Oracle Cloud Infrastructure Network Firewall service.
Returns a list of Decryption Profile for the Network Firewall Policy.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testNetworkFirewallPolicyDecryptionProfiles = oci.NetworkFirewall.getNetworkFirewallPolicyDecryptionProfiles({
    networkFirewallPolicyId: testNetworkFirewallPolicy.id,
    displayName: networkFirewallPolicyDecryptionProfileDisplayName,
});
import pulumi
import pulumi_oci as oci
test_network_firewall_policy_decryption_profiles = oci.NetworkFirewall.get_network_firewall_policy_decryption_profiles(network_firewall_policy_id=test_network_firewall_policy["id"],
    display_name=network_firewall_policy_decryption_profile_display_name)
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.GetNetworkFirewallPolicyDecryptionProfiles(ctx, &networkfirewall.GetNetworkFirewallPolicyDecryptionProfilesArgs{
			NetworkFirewallPolicyId: testNetworkFirewallPolicy.Id,
			DisplayName:             pulumi.StringRef(networkFirewallPolicyDecryptionProfileDisplayName),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testNetworkFirewallPolicyDecryptionProfiles = Oci.NetworkFirewall.GetNetworkFirewallPolicyDecryptionProfiles.Invoke(new()
    {
        NetworkFirewallPolicyId = testNetworkFirewallPolicy.Id,
        DisplayName = networkFirewallPolicyDecryptionProfileDisplayName,
    });
});
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.GetNetworkFirewallPolicyDecryptionProfilesArgs;
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 testNetworkFirewallPolicyDecryptionProfiles = NetworkFirewallFunctions.getNetworkFirewallPolicyDecryptionProfiles(GetNetworkFirewallPolicyDecryptionProfilesArgs.builder()
            .networkFirewallPolicyId(testNetworkFirewallPolicy.id())
            .displayName(networkFirewallPolicyDecryptionProfileDisplayName)
            .build());
    }
}
variables:
  testNetworkFirewallPolicyDecryptionProfiles:
    fn::invoke:
      function: oci:NetworkFirewall:getNetworkFirewallPolicyDecryptionProfiles
      arguments:
        networkFirewallPolicyId: ${testNetworkFirewallPolicy.id}
        displayName: ${networkFirewallPolicyDecryptionProfileDisplayName}
Using getNetworkFirewallPolicyDecryptionProfiles
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 getNetworkFirewallPolicyDecryptionProfiles(args: GetNetworkFirewallPolicyDecryptionProfilesArgs, opts?: InvokeOptions): Promise<GetNetworkFirewallPolicyDecryptionProfilesResult>
function getNetworkFirewallPolicyDecryptionProfilesOutput(args: GetNetworkFirewallPolicyDecryptionProfilesOutputArgs, opts?: InvokeOptions): Output<GetNetworkFirewallPolicyDecryptionProfilesResult>def get_network_firewall_policy_decryption_profiles(display_name: Optional[str] = None,
                                                    filters: Optional[Sequence[GetNetworkFirewallPolicyDecryptionProfilesFilter]] = None,
                                                    network_firewall_policy_id: Optional[str] = None,
                                                    opts: Optional[InvokeOptions] = None) -> GetNetworkFirewallPolicyDecryptionProfilesResult
def get_network_firewall_policy_decryption_profiles_output(display_name: Optional[pulumi.Input[str]] = None,
                                                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetNetworkFirewallPolicyDecryptionProfilesFilterArgs]]]] = None,
                                                    network_firewall_policy_id: Optional[pulumi.Input[str]] = None,
                                                    opts: Optional[InvokeOptions] = None) -> Output[GetNetworkFirewallPolicyDecryptionProfilesResult]func GetNetworkFirewallPolicyDecryptionProfiles(ctx *Context, args *GetNetworkFirewallPolicyDecryptionProfilesArgs, opts ...InvokeOption) (*GetNetworkFirewallPolicyDecryptionProfilesResult, error)
func GetNetworkFirewallPolicyDecryptionProfilesOutput(ctx *Context, args *GetNetworkFirewallPolicyDecryptionProfilesOutputArgs, opts ...InvokeOption) GetNetworkFirewallPolicyDecryptionProfilesResultOutput> Note: This function is named GetNetworkFirewallPolicyDecryptionProfiles in the Go SDK.
public static class GetNetworkFirewallPolicyDecryptionProfiles 
{
    public static Task<GetNetworkFirewallPolicyDecryptionProfilesResult> InvokeAsync(GetNetworkFirewallPolicyDecryptionProfilesArgs args, InvokeOptions? opts = null)
    public static Output<GetNetworkFirewallPolicyDecryptionProfilesResult> Invoke(GetNetworkFirewallPolicyDecryptionProfilesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetNetworkFirewallPolicyDecryptionProfilesResult> getNetworkFirewallPolicyDecryptionProfiles(GetNetworkFirewallPolicyDecryptionProfilesArgs args, InvokeOptions options)
public static Output<GetNetworkFirewallPolicyDecryptionProfilesResult> getNetworkFirewallPolicyDecryptionProfiles(GetNetworkFirewallPolicyDecryptionProfilesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:NetworkFirewall/getNetworkFirewallPolicyDecryptionProfiles:getNetworkFirewallPolicyDecryptionProfiles
  arguments:
    # arguments dictionaryThe following arguments are supported:
- NetworkFirewall stringPolicy Id 
- Unique Network Firewall Policy identifier
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
List<GetNetwork Firewall Policy Decryption Profiles Filter> 
- NetworkFirewall stringPolicy Id 
- Unique Network Firewall Policy identifier
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
[]GetNetwork Firewall Policy Decryption Profiles Filter 
- networkFirewall StringPolicy Id 
- Unique Network Firewall Policy identifier
- displayName String
- A filter to return only resources that match the entire display name given.
- filters
List<GetPolicy Decryption Profiles Filter> 
- networkFirewall stringPolicy Id 
- Unique Network Firewall Policy identifier
- displayName string
- A filter to return only resources that match the entire display name given.
- filters
GetNetwork Firewall Policy Decryption Profiles Filter[] 
- network_firewall_ strpolicy_ id 
- Unique Network Firewall Policy identifier
- display_name str
- A filter to return only resources that match the entire display name given.
- filters
Sequence[GetNetwork Firewall Policy Decryption Profiles Filter] 
- networkFirewall StringPolicy Id 
- Unique Network Firewall Policy identifier
- displayName String
- A filter to return only resources that match the entire display name given.
- filters List<Property Map>
getNetworkFirewallPolicyDecryptionProfiles Result
The following output properties are available:
- DecryptionProfile List<GetSummary Collections Network Firewall Policy Decryption Profiles Decryption Profile Summary Collection> 
- The list of decryption_profile_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- NetworkFirewall stringPolicy Id 
- DisplayName string
- Filters
List<GetNetwork Firewall Policy Decryption Profiles Filter> 
- DecryptionProfile []GetSummary Collections Network Firewall Policy Decryption Profiles Decryption Profile Summary Collection 
- The list of decryption_profile_summary_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- NetworkFirewall stringPolicy Id 
- DisplayName string
- Filters
[]GetNetwork Firewall Policy Decryption Profiles Filter 
- decryptionProfile List<GetSummary Collections Policy Decryption Profiles Decryption Profile Summary Collection> 
- The list of decryption_profile_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- networkFirewall StringPolicy Id 
- displayName String
- filters
List<GetPolicy Decryption Profiles Filter> 
- decryptionProfile GetSummary Collections Network Firewall Policy Decryption Profiles Decryption Profile Summary Collection[] 
- The list of decryption_profile_summary_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- networkFirewall stringPolicy Id 
- displayName string
- filters
GetNetwork Firewall Policy Decryption Profiles Filter[] 
- decryption_profile_ Sequence[Getsummary_ collections Network Firewall Policy Decryption Profiles Decryption Profile Summary Collection] 
- The list of decryption_profile_summary_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- network_firewall_ strpolicy_ id 
- display_name str
- filters
Sequence[GetNetwork Firewall Policy Decryption Profiles Filter] 
- decryptionProfile List<Property Map>Summary Collections 
- The list of decryption_profile_summary_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- networkFirewall StringPolicy Id 
- displayName String
- filters List<Property Map>
Supporting Types
GetNetworkFirewallPolicyDecryptionProfilesDecryptionProfileSummaryCollection         
GetNetworkFirewallPolicyDecryptionProfilesDecryptionProfileSummaryCollectionItem          
- AreCertificate boolExtensions Restricted 
- Whether to block sessions if the server's certificate uses extensions other than key usage and/or extended key usage.
- IsAuto boolInclude Alt Name 
- Whether to automatically append SAN to impersonating certificate if server certificate is missing SAN.
- IsExpired boolCertificate Blocked 
- Whether to block sessions if server's certificate is expired.
- IsOut boolOf Capacity Blocked 
- Whether to block sessions if the firewall is temporarily unable to decrypt their traffic.
- IsRevocation boolStatus Timeout Blocked 
- Whether to block sessions if the revocation status check for server's certificate does not succeed within the maximum allowed time (defaulting to 5 seconds).
- IsUnknown boolRevocation Status Blocked 
- Whether to block sessions if the revocation status check for server's certificate results in "unknown".
- IsUnsupported boolCipher Blocked 
- Whether to block sessions if SSL cipher suite is not supported.
- IsUnsupported boolVersion Blocked 
- Whether to block sessions if SSL version is not supported.
- IsUntrusted boolIssuer Blocked 
- Whether to block sessions if server's certificate is issued by an untrusted certificate authority (CA).
- Name string
- Unique Name of the decryption profile.
- NetworkFirewall stringPolicy Id 
- Unique Network Firewall Policy identifier
- ParentResource stringId 
- OCID of the Network Firewall Policy this decryption profile belongs to.
- Type string
- Describes the type of Decryption Profile SslForwardProxy or SslInboundInspection.
- AreCertificate boolExtensions Restricted 
- Whether to block sessions if the server's certificate uses extensions other than key usage and/or extended key usage.
- IsAuto boolInclude Alt Name 
- Whether to automatically append SAN to impersonating certificate if server certificate is missing SAN.
- IsExpired boolCertificate Blocked 
- Whether to block sessions if server's certificate is expired.
- IsOut boolOf Capacity Blocked 
- Whether to block sessions if the firewall is temporarily unable to decrypt their traffic.
- IsRevocation boolStatus Timeout Blocked 
- Whether to block sessions if the revocation status check for server's certificate does not succeed within the maximum allowed time (defaulting to 5 seconds).
- IsUnknown boolRevocation Status Blocked 
- Whether to block sessions if the revocation status check for server's certificate results in "unknown".
- IsUnsupported boolCipher Blocked 
- Whether to block sessions if SSL cipher suite is not supported.
- IsUnsupported boolVersion Blocked 
- Whether to block sessions if SSL version is not supported.
- IsUntrusted boolIssuer Blocked 
- Whether to block sessions if server's certificate is issued by an untrusted certificate authority (CA).
- Name string
- Unique Name of the decryption profile.
- NetworkFirewall stringPolicy Id 
- Unique Network Firewall Policy identifier
- ParentResource stringId 
- OCID of the Network Firewall Policy this decryption profile belongs to.
- Type string
- Describes the type of Decryption Profile SslForwardProxy or SslInboundInspection.
- areCertificate BooleanExtensions Restricted 
- Whether to block sessions if the server's certificate uses extensions other than key usage and/or extended key usage.
- isAuto BooleanInclude Alt Name 
- Whether to automatically append SAN to impersonating certificate if server certificate is missing SAN.
- isExpired BooleanCertificate Blocked 
- Whether to block sessions if server's certificate is expired.
- isOut BooleanOf Capacity Blocked 
- Whether to block sessions if the firewall is temporarily unable to decrypt their traffic.
- isRevocation BooleanStatus Timeout Blocked 
- Whether to block sessions if the revocation status check for server's certificate does not succeed within the maximum allowed time (defaulting to 5 seconds).
- isUnknown BooleanRevocation Status Blocked 
- Whether to block sessions if the revocation status check for server's certificate results in "unknown".
- isUnsupported BooleanCipher Blocked 
- Whether to block sessions if SSL cipher suite is not supported.
- isUnsupported BooleanVersion Blocked 
- Whether to block sessions if SSL version is not supported.
- isUntrusted BooleanIssuer Blocked 
- Whether to block sessions if server's certificate is issued by an untrusted certificate authority (CA).
- name String
- Unique Name of the decryption profile.
- networkFirewall StringPolicy Id 
- Unique Network Firewall Policy identifier
- parentResource StringId 
- OCID of the Network Firewall Policy this decryption profile belongs to.
- type String
- Describes the type of Decryption Profile SslForwardProxy or SslInboundInspection.
- areCertificate booleanExtensions Restricted 
- Whether to block sessions if the server's certificate uses extensions other than key usage and/or extended key usage.
- isAuto booleanInclude Alt Name 
- Whether to automatically append SAN to impersonating certificate if server certificate is missing SAN.
- isExpired booleanCertificate Blocked 
- Whether to block sessions if server's certificate is expired.
- isOut booleanOf Capacity Blocked 
- Whether to block sessions if the firewall is temporarily unable to decrypt their traffic.
- isRevocation booleanStatus Timeout Blocked 
- Whether to block sessions if the revocation status check for server's certificate does not succeed within the maximum allowed time (defaulting to 5 seconds).
- isUnknown booleanRevocation Status Blocked 
- Whether to block sessions if the revocation status check for server's certificate results in "unknown".
- isUnsupported booleanCipher Blocked 
- Whether to block sessions if SSL cipher suite is not supported.
- isUnsupported booleanVersion Blocked 
- Whether to block sessions if SSL version is not supported.
- isUntrusted booleanIssuer Blocked 
- Whether to block sessions if server's certificate is issued by an untrusted certificate authority (CA).
- name string
- Unique Name of the decryption profile.
- networkFirewall stringPolicy Id 
- Unique Network Firewall Policy identifier
- parentResource stringId 
- OCID of the Network Firewall Policy this decryption profile belongs to.
- type string
- Describes the type of Decryption Profile SslForwardProxy or SslInboundInspection.
- are_certificate_ boolextensions_ restricted 
- Whether to block sessions if the server's certificate uses extensions other than key usage and/or extended key usage.
- is_auto_ boolinclude_ alt_ name 
- Whether to automatically append SAN to impersonating certificate if server certificate is missing SAN.
- is_expired_ boolcertificate_ blocked 
- Whether to block sessions if server's certificate is expired.
- is_out_ boolof_ capacity_ blocked 
- Whether to block sessions if the firewall is temporarily unable to decrypt their traffic.
- is_revocation_ boolstatus_ timeout_ blocked 
- Whether to block sessions if the revocation status check for server's certificate does not succeed within the maximum allowed time (defaulting to 5 seconds).
- is_unknown_ boolrevocation_ status_ blocked 
- Whether to block sessions if the revocation status check for server's certificate results in "unknown".
- is_unsupported_ boolcipher_ blocked 
- Whether to block sessions if SSL cipher suite is not supported.
- is_unsupported_ boolversion_ blocked 
- Whether to block sessions if SSL version is not supported.
- is_untrusted_ boolissuer_ blocked 
- Whether to block sessions if server's certificate is issued by an untrusted certificate authority (CA).
- name str
- Unique Name of the decryption profile.
- network_firewall_ strpolicy_ id 
- Unique Network Firewall Policy identifier
- parent_resource_ strid 
- OCID of the Network Firewall Policy this decryption profile belongs to.
- type str
- Describes the type of Decryption Profile SslForwardProxy or SslInboundInspection.
- areCertificate BooleanExtensions Restricted 
- Whether to block sessions if the server's certificate uses extensions other than key usage and/or extended key usage.
- isAuto BooleanInclude Alt Name 
- Whether to automatically append SAN to impersonating certificate if server certificate is missing SAN.
- isExpired BooleanCertificate Blocked 
- Whether to block sessions if server's certificate is expired.
- isOut BooleanOf Capacity Blocked 
- Whether to block sessions if the firewall is temporarily unable to decrypt their traffic.
- isRevocation BooleanStatus Timeout Blocked 
- Whether to block sessions if the revocation status check for server's certificate does not succeed within the maximum allowed time (defaulting to 5 seconds).
- isUnknown BooleanRevocation Status Blocked 
- Whether to block sessions if the revocation status check for server's certificate results in "unknown".
- isUnsupported BooleanCipher Blocked 
- Whether to block sessions if SSL cipher suite is not supported.
- isUnsupported BooleanVersion Blocked 
- Whether to block sessions if SSL version is not supported.
- isUntrusted BooleanIssuer Blocked 
- Whether to block sessions if server's certificate is issued by an untrusted certificate authority (CA).
- name String
- Unique Name of the decryption profile.
- networkFirewall StringPolicy Id 
- Unique Network Firewall Policy identifier
- parentResource StringId 
- OCID of the Network Firewall Policy this decryption profile belongs to.
- type String
- Describes the type of Decryption Profile SslForwardProxy or SslInboundInspection.
GetNetworkFirewallPolicyDecryptionProfilesFilter      
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.