1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getIkeCryptoProfile
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    IkeCryptoProfile data source

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Example of looking up an individual IPsec Crypto Profile by its ID.
    const scmIkeCryptoProfileDs = scm.getIkeCryptoProfile({
        id: "f3a1251a-bb9e-437d-8048-f5d54617d0be",
    });
    export const ikeProfileById = scmIkeCryptoProfileDs;
    
    import pulumi
    import pulumi_scm as scm
    
    # Example of looking up an individual IPsec Crypto Profile by its ID.
    scm_ike_crypto_profile_ds = scm.get_ike_crypto_profile(id="f3a1251a-bb9e-437d-8048-f5d54617d0be")
    pulumi.export("ikeProfileById", scm_ike_crypto_profile_ds)
    
    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 looking up an individual IPsec Crypto Profile by its ID.
    		scmIkeCryptoProfileDs, err := scm.LookupIkeCryptoProfile(ctx, &scm.LookupIkeCryptoProfileArgs{
    			Id: "f3a1251a-bb9e-437d-8048-f5d54617d0be",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("ikeProfileById", scmIkeCryptoProfileDs)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Example of looking up an individual IPsec Crypto Profile by its ID.
        var scmIkeCryptoProfileDs = Scm.GetIkeCryptoProfile.Invoke(new()
        {
            Id = "f3a1251a-bb9e-437d-8048-f5d54617d0be",
        });
    
        return new Dictionary<string, object?>
        {
            ["ikeProfileById"] = scmIkeCryptoProfileDs,
        };
    });
    
    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.GetIkeCryptoProfileArgs;
    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 looking up an individual IPsec Crypto Profile by its ID.
            final var scmIkeCryptoProfileDs = ScmFunctions.getIkeCryptoProfile(GetIkeCryptoProfileArgs.builder()
                .id("f3a1251a-bb9e-437d-8048-f5d54617d0be")
                .build());
    
            ctx.export("ikeProfileById", scmIkeCryptoProfileDs);
        }
    }
    
    variables:
      # Example of looking up an individual IPsec Crypto Profile by its ID.
      scmIkeCryptoProfileDs:
        fn::invoke:
          function: scm:getIkeCryptoProfile
          arguments:
            id: f3a1251a-bb9e-437d-8048-f5d54617d0be
    outputs:
      # Outputs to display the results of the data source lookups.
      ikeProfileById: ${scmIkeCryptoProfileDs}
    

    Using getIkeCryptoProfile

    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 getIkeCryptoProfile(args: GetIkeCryptoProfileArgs, opts?: InvokeOptions): Promise<GetIkeCryptoProfileResult>
    function getIkeCryptoProfileOutput(args: GetIkeCryptoProfileOutputArgs, opts?: InvokeOptions): Output<GetIkeCryptoProfileResult>
    def get_ike_crypto_profile(id: Optional[str] = None,
                               name: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetIkeCryptoProfileResult
    def get_ike_crypto_profile_output(id: Optional[pulumi.Input[str]] = None,
                               name: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetIkeCryptoProfileResult]
    func LookupIkeCryptoProfile(ctx *Context, args *LookupIkeCryptoProfileArgs, opts ...InvokeOption) (*LookupIkeCryptoProfileResult, error)
    func LookupIkeCryptoProfileOutput(ctx *Context, args *LookupIkeCryptoProfileOutputArgs, opts ...InvokeOption) LookupIkeCryptoProfileResultOutput

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

    public static class GetIkeCryptoProfile 
    {
        public static Task<GetIkeCryptoProfileResult> InvokeAsync(GetIkeCryptoProfileArgs args, InvokeOptions? opts = null)
        public static Output<GetIkeCryptoProfileResult> Invoke(GetIkeCryptoProfileInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIkeCryptoProfileResult> getIkeCryptoProfile(GetIkeCryptoProfileArgs args, InvokeOptions options)
    public static Output<GetIkeCryptoProfileResult> getIkeCryptoProfile(GetIkeCryptoProfileArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getIkeCryptoProfile:getIkeCryptoProfile
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    UUID of the resource
    Name string
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    Id string
    UUID of the resource
    Name string
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    id String
    UUID of the resource
    name String
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    id string
    UUID of the resource
    name string
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    id str
    UUID of the resource
    name str
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    id String
    UUID of the resource
    name String
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]

    getIkeCryptoProfile Result

    The following output properties are available:

    AuthenticationMultiple int
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled
    Device string
    The device in which the resource is defined
    DhGroups List<string>
    Dh group
    Encryptions List<string>
    Encryption algorithm
    Folder string
    The folder in which the resource is defined
    Hashes List<string>
    Hash
    Id string
    UUID of the resource
    Lifetime GetIkeCryptoProfileLifetime
    Ike crypto profile lifetime
    Name string
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    AuthenticationMultiple int
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled
    Device string
    The device in which the resource is defined
    DhGroups []string
    Dh group
    Encryptions []string
    Encryption algorithm
    Folder string
    The folder in which the resource is defined
    Hashes []string
    Hash
    Id string
    UUID of the resource
    Lifetime GetIkeCryptoProfileLifetime
    Ike crypto profile lifetime
    Name string
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    authenticationMultiple Integer
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled
    device String
    The device in which the resource is defined
    dhGroups List<String>
    Dh group
    encryptions List<String>
    Encryption algorithm
    folder String
    The folder in which the resource is defined
    hashes List<String>
    Hash
    id String
    UUID of the resource
    lifetime GetIkeCryptoProfileLifetime
    Ike crypto profile lifetime
    name String
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    snippet String
    The snippet in which the resource is defined
    tfid String
    authenticationMultiple number
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled
    device string
    The device in which the resource is defined
    dhGroups string[]
    Dh group
    encryptions string[]
    Encryption algorithm
    folder string
    The folder in which the resource is defined
    hashes string[]
    Hash
    id string
    UUID of the resource
    lifetime GetIkeCryptoProfileLifetime
    Ike crypto profile lifetime
    name string
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    snippet string
    The snippet in which the resource is defined
    tfid string
    authentication_multiple int
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled
    device str
    The device in which the resource is defined
    dh_groups Sequence[str]
    Dh group
    encryptions Sequence[str]
    Encryption algorithm
    folder str
    The folder in which the resource is defined
    hashes Sequence[str]
    Hash
    id str
    UUID of the resource
    lifetime GetIkeCryptoProfileLifetime
    Ike crypto profile lifetime
    name str
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    snippet str
    The snippet in which the resource is defined
    tfid str
    authenticationMultiple Number
    IKEv2 SA reauthentication interval equals authetication-multiple * rekey-lifetime; 0 means reauthentication disabled
    device String
    The device in which the resource is defined
    dhGroups List<String>
    Dh group
    encryptions List<String>
    Encryption algorithm
    folder String
    The folder in which the resource is defined
    hashes List<String>
    Hash
    id String
    UUID of the resource
    lifetime Property Map
    Ike crypto profile lifetime
    name String
    Alphanumeric string begin with letter: [0-9a-zA-Z._-]
    snippet String
    The snippet in which the resource is defined
    tfid String

    Supporting Types

    GetIkeCryptoProfileLifetime

    Days int
    specify lifetime in days
    Hours int
    specify lifetime in hours
    Minutes int
    specify lifetime in minutes
    Seconds int
    specify lifetime in seconds
    Days int
    specify lifetime in days
    Hours int
    specify lifetime in hours
    Minutes int
    specify lifetime in minutes
    Seconds int
    specify lifetime in seconds
    days Integer
    specify lifetime in days
    hours Integer
    specify lifetime in hours
    minutes Integer
    specify lifetime in minutes
    seconds Integer
    specify lifetime in seconds
    days number
    specify lifetime in days
    hours number
    specify lifetime in hours
    minutes number
    specify lifetime in minutes
    seconds number
    specify lifetime in seconds
    days int
    specify lifetime in days
    hours int
    specify lifetime in hours
    minutes int
    specify lifetime in minutes
    seconds int
    specify lifetime in seconds
    days Number
    specify lifetime in days
    hours Number
    specify lifetime in hours
    minutes Number
    specify lifetime in minutes
    seconds Number
    specify lifetime in 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 v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate