1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. AuthenticationSequence
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

    AuthenticationSequence resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const testSequence = new scm.AuthenticationSequence("test_sequence", {
        name: "test_auth_sequence_1",
        folder: "All",
        authenticationProfiles: ["test_auth_profile"],
        useDomainFindProfile: false,
    });
    const testSequence2 = new scm.AuthenticationSequence("test_sequence_2", {
        name: "test_auth_sequence_2",
        folder: "All",
        authenticationProfiles: [
            "Test_UI",
            "test_auth_profile",
        ],
        useDomainFindProfile: false,
    });
    
    import pulumi
    import pulumi_scm as scm
    
    test_sequence = scm.AuthenticationSequence("test_sequence",
        name="test_auth_sequence_1",
        folder="All",
        authentication_profiles=["test_auth_profile"],
        use_domain_find_profile=False)
    test_sequence2 = scm.AuthenticationSequence("test_sequence_2",
        name="test_auth_sequence_2",
        folder="All",
        authentication_profiles=[
            "Test_UI",
            "test_auth_profile",
        ],
        use_domain_find_profile=False)
    
    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 {
    		_, err := scm.NewAuthenticationSequence(ctx, "test_sequence", &scm.AuthenticationSequenceArgs{
    			Name:   pulumi.String("test_auth_sequence_1"),
    			Folder: pulumi.String("All"),
    			AuthenticationProfiles: pulumi.StringArray{
    				pulumi.String("test_auth_profile"),
    			},
    			UseDomainFindProfile: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = scm.NewAuthenticationSequence(ctx, "test_sequence_2", &scm.AuthenticationSequenceArgs{
    			Name:   pulumi.String("test_auth_sequence_2"),
    			Folder: pulumi.String("All"),
    			AuthenticationProfiles: pulumi.StringArray{
    				pulumi.String("Test_UI"),
    				pulumi.String("test_auth_profile"),
    			},
    			UseDomainFindProfile: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var testSequence = new Scm.AuthenticationSequence("test_sequence", new()
        {
            Name = "test_auth_sequence_1",
            Folder = "All",
            AuthenticationProfiles = new[]
            {
                "test_auth_profile",
            },
            UseDomainFindProfile = false,
        });
    
        var testSequence2 = new Scm.AuthenticationSequence("test_sequence_2", new()
        {
            Name = "test_auth_sequence_2",
            Folder = "All",
            AuthenticationProfiles = new[]
            {
                "Test_UI",
                "test_auth_profile",
            },
            UseDomainFindProfile = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.AuthenticationSequence;
    import com.pulumi.scm.AuthenticationSequenceArgs;
    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) {
            var testSequence = new AuthenticationSequence("testSequence", AuthenticationSequenceArgs.builder()
                .name("test_auth_sequence_1")
                .folder("All")
                .authenticationProfiles("test_auth_profile")
                .useDomainFindProfile(false)
                .build());
    
            var testSequence2 = new AuthenticationSequence("testSequence2", AuthenticationSequenceArgs.builder()
                .name("test_auth_sequence_2")
                .folder("All")
                .authenticationProfiles(            
                    "Test_UI",
                    "test_auth_profile")
                .useDomainFindProfile(false)
                .build());
    
        }
    }
    
    resources:
      testSequence:
        type: scm:AuthenticationSequence
        name: test_sequence
        properties:
          name: test_auth_sequence_1
          folder: All
          authenticationProfiles: # authentication_profiles added should exist
            - test_auth_profile
          useDomainFindProfile: false
      testSequence2:
        type: scm:AuthenticationSequence
        name: test_sequence_2
        properties:
          name: test_auth_sequence_2
          folder: All
          authenticationProfiles: # authentication_profiles added should exist
            - Test_UI
            - test_auth_profile
          useDomainFindProfile: false
    

    Create AuthenticationSequence Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AuthenticationSequence(name: string, args?: AuthenticationSequenceArgs, opts?: CustomResourceOptions);
    @overload
    def AuthenticationSequence(resource_name: str,
                               args: Optional[AuthenticationSequenceArgs] = None,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def AuthenticationSequence(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               authentication_profiles: Optional[Sequence[str]] = None,
                               device: Optional[str] = None,
                               folder: Optional[str] = None,
                               name: Optional[str] = None,
                               snippet: Optional[str] = None,
                               use_domain_find_profile: Optional[bool] = None)
    func NewAuthenticationSequence(ctx *Context, name string, args *AuthenticationSequenceArgs, opts ...ResourceOption) (*AuthenticationSequence, error)
    public AuthenticationSequence(string name, AuthenticationSequenceArgs? args = null, CustomResourceOptions? opts = null)
    public AuthenticationSequence(String name, AuthenticationSequenceArgs args)
    public AuthenticationSequence(String name, AuthenticationSequenceArgs args, CustomResourceOptions options)
    
    type: scm:AuthenticationSequence
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AuthenticationSequenceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AuthenticationSequenceArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AuthenticationSequenceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AuthenticationSequenceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AuthenticationSequenceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var authenticationSequenceResource = new Scm.AuthenticationSequence("authenticationSequenceResource", new()
    {
        AuthenticationProfiles = new[]
        {
            "string",
        },
        Device = "string",
        Folder = "string",
        Name = "string",
        Snippet = "string",
        UseDomainFindProfile = false,
    });
    
    example, err := scm.NewAuthenticationSequence(ctx, "authenticationSequenceResource", &scm.AuthenticationSequenceArgs{
    	AuthenticationProfiles: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Device:               pulumi.String("string"),
    	Folder:               pulumi.String("string"),
    	Name:                 pulumi.String("string"),
    	Snippet:              pulumi.String("string"),
    	UseDomainFindProfile: pulumi.Bool(false),
    })
    
    var authenticationSequenceResource = new AuthenticationSequence("authenticationSequenceResource", AuthenticationSequenceArgs.builder()
        .authenticationProfiles("string")
        .device("string")
        .folder("string")
        .name("string")
        .snippet("string")
        .useDomainFindProfile(false)
        .build());
    
    authentication_sequence_resource = scm.AuthenticationSequence("authenticationSequenceResource",
        authentication_profiles=["string"],
        device="string",
        folder="string",
        name="string",
        snippet="string",
        use_domain_find_profile=False)
    
    const authenticationSequenceResource = new scm.AuthenticationSequence("authenticationSequenceResource", {
        authenticationProfiles: ["string"],
        device: "string",
        folder: "string",
        name: "string",
        snippet: "string",
        useDomainFindProfile: false,
    });
    
    type: scm:AuthenticationSequence
    properties:
        authenticationProfiles:
            - string
        device: string
        folder: string
        name: string
        snippet: string
        useDomainFindProfile: false
    

    AuthenticationSequence Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The AuthenticationSequence resource accepts the following input properties:

    AuthenticationProfiles List<string>
    An ordered list of authentication profiles
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    The name of the authentication sequence
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    UseDomainFindProfile bool
    Use domain to determine authentication profile?
    AuthenticationProfiles []string
    An ordered list of authentication profiles
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    The name of the authentication sequence
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    UseDomainFindProfile bool
    Use domain to determine authentication profile?
    authenticationProfiles List<String>
    An ordered list of authentication profiles
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    The name of the authentication sequence
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    useDomainFindProfile Boolean
    Use domain to determine authentication profile?
    authenticationProfiles string[]
    An ordered list of authentication profiles
    device string
    The device in which the resource is defined
    folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name string
    The name of the authentication sequence
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    useDomainFindProfile boolean
    Use domain to determine authentication profile?
    authentication_profiles Sequence[str]
    An ordered list of authentication profiles
    device str
    The device in which the resource is defined
    folder str

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name str
    The name of the authentication sequence
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    use_domain_find_profile bool
    Use domain to determine authentication profile?
    authenticationProfiles List<String>
    An ordered list of authentication profiles
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    The name of the authentication sequence
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    useDomainFindProfile Boolean
    Use domain to determine authentication profile?

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AuthenticationSequence resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    Look up Existing AuthenticationSequence Resource

    Get an existing AuthenticationSequence resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AuthenticationSequenceState, opts?: CustomResourceOptions): AuthenticationSequence
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            authentication_profiles: Optional[Sequence[str]] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            name: Optional[str] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None,
            use_domain_find_profile: Optional[bool] = None) -> AuthenticationSequence
    func GetAuthenticationSequence(ctx *Context, name string, id IDInput, state *AuthenticationSequenceState, opts ...ResourceOption) (*AuthenticationSequence, error)
    public static AuthenticationSequence Get(string name, Input<string> id, AuthenticationSequenceState? state, CustomResourceOptions? opts = null)
    public static AuthenticationSequence get(String name, Output<String> id, AuthenticationSequenceState state, CustomResourceOptions options)
    resources:  _:    type: scm:AuthenticationSequence    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AuthenticationProfiles List<string>
    An ordered list of authentication profiles
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    The name of the authentication sequence
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    UseDomainFindProfile bool
    Use domain to determine authentication profile?
    AuthenticationProfiles []string
    An ordered list of authentication profiles
    Device string
    The device in which the resource is defined
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    The name of the authentication sequence
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    UseDomainFindProfile bool
    Use domain to determine authentication profile?
    authenticationProfiles List<String>
    An ordered list of authentication profiles
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    The name of the authentication sequence
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    useDomainFindProfile Boolean
    Use domain to determine authentication profile?
    authenticationProfiles string[]
    An ordered list of authentication profiles
    device string
    The device in which the resource is defined
    folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name string
    The name of the authentication sequence
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid string
    useDomainFindProfile boolean
    Use domain to determine authentication profile?
    authentication_profiles Sequence[str]
    An ordered list of authentication profiles
    device str
    The device in which the resource is defined
    folder str

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name str
    The name of the authentication sequence
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid str
    use_domain_find_profile bool
    Use domain to determine authentication profile?
    authenticationProfiles List<String>
    An ordered list of authentication profiles
    device String
    The device in which the resource is defined
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    The name of the authentication sequence
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    useDomainFindProfile Boolean
    Use domain to determine authentication profile?

    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