1. Packages
  2. Packages
  3. Cisco Catalyst SD-WAN Provider
  4. API Docs
  5. getEmbeddedSecurityNgfwPolicy
Viewing docs for Cisco Catalyst SD-WAN v0.8.1
published on Tuesday, Apr 7, 2026 by Pulumi
sdwan logo
Viewing docs for Cisco Catalyst SD-WAN v0.8.1
published on Tuesday, Apr 7, 2026 by Pulumi

    This data source can read the Embedded Security NGFW Policy.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = sdwan.getEmbeddedSecurityNgfwPolicy({
        id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
        featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.get_embedded_security_ngfw_policy(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
        feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sdwan.LookupEmbeddedSecurityNgfwPolicy(ctx, &sdwan.LookupEmbeddedSecurityNgfwPolicyArgs{
    			Id:               "f6b2c44c-693c-4763-b010-895aa3d236bd",
    			FeatureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Sdwan = Pulumi.Sdwan;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Sdwan.GetEmbeddedSecurityNgfwPolicy.Invoke(new()
        {
            Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
            FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.SdwanFunctions;
    import com.pulumi.sdwan.inputs.GetEmbeddedSecurityNgfwPolicyArgs;
    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 example = SdwanFunctions.getEmbeddedSecurityNgfwPolicy(GetEmbeddedSecurityNgfwPolicyArgs.builder()
                .id("f6b2c44c-693c-4763-b010-895aa3d236bd")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: sdwan:getEmbeddedSecurityNgfwPolicy
          arguments:
            id: f6b2c44c-693c-4763-b010-895aa3d236bd
            featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
    
    Example coming soon!
    

    Using getEmbeddedSecurityNgfwPolicy

    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 getEmbeddedSecurityNgfwPolicy(args: GetEmbeddedSecurityNgfwPolicyArgs, opts?: InvokeOptions): Promise<GetEmbeddedSecurityNgfwPolicyResult>
    function getEmbeddedSecurityNgfwPolicyOutput(args: GetEmbeddedSecurityNgfwPolicyOutputArgs, opts?: InvokeOptions): Output<GetEmbeddedSecurityNgfwPolicyResult>
    def get_embedded_security_ngfw_policy(feature_profile_id: Optional[str] = None,
                                          id: Optional[str] = None,
                                          opts: Optional[InvokeOptions] = None) -> GetEmbeddedSecurityNgfwPolicyResult
    def get_embedded_security_ngfw_policy_output(feature_profile_id: pulumi.Input[Optional[str]] = None,
                                          id: pulumi.Input[Optional[str]] = None,
                                          opts: Optional[InvokeOptions] = None) -> Output[GetEmbeddedSecurityNgfwPolicyResult]
    func LookupEmbeddedSecurityNgfwPolicy(ctx *Context, args *LookupEmbeddedSecurityNgfwPolicyArgs, opts ...InvokeOption) (*LookupEmbeddedSecurityNgfwPolicyResult, error)
    func LookupEmbeddedSecurityNgfwPolicyOutput(ctx *Context, args *LookupEmbeddedSecurityNgfwPolicyOutputArgs, opts ...InvokeOption) LookupEmbeddedSecurityNgfwPolicyResultOutput

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

    public static class GetEmbeddedSecurityNgfwPolicy 
    {
        public static Task<GetEmbeddedSecurityNgfwPolicyResult> InvokeAsync(GetEmbeddedSecurityNgfwPolicyArgs args, InvokeOptions? opts = null)
        public static Output<GetEmbeddedSecurityNgfwPolicyResult> Invoke(GetEmbeddedSecurityNgfwPolicyInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetEmbeddedSecurityNgfwPolicyResult> getEmbeddedSecurityNgfwPolicy(GetEmbeddedSecurityNgfwPolicyArgs args, InvokeOptions options)
    public static Output<GetEmbeddedSecurityNgfwPolicyResult> getEmbeddedSecurityNgfwPolicy(GetEmbeddedSecurityNgfwPolicyArgs args, InvokeOptions options)
    
    fn::invoke:
      function: sdwan:index/getEmbeddedSecurityNgfwPolicy:getEmbeddedSecurityNgfwPolicy
      arguments:
        # arguments dictionary
    data "sdwan_getembeddedsecurityngfwpolicy" "name" {
        # arguments
    }

    The following arguments are supported:

    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Policy
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Policy
    feature_profile_id string
    Feature Profile ID
    id string
    The id of the Policy
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Policy
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Policy
    feature_profile_id str
    Feature Profile ID
    id str
    The id of the Policy
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Policy

    getEmbeddedSecurityNgfwPolicy Result

    The following output properties are available:

    DefaultAction string
    Description string
    The description of the Policy
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Policy
    Name string
    The name of the Policy
    Sequences List<GetEmbeddedSecurityNgfwPolicySequence>
    Version int
    The version of the Policy
    DefaultAction string
    Description string
    The description of the Policy
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Policy
    Name string
    The name of the Policy
    Sequences []GetEmbeddedSecurityNgfwPolicySequence
    Version int
    The version of the Policy
    default_action string
    description string
    The description of the Policy
    feature_profile_id string
    Feature Profile ID
    id string
    The id of the Policy
    name string
    The name of the Policy
    sequences list(object)
    version number
    The version of the Policy
    defaultAction String
    description String
    The description of the Policy
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Policy
    name String
    The name of the Policy
    sequences List<GetEmbeddedSecurityNgfwPolicySequence>
    version Integer
    The version of the Policy
    defaultAction string
    description string
    The description of the Policy
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Policy
    name string
    The name of the Policy
    sequences GetEmbeddedSecurityNgfwPolicySequence[]
    version number
    The version of the Policy
    default_action str
    description str
    The description of the Policy
    feature_profile_id str
    Feature Profile ID
    id str
    The id of the Policy
    name str
    The name of the Policy
    sequences Sequence[GetEmbeddedSecurityNgfwPolicySequence]
    version int
    The version of the Policy
    defaultAction String
    description String
    The description of the Policy
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Policy
    name String
    The name of the Policy
    sequences List<Property Map>
    version Number
    The version of the Policy

    Supporting Types

    GetEmbeddedSecurityNgfwPolicySequence

    actions list(object)
    can be empty array or with type or parameter
    base_action string
    disable_sequence bool
    match_entries list(object)
    sequence_id string
    sequence_name string
    sequence_type string
    actions List<Property Map>
    can be empty array or with type or parameter
    baseAction String
    disableSequence Boolean
    matchEntries List<Property Map>
    sequenceId String
    sequenceName String
    sequenceType String

    GetEmbeddedSecurityNgfwPolicySequenceAction

    Parameter string
    ParameterId string
    Type string
    Parameter string
    ParameterId string
    Type string
    parameter string
    parameter_id string
    type string
    parameter String
    parameterId String
    type String
    parameter string
    parameterId string
    type string
    parameter String
    parameterId String
    type String

    GetEmbeddedSecurityNgfwPolicySequenceMatchEntry

    AppListIds List<string>
    ApplicationFamilies List<string>
    Applications List<string>
    DestinationDataPrefixListIds List<string>
    DestinationDataPrefixes List<string>
    DestinationDataPrefixesVariable string
    Variable name
    DestinationFqdnListIds List<string>
    DestinationFqdns List<string>
    DestinationFqdnsVariable string
    Variable name
    DestinationGeoLocationListIds List<string>
    DestinationGeoLocations List<string>
    DestinationGeoLocationsVariable string
    Variable name
    DestinationPortListIds List<string>
    DestinationPorts List<string>
    DestinationPortsVariable string
    Variable name
    DestinationScalableGroupTagListIds List<string>
    DestinationSecurityGroupListIds List<string>
    FlatAppListIds List<string>
    ProtocolNameListIds List<string>
    ProtocolNames List<string>
    Protocols List<string>
    SourceDataPrefixListIds List<string>
    SourceDataPrefixes List<string>
    SourceDataPrefixesVariable string
    Variable name
    SourceGeoLocationListIds List<string>
    SourceGeoLocations List<string>
    SourceGeoLocationsVariable string
    Variable name
    SourceIdentityListIds List<string>
    SourceIdentityUsergroups List<string>
    SourceIdentityUsers List<string>
    SourcePortListIds List<string>
    SourcePorts List<string>
    SourcePortsVariable string
    Variable name
    SourceScalableGroupTagListIds List<string>
    SourceSecurityGroupListIds List<string>
    AppListIds []string
    ApplicationFamilies []string
    Applications []string
    DestinationDataPrefixListIds []string
    DestinationDataPrefixes []string
    DestinationDataPrefixesVariable string
    Variable name
    DestinationFqdnListIds []string
    DestinationFqdns []string
    DestinationFqdnsVariable string
    Variable name
    DestinationGeoLocationListIds []string
    DestinationGeoLocations []string
    DestinationGeoLocationsVariable string
    Variable name
    DestinationPortListIds []string
    DestinationPorts []string
    DestinationPortsVariable string
    Variable name
    DestinationScalableGroupTagListIds []string
    DestinationSecurityGroupListIds []string
    FlatAppListIds []string
    ProtocolNameListIds []string
    ProtocolNames []string
    Protocols []string
    SourceDataPrefixListIds []string
    SourceDataPrefixes []string
    SourceDataPrefixesVariable string
    Variable name
    SourceGeoLocationListIds []string
    SourceGeoLocations []string
    SourceGeoLocationsVariable string
    Variable name
    SourceIdentityListIds []string
    SourceIdentityUsergroups []string
    SourceIdentityUsers []string
    SourcePortListIds []string
    SourcePorts []string
    SourcePortsVariable string
    Variable name
    SourceScalableGroupTagListIds []string
    SourceSecurityGroupListIds []string
    app_list_ids list(string)
    application_families list(string)
    applications list(string)
    destination_data_prefix_list_ids list(string)
    destination_data_prefixes list(string)
    destination_data_prefixes_variable string
    Variable name
    destination_fqdn_list_ids list(string)
    destination_fqdns list(string)
    destination_fqdns_variable string
    Variable name
    destination_geo_location_list_ids list(string)
    destination_geo_locations list(string)
    destination_geo_locations_variable string
    Variable name
    destination_port_list_ids list(string)
    destination_ports list(string)
    destination_ports_variable string
    Variable name
    destination_scalable_group_tag_list_ids list(string)
    destination_security_group_list_ids list(string)
    flat_app_list_ids list(string)
    protocol_name_list_ids list(string)
    protocol_names list(string)
    protocols list(string)
    source_data_prefix_list_ids list(string)
    source_data_prefixes list(string)
    source_data_prefixes_variable string
    Variable name
    source_geo_location_list_ids list(string)
    source_geo_locations list(string)
    source_geo_locations_variable string
    Variable name
    source_identity_list_ids list(string)
    source_identity_usergroups list(string)
    source_identity_users list(string)
    source_port_list_ids list(string)
    source_ports list(string)
    source_ports_variable string
    Variable name
    source_scalable_group_tag_list_ids list(string)
    source_security_group_list_ids list(string)
    appListIds List<String>
    applicationFamilies List<String>
    applications List<String>
    destinationDataPrefixListIds List<String>
    destinationDataPrefixes List<String>
    destinationDataPrefixesVariable String
    Variable name
    destinationFqdnListIds List<String>
    destinationFqdns List<String>
    destinationFqdnsVariable String
    Variable name
    destinationGeoLocationListIds List<String>
    destinationGeoLocations List<String>
    destinationGeoLocationsVariable String
    Variable name
    destinationPortListIds List<String>
    destinationPorts List<String>
    destinationPortsVariable String
    Variable name
    destinationScalableGroupTagListIds List<String>
    destinationSecurityGroupListIds List<String>
    flatAppListIds List<String>
    protocolNameListIds List<String>
    protocolNames List<String>
    protocols List<String>
    sourceDataPrefixListIds List<String>
    sourceDataPrefixes List<String>
    sourceDataPrefixesVariable String
    Variable name
    sourceGeoLocationListIds List<String>
    sourceGeoLocations List<String>
    sourceGeoLocationsVariable String
    Variable name
    sourceIdentityListIds List<String>
    sourceIdentityUsergroups List<String>
    sourceIdentityUsers List<String>
    sourcePortListIds List<String>
    sourcePorts List<String>
    sourcePortsVariable String
    Variable name
    sourceScalableGroupTagListIds List<String>
    sourceSecurityGroupListIds List<String>
    appListIds string[]
    applicationFamilies string[]
    applications string[]
    destinationDataPrefixListIds string[]
    destinationDataPrefixes string[]
    destinationDataPrefixesVariable string
    Variable name
    destinationFqdnListIds string[]
    destinationFqdns string[]
    destinationFqdnsVariable string
    Variable name
    destinationGeoLocationListIds string[]
    destinationGeoLocations string[]
    destinationGeoLocationsVariable string
    Variable name
    destinationPortListIds string[]
    destinationPorts string[]
    destinationPortsVariable string
    Variable name
    destinationScalableGroupTagListIds string[]
    destinationSecurityGroupListIds string[]
    flatAppListIds string[]
    protocolNameListIds string[]
    protocolNames string[]
    protocols string[]
    sourceDataPrefixListIds string[]
    sourceDataPrefixes string[]
    sourceDataPrefixesVariable string
    Variable name
    sourceGeoLocationListIds string[]
    sourceGeoLocations string[]
    sourceGeoLocationsVariable string
    Variable name
    sourceIdentityListIds string[]
    sourceIdentityUsergroups string[]
    sourceIdentityUsers string[]
    sourcePortListIds string[]
    sourcePorts string[]
    sourcePortsVariable string
    Variable name
    sourceScalableGroupTagListIds string[]
    sourceSecurityGroupListIds string[]
    app_list_ids Sequence[str]
    application_families Sequence[str]
    applications Sequence[str]
    destination_data_prefix_list_ids Sequence[str]
    destination_data_prefixes Sequence[str]
    destination_data_prefixes_variable str
    Variable name
    destination_fqdn_list_ids Sequence[str]
    destination_fqdns Sequence[str]
    destination_fqdns_variable str
    Variable name
    destination_geo_location_list_ids Sequence[str]
    destination_geo_locations Sequence[str]
    destination_geo_locations_variable str
    Variable name
    destination_port_list_ids Sequence[str]
    destination_ports Sequence[str]
    destination_ports_variable str
    Variable name
    destination_scalable_group_tag_list_ids Sequence[str]
    destination_security_group_list_ids Sequence[str]
    flat_app_list_ids Sequence[str]
    protocol_name_list_ids Sequence[str]
    protocol_names Sequence[str]
    protocols Sequence[str]
    source_data_prefix_list_ids Sequence[str]
    source_data_prefixes Sequence[str]
    source_data_prefixes_variable str
    Variable name
    source_geo_location_list_ids Sequence[str]
    source_geo_locations Sequence[str]
    source_geo_locations_variable str
    Variable name
    source_identity_list_ids Sequence[str]
    source_identity_usergroups Sequence[str]
    source_identity_users Sequence[str]
    source_port_list_ids Sequence[str]
    source_ports Sequence[str]
    source_ports_variable str
    Variable name
    source_scalable_group_tag_list_ids Sequence[str]
    source_security_group_list_ids Sequence[str]
    appListIds List<String>
    applicationFamilies List<String>
    applications List<String>
    destinationDataPrefixListIds List<String>
    destinationDataPrefixes List<String>
    destinationDataPrefixesVariable String
    Variable name
    destinationFqdnListIds List<String>
    destinationFqdns List<String>
    destinationFqdnsVariable String
    Variable name
    destinationGeoLocationListIds List<String>
    destinationGeoLocations List<String>
    destinationGeoLocationsVariable String
    Variable name
    destinationPortListIds List<String>
    destinationPorts List<String>
    destinationPortsVariable String
    Variable name
    destinationScalableGroupTagListIds List<String>
    destinationSecurityGroupListIds List<String>
    flatAppListIds List<String>
    protocolNameListIds List<String>
    protocolNames List<String>
    protocols List<String>
    sourceDataPrefixListIds List<String>
    sourceDataPrefixes List<String>
    sourceDataPrefixesVariable String
    Variable name
    sourceGeoLocationListIds List<String>
    sourceGeoLocations List<String>
    sourceGeoLocationsVariable String
    Variable name
    sourceIdentityListIds List<String>
    sourceIdentityUsergroups List<String>
    sourceIdentityUsers List<String>
    sourcePortListIds List<String>
    sourcePorts List<String>
    sourcePortsVariable String
    Variable name
    sourceScalableGroupTagListIds List<String>
    sourceSecurityGroupListIds List<String>

    Package Details

    Repository
    sdwan pulumi/pulumi-sdwan
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdwan Terraform Provider.
    sdwan logo
    Viewing docs for Cisco Catalyst SD-WAN v0.8.1
    published on Tuesday, Apr 7, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.