1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getIpsecCryptoProfileList
Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi
scm logo
Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Example of listing all IPsec Crypto Profiles within a specific folder.
    const scmIpsecCryptoProfileListDs = scm.getIpsecCryptoProfileList({
        folder: "Prisma Access",
        limit: 100,
    });
    export const allIpsecProfiles = scmIpsecCryptoProfileListDs.then(scmIpsecCryptoProfileListDs => scmIpsecCryptoProfileListDs.datas);
    
    import pulumi
    import pulumi_scm as scm
    
    # Example of listing all IPsec Crypto Profiles within a specific folder.
    scm_ipsec_crypto_profile_list_ds = scm.get_ipsec_crypto_profile_list(folder="Prisma Access",
        limit=100)
    pulumi.export("allIpsecProfiles", scm_ipsec_crypto_profile_list_ds.datas)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Example of listing all IPsec Crypto Profiles within a specific folder.
    		scmIpsecCryptoProfileListDs, err := scm.GetIpsecCryptoProfileList(ctx, &scm.GetIpsecCryptoProfileListArgs{
    			Folder: pulumi.StringRef("Prisma Access"),
    			Limit:  pulumi.IntRef(100),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("allIpsecProfiles", scmIpsecCryptoProfileListDs.Datas)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Example of listing all IPsec Crypto Profiles within a specific folder.
        var scmIpsecCryptoProfileListDs = Scm.GetIpsecCryptoProfileList.Invoke(new()
        {
            Folder = "Prisma Access",
            Limit = 100,
        });
    
        return new Dictionary<string, object?>
        {
            ["allIpsecProfiles"] = scmIpsecCryptoProfileListDs.Apply(getIpsecCryptoProfileListResult => getIpsecCryptoProfileListResult.Datas),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ScmFunctions;
    import com.pulumi.scm.inputs.GetIpsecCryptoProfileListArgs;
    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) {
            // Example of listing all IPsec Crypto Profiles within a specific folder.
            final var scmIpsecCryptoProfileListDs = ScmFunctions.getIpsecCryptoProfileList(GetIpsecCryptoProfileListArgs.builder()
                .folder("Prisma Access")
                .limit(100)
                .build());
    
            ctx.export("allIpsecProfiles", scmIpsecCryptoProfileListDs.datas());
        }
    }
    
    variables:
      # Example of listing all IPsec Crypto Profiles within a specific folder.
      scmIpsecCryptoProfileListDs:
        fn::invoke:
          function: scm:getIpsecCryptoProfileList
          arguments:
            folder: Prisma Access
            limit: 100
    outputs:
      allIpsecProfiles: ${scmIpsecCryptoProfileListDs.datas}
    

    Using getIpsecCryptoProfileList

    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 getIpsecCryptoProfileList(args: GetIpsecCryptoProfileListArgs, opts?: InvokeOptions): Promise<GetIpsecCryptoProfileListResult>
    function getIpsecCryptoProfileListOutput(args: GetIpsecCryptoProfileListOutputArgs, opts?: InvokeOptions): Output<GetIpsecCryptoProfileListResult>
    def get_ipsec_crypto_profile_list(device: Optional[str] = None,
                                      folder: Optional[str] = None,
                                      limit: Optional[int] = None,
                                      name: Optional[str] = None,
                                      offset: Optional[int] = None,
                                      snippet: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetIpsecCryptoProfileListResult
    def get_ipsec_crypto_profile_list_output(device: Optional[pulumi.Input[str]] = None,
                                      folder: Optional[pulumi.Input[str]] = None,
                                      limit: Optional[pulumi.Input[int]] = None,
                                      name: Optional[pulumi.Input[str]] = None,
                                      offset: Optional[pulumi.Input[int]] = None,
                                      snippet: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetIpsecCryptoProfileListResult]
    func GetIpsecCryptoProfileList(ctx *Context, args *GetIpsecCryptoProfileListArgs, opts ...InvokeOption) (*GetIpsecCryptoProfileListResult, error)
    func GetIpsecCryptoProfileListOutput(ctx *Context, args *GetIpsecCryptoProfileListOutputArgs, opts ...InvokeOption) GetIpsecCryptoProfileListResultOutput

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

    public static class GetIpsecCryptoProfileList 
    {
        public static Task<GetIpsecCryptoProfileListResult> InvokeAsync(GetIpsecCryptoProfileListArgs args, InvokeOptions? opts = null)
        public static Output<GetIpsecCryptoProfileListResult> Invoke(GetIpsecCryptoProfileListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIpsecCryptoProfileListResult> getIpsecCryptoProfileList(GetIpsecCryptoProfileListArgs args, InvokeOptions options)
    public static Output<GetIpsecCryptoProfileListResult> getIpsecCryptoProfileList(GetIpsecCryptoProfileListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getIpsecCryptoProfileList:getIpsecCryptoProfileList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    getIpsecCryptoProfileList Result

    The following output properties are available:

    Datas List<GetIpsecCryptoProfileListData>
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Datas []GetIpsecCryptoProfileListData
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    datas List<GetIpsecCryptoProfileListData>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Integer
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    datas GetIpsecCryptoProfileListData[]
    The data.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    total number
    The total number of items.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    datas Sequence[GetIpsecCryptoProfileListData]
    The data.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    total int
    The total number of items.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    datas List<Property Map>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Number
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    Supporting Types

    GetIpsecCryptoProfileListData

    Ah GetIpsecCryptoProfileListDataAh
    Ah
    Device string
    The device of the item.
    DhGroup string
    phase-2 DH group (PFS DH group)
    Esp GetIpsecCryptoProfileListDataEsp

    Esp

    ℹ️ Note: You must specify exactly one of ah and esp.

    Folder string
    The folder of the item. Default: Shared.
    Id string
    UUID of the resource
    Lifesize GetIpsecCryptoProfileListDataLifesize
    Lifesize
    Lifetime GetIpsecCryptoProfileListDataLifetime
    Ipsec crypto profile lifetime
    Name string
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    Snippet string
    The snippet of the item.
    Tfid string
    Ah GetIpsecCryptoProfileListDataAh
    Ah
    Device string
    The device of the item.
    DhGroup string
    phase-2 DH group (PFS DH group)
    Esp GetIpsecCryptoProfileListDataEsp

    Esp

    ℹ️ Note: You must specify exactly one of ah and esp.

    Folder string
    The folder of the item. Default: Shared.
    Id string
    UUID of the resource
    Lifesize GetIpsecCryptoProfileListDataLifesize
    Lifesize
    Lifetime GetIpsecCryptoProfileListDataLifetime
    Ipsec crypto profile lifetime
    Name string
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    Snippet string
    The snippet of the item.
    Tfid string
    ah GetIpsecCryptoProfileListDataAh
    Ah
    device String
    The device of the item.
    dhGroup String
    phase-2 DH group (PFS DH group)
    esp GetIpsecCryptoProfileListDataEsp

    Esp

    ℹ️ Note: You must specify exactly one of ah and esp.

    folder String
    The folder of the item. Default: Shared.
    id String
    UUID of the resource
    lifesize GetIpsecCryptoProfileListDataLifesize
    Lifesize
    lifetime GetIpsecCryptoProfileListDataLifetime
    Ipsec crypto profile lifetime
    name String
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    snippet String
    The snippet of the item.
    tfid String
    ah GetIpsecCryptoProfileListDataAh
    Ah
    device string
    The device of the item.
    dhGroup string
    phase-2 DH group (PFS DH group)
    esp GetIpsecCryptoProfileListDataEsp

    Esp

    ℹ️ Note: You must specify exactly one of ah and esp.

    folder string
    The folder of the item. Default: Shared.
    id string
    UUID of the resource
    lifesize GetIpsecCryptoProfileListDataLifesize
    Lifesize
    lifetime GetIpsecCryptoProfileListDataLifetime
    Ipsec crypto profile lifetime
    name string
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    snippet string
    The snippet of the item.
    tfid string
    ah GetIpsecCryptoProfileListDataAh
    Ah
    device str
    The device of the item.
    dh_group str
    phase-2 DH group (PFS DH group)
    esp GetIpsecCryptoProfileListDataEsp

    Esp

    ℹ️ Note: You must specify exactly one of ah and esp.

    folder str
    The folder of the item. Default: Shared.
    id str
    UUID of the resource
    lifesize GetIpsecCryptoProfileListDataLifesize
    Lifesize
    lifetime GetIpsecCryptoProfileListDataLifetime
    Ipsec crypto profile lifetime
    name str
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    snippet str
    The snippet of the item.
    tfid str
    ah Property Map
    Ah
    device String
    The device of the item.
    dhGroup String
    phase-2 DH group (PFS DH group)
    esp Property Map

    Esp

    ℹ️ Note: You must specify exactly one of ah and esp.

    folder String
    The folder of the item. Default: Shared.
    id String
    UUID of the resource
    lifesize Property Map
    Lifesize
    lifetime Property Map
    Ipsec crypto profile lifetime
    name String
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    snippet String
    The snippet of the item.
    tfid String

    GetIpsecCryptoProfileListDataAh

    Authentications List<string>
    Authentication
    Authentications []string
    Authentication
    authentications List<String>
    Authentication
    authentications string[]
    Authentication
    authentications Sequence[str]
    Authentication
    authentications List<String>
    Authentication

    GetIpsecCryptoProfileListDataEsp

    Authentications List<string>
    Authentication algorithm
    Encryptions List<string>
    Encryption algorithm
    Authentications []string
    Authentication algorithm
    Encryptions []string
    Encryption algorithm
    authentications List<String>
    Authentication algorithm
    encryptions List<String>
    Encryption algorithm
    authentications string[]
    Authentication algorithm
    encryptions string[]
    Encryption algorithm
    authentications Sequence[str]
    Authentication algorithm
    encryptions Sequence[str]
    Encryption algorithm
    authentications List<String>
    Authentication algorithm
    encryptions List<String>
    Encryption algorithm

    GetIpsecCryptoProfileListDataLifesize

    Gb int
    specify lifesize in gigabytes(GB)
    Kb int

    specify lifesize in kilobytes(KB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    Mb int

    specify lifesize in megabytes(MB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    Tb int

    specify lifesize in terabytes(TB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    Gb int
    specify lifesize in gigabytes(GB)
    Kb int

    specify lifesize in kilobytes(KB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    Mb int

    specify lifesize in megabytes(MB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    Tb int

    specify lifesize in terabytes(TB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    gb Integer
    specify lifesize in gigabytes(GB)
    kb Integer

    specify lifesize in kilobytes(KB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    mb Integer

    specify lifesize in megabytes(MB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    tb Integer

    specify lifesize in terabytes(TB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    gb number
    specify lifesize in gigabytes(GB)
    kb number

    specify lifesize in kilobytes(KB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    mb number

    specify lifesize in megabytes(MB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    tb number

    specify lifesize in terabytes(TB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    gb int
    specify lifesize in gigabytes(GB)
    kb int

    specify lifesize in kilobytes(KB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    mb int

    specify lifesize in megabytes(MB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    tb int

    specify lifesize in terabytes(TB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    gb Number
    specify lifesize in gigabytes(GB)
    kb Number

    specify lifesize in kilobytes(KB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    mb Number

    specify lifesize in megabytes(MB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    tb Number

    specify lifesize in terabytes(TB)

    ℹ️ Note: You must specify exactly one of gb, kb, mb, and tb.

    GetIpsecCryptoProfileListDataLifetime

    Days int
    specify lifetime in days
    Hours int

    specify lifetime in hours

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    Minutes int

    specify lifetime in minutes

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    Seconds int

    specify lifetime in seconds

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    Days int
    specify lifetime in days
    Hours int

    specify lifetime in hours

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    Minutes int

    specify lifetime in minutes

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    Seconds int

    specify lifetime in seconds

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    days Integer
    specify lifetime in days
    hours Integer

    specify lifetime in hours

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    minutes Integer

    specify lifetime in minutes

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    seconds Integer

    specify lifetime in seconds

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    days number
    specify lifetime in days
    hours number

    specify lifetime in hours

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    minutes number

    specify lifetime in minutes

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    seconds number

    specify lifetime in seconds

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    days int
    specify lifetime in days
    hours int

    specify lifetime in hours

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    minutes int

    specify lifetime in minutes

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    seconds int

    specify lifetime in seconds

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    days Number
    specify lifetime in days
    hours Number

    specify lifetime in hours

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    minutes Number

    specify lifetime in minutes

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    seconds Number

    specify lifetime in seconds

    ℹ️ Note: You must specify exactly one of days, hours, minutes, and seconds.

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate