1. Packages
  2. Packages
  3. Cisco Catalyst SD-WAN Provider
  4. API Docs
  5. getPolicyObjectFeatureProfileParcels
Viewing docs for Cisco Catalyst SD-WAN v0.8.2
published on Tuesday, May 19, 2026 by Pulumi
sdwan logo
Viewing docs for Cisco Catalyst SD-WAN v0.8.2
published on Tuesday, May 19, 2026 by Pulumi

    This data source can read the parcels of a Policy Object Feature Profile.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = sdwan.getPolicyObjectFeatureProfileParcels({
        featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.get_policy_object_feature_profile_parcels(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.GetPolicyObjectFeatureProfileParcels(ctx, &sdwan.GetPolicyObjectFeatureProfileParcelsArgs{
    			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.GetPolicyObjectFeatureProfileParcels.Invoke(new()
        {
            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.GetPolicyObjectFeatureProfileParcelsArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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.getPolicyObjectFeatureProfileParcels(GetPolicyObjectFeatureProfileParcelsArgs.builder()
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: sdwan:getPolicyObjectFeatureProfileParcels
          arguments:
            featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
    
    Example coming soon!
    

    Using getPolicyObjectFeatureProfileParcels

    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 getPolicyObjectFeatureProfileParcels(args: GetPolicyObjectFeatureProfileParcelsArgs, opts?: InvokeOptions): Promise<GetPolicyObjectFeatureProfileParcelsResult>
    function getPolicyObjectFeatureProfileParcelsOutput(args: GetPolicyObjectFeatureProfileParcelsOutputArgs, opts?: InvokeOptions): Output<GetPolicyObjectFeatureProfileParcelsResult>
    def get_policy_object_feature_profile_parcels(created_by: Optional[str] = None,
                                                  feature_profile_id: Optional[str] = None,
                                                  parcel_type: Optional[str] = None,
                                                  opts: Optional[InvokeOptions] = None) -> GetPolicyObjectFeatureProfileParcelsResult
    def get_policy_object_feature_profile_parcels_output(created_by: pulumi.Input[Optional[str]] = None,
                                                  feature_profile_id: pulumi.Input[Optional[str]] = None,
                                                  parcel_type: pulumi.Input[Optional[str]] = None,
                                                  opts: Optional[InvokeOptions] = None) -> Output[GetPolicyObjectFeatureProfileParcelsResult]
    func GetPolicyObjectFeatureProfileParcels(ctx *Context, args *GetPolicyObjectFeatureProfileParcelsArgs, opts ...InvokeOption) (*GetPolicyObjectFeatureProfileParcelsResult, error)
    func GetPolicyObjectFeatureProfileParcelsOutput(ctx *Context, args *GetPolicyObjectFeatureProfileParcelsOutputArgs, opts ...InvokeOption) GetPolicyObjectFeatureProfileParcelsResultOutput

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

    public static class GetPolicyObjectFeatureProfileParcels 
    {
        public static Task<GetPolicyObjectFeatureProfileParcelsResult> InvokeAsync(GetPolicyObjectFeatureProfileParcelsArgs args, InvokeOptions? opts = null)
        public static Output<GetPolicyObjectFeatureProfileParcelsResult> Invoke(GetPolicyObjectFeatureProfileParcelsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPolicyObjectFeatureProfileParcelsResult> getPolicyObjectFeatureProfileParcels(GetPolicyObjectFeatureProfileParcelsArgs args, InvokeOptions options)
    public static Output<GetPolicyObjectFeatureProfileParcelsResult> getPolicyObjectFeatureProfileParcels(GetPolicyObjectFeatureProfileParcelsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: sdwan:index/getPolicyObjectFeatureProfileParcels:getPolicyObjectFeatureProfileParcels
      arguments:
        # arguments dictionary
    data "sdwan_getpolicyobjectfeatureprofileparcels" "name" {
        # arguments
    }

    The following arguments are supported:

    FeatureProfileId string
    Policy Object Feature Profile ID
    CreatedBy string
    Filter by creator (e.g. 'system' for system-created parcels)
    ParcelType string
    Filter by parcel type (e.g. 'app-list', 'data-prefix')
    FeatureProfileId string
    Policy Object Feature Profile ID
    CreatedBy string
    Filter by creator (e.g. 'system' for system-created parcels)
    ParcelType string
    Filter by parcel type (e.g. 'app-list', 'data-prefix')
    feature_profile_id string
    Policy Object Feature Profile ID
    created_by string
    Filter by creator (e.g. 'system' for system-created parcels)
    parcel_type string
    Filter by parcel type (e.g. 'app-list', 'data-prefix')
    featureProfileId String
    Policy Object Feature Profile ID
    createdBy String
    Filter by creator (e.g. 'system' for system-created parcels)
    parcelType String
    Filter by parcel type (e.g. 'app-list', 'data-prefix')
    featureProfileId string
    Policy Object Feature Profile ID
    createdBy string
    Filter by creator (e.g. 'system' for system-created parcels)
    parcelType string
    Filter by parcel type (e.g. 'app-list', 'data-prefix')
    feature_profile_id str
    Policy Object Feature Profile ID
    created_by str
    Filter by creator (e.g. 'system' for system-created parcels)
    parcel_type str
    Filter by parcel type (e.g. 'app-list', 'data-prefix')
    featureProfileId String
    Policy Object Feature Profile ID
    createdBy String
    Filter by creator (e.g. 'system' for system-created parcels)
    parcelType String
    Filter by parcel type (e.g. 'app-list', 'data-prefix')

    getPolicyObjectFeatureProfileParcels Result

    The following output properties are available:

    FeatureProfileId string
    Policy Object Feature Profile ID
    Id string
    The id of the object
    Parcels List<GetPolicyObjectFeatureProfileParcelsParcel>
    List of parcels associated with this profile
    CreatedBy string
    Filter by creator (e.g. 'system' for system-created parcels)
    ParcelType string
    Filter by parcel type (e.g. 'app-list', 'data-prefix')
    FeatureProfileId string
    Policy Object Feature Profile ID
    Id string
    The id of the object
    Parcels []GetPolicyObjectFeatureProfileParcelsParcel
    List of parcels associated with this profile
    CreatedBy string
    Filter by creator (e.g. 'system' for system-created parcels)
    ParcelType string
    Filter by parcel type (e.g. 'app-list', 'data-prefix')
    feature_profile_id string
    Policy Object Feature Profile ID
    id string
    The id of the object
    parcels list(object)
    List of parcels associated with this profile
    created_by string
    Filter by creator (e.g. 'system' for system-created parcels)
    parcel_type string
    Filter by parcel type (e.g. 'app-list', 'data-prefix')
    featureProfileId String
    Policy Object Feature Profile ID
    id String
    The id of the object
    parcels List<GetPolicyObjectFeatureProfileParcelsParcel>
    List of parcels associated with this profile
    createdBy String
    Filter by creator (e.g. 'system' for system-created parcels)
    parcelType String
    Filter by parcel type (e.g. 'app-list', 'data-prefix')
    featureProfileId string
    Policy Object Feature Profile ID
    id string
    The id of the object
    parcels GetPolicyObjectFeatureProfileParcelsParcel[]
    List of parcels associated with this profile
    createdBy string
    Filter by creator (e.g. 'system' for system-created parcels)
    parcelType string
    Filter by parcel type (e.g. 'app-list', 'data-prefix')
    feature_profile_id str
    Policy Object Feature Profile ID
    id str
    The id of the object
    parcels Sequence[GetPolicyObjectFeatureProfileParcelsParcel]
    List of parcels associated with this profile
    created_by str
    Filter by creator (e.g. 'system' for system-created parcels)
    parcel_type str
    Filter by parcel type (e.g. 'app-list', 'data-prefix')
    featureProfileId String
    Policy Object Feature Profile ID
    id String
    The id of the object
    parcels List<Property Map>
    List of parcels associated with this profile
    createdBy String
    Filter by creator (e.g. 'system' for system-created parcels)
    parcelType String
    Filter by parcel type (e.g. 'app-list', 'data-prefix')

    Supporting Types

    GetPolicyObjectFeatureProfileParcelsParcel

    CreatedBy string
    User who created the parcel (system for system-created parcels)
    LastUpdatedBy string
    User who last updated the parcel
    ParcelDescription string
    Description of the parcel
    ParcelId string
    Parcel identifier
    ParcelName string
    Name of the parcel
    ParcelType string
    Parcel type (e.g. app-list, data-prefix, etc.)
    ReferenceCount int
    Number of references to this parcel
    CreatedBy string
    User who created the parcel (system for system-created parcels)
    LastUpdatedBy string
    User who last updated the parcel
    ParcelDescription string
    Description of the parcel
    ParcelId string
    Parcel identifier
    ParcelName string
    Name of the parcel
    ParcelType string
    Parcel type (e.g. app-list, data-prefix, etc.)
    ReferenceCount int
    Number of references to this parcel
    created_by string
    User who created the parcel (system for system-created parcels)
    last_updated_by string
    User who last updated the parcel
    parcel_description string
    Description of the parcel
    parcel_id string
    Parcel identifier
    parcel_name string
    Name of the parcel
    parcel_type string
    Parcel type (e.g. app-list, data-prefix, etc.)
    reference_count number
    Number of references to this parcel
    createdBy String
    User who created the parcel (system for system-created parcels)
    lastUpdatedBy String
    User who last updated the parcel
    parcelDescription String
    Description of the parcel
    parcelId String
    Parcel identifier
    parcelName String
    Name of the parcel
    parcelType String
    Parcel type (e.g. app-list, data-prefix, etc.)
    referenceCount Integer
    Number of references to this parcel
    createdBy string
    User who created the parcel (system for system-created parcels)
    lastUpdatedBy string
    User who last updated the parcel
    parcelDescription string
    Description of the parcel
    parcelId string
    Parcel identifier
    parcelName string
    Name of the parcel
    parcelType string
    Parcel type (e.g. app-list, data-prefix, etc.)
    referenceCount number
    Number of references to this parcel
    created_by str
    User who created the parcel (system for system-created parcels)
    last_updated_by str
    User who last updated the parcel
    parcel_description str
    Description of the parcel
    parcel_id str
    Parcel identifier
    parcel_name str
    Name of the parcel
    parcel_type str
    Parcel type (e.g. app-list, data-prefix, etc.)
    reference_count int
    Number of references to this parcel
    createdBy String
    User who created the parcel (system for system-created parcels)
    lastUpdatedBy String
    User who last updated the parcel
    parcelDescription String
    Description of the parcel
    parcelId String
    Parcel identifier
    parcelName String
    Name of the parcel
    parcelType String
    Parcel type (e.g. app-list, data-prefix, etc.)
    referenceCount Number
    Number of references to this parcel

    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.2
    published on Tuesday, May 19, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial