1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. TlsServiceProfile
Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi
scm logo
Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi

    TlsServiceProfile resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const tlsServiceProf1Upper = new scm.TlsServiceProfile("tls_service_prof_1_upper", {
        folder: "All",
        name: "TLS_Service_Profile_1",
        certificate: "Authentication Cookie CA",
        protocolSettings: {
            keyxchgAlgoRsa: true,
        },
    });
    const tlsServiceProf2Upper = new scm.TlsServiceProfile("tls_service_prof_2_upper", {
        folder: "All",
        name: "TLS_Service_Profile_2",
        certificate: "Forward-Trust-CA",
        protocolSettings: {
            minVersion: "tls1-0",
            maxVersion: "tls1-1",
            encAlgoAes128Cbc: true,
            encAlgoAes256Cbc: true,
        },
    });
    const tlsServiceProf3Upper = new scm.TlsServiceProfile("tls_service_prof_3_upper", {
        folder: "All",
        name: "TLS_Service_Profile_3",
        certificate: "Root CA",
        protocolSettings: {
            minVersion: "tls1-1",
            maxVersion: "tls1-3",
            keyxchgAlgoRsa: true,
            keyxchgAlgoDhe: true,
            keyxchgAlgoEcdhe: true,
            encAlgoAes128Cbc: true,
            encAlgoAes128Gcm: true,
            encAlgoAes256Cbc: true,
            encAlgoAes256Gcm: true,
            authAlgoSha1: true,
            authAlgoSha256: true,
            authAlgoSha384: true,
        },
    });
    
    import pulumi
    import pulumi_scm as scm
    
    tls_service_prof1_upper = scm.TlsServiceProfile("tls_service_prof_1_upper",
        folder="All",
        name="TLS_Service_Profile_1",
        certificate="Authentication Cookie CA",
        protocol_settings={
            "keyxchg_algo_rsa": True,
        })
    tls_service_prof2_upper = scm.TlsServiceProfile("tls_service_prof_2_upper",
        folder="All",
        name="TLS_Service_Profile_2",
        certificate="Forward-Trust-CA",
        protocol_settings={
            "min_version": "tls1-0",
            "max_version": "tls1-1",
            "enc_algo_aes128_cbc": True,
            "enc_algo_aes256_cbc": True,
        })
    tls_service_prof3_upper = scm.TlsServiceProfile("tls_service_prof_3_upper",
        folder="All",
        name="TLS_Service_Profile_3",
        certificate="Root CA",
        protocol_settings={
            "min_version": "tls1-1",
            "max_version": "tls1-3",
            "keyxchg_algo_rsa": True,
            "keyxchg_algo_dhe": True,
            "keyxchg_algo_ecdhe": True,
            "enc_algo_aes128_cbc": True,
            "enc_algo_aes128_gcm": True,
            "enc_algo_aes256_cbc": True,
            "enc_algo_aes256_gcm": True,
            "auth_algo_sha1": True,
            "auth_algo_sha256": True,
            "auth_algo_sha384": True,
        })
    
    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.NewTlsServiceProfile(ctx, "tls_service_prof_1_upper", &scm.TlsServiceProfileArgs{
    			Folder:      pulumi.String("All"),
    			Name:        pulumi.String("TLS_Service_Profile_1"),
    			Certificate: pulumi.String("Authentication Cookie CA"),
    			ProtocolSettings: &scm.TlsServiceProfileProtocolSettingsArgs{
    				KeyxchgAlgoRsa: pulumi.Bool(true),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = scm.NewTlsServiceProfile(ctx, "tls_service_prof_2_upper", &scm.TlsServiceProfileArgs{
    			Folder:      pulumi.String("All"),
    			Name:        pulumi.String("TLS_Service_Profile_2"),
    			Certificate: pulumi.String("Forward-Trust-CA"),
    			ProtocolSettings: &scm.TlsServiceProfileProtocolSettingsArgs{
    				MinVersion:       pulumi.String("tls1-0"),
    				MaxVersion:       pulumi.String("tls1-1"),
    				EncAlgoAes128Cbc: pulumi.Bool(true),
    				EncAlgoAes256Cbc: pulumi.Bool(true),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = scm.NewTlsServiceProfile(ctx, "tls_service_prof_3_upper", &scm.TlsServiceProfileArgs{
    			Folder:      pulumi.String("All"),
    			Name:        pulumi.String("TLS_Service_Profile_3"),
    			Certificate: pulumi.String("Root CA"),
    			ProtocolSettings: &scm.TlsServiceProfileProtocolSettingsArgs{
    				MinVersion:       pulumi.String("tls1-1"),
    				MaxVersion:       pulumi.String("tls1-3"),
    				KeyxchgAlgoRsa:   pulumi.Bool(true),
    				KeyxchgAlgoDhe:   pulumi.Bool(true),
    				KeyxchgAlgoEcdhe: pulumi.Bool(true),
    				EncAlgoAes128Cbc: pulumi.Bool(true),
    				EncAlgoAes128Gcm: pulumi.Bool(true),
    				EncAlgoAes256Cbc: pulumi.Bool(true),
    				EncAlgoAes256Gcm: pulumi.Bool(true),
    				AuthAlgoSha1:     pulumi.Bool(true),
    				AuthAlgoSha256:   pulumi.Bool(true),
    				AuthAlgoSha384:   pulumi.Bool(true),
    			},
    		})
    		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 tlsServiceProf1Upper = new Scm.TlsServiceProfile("tls_service_prof_1_upper", new()
        {
            Folder = "All",
            Name = "TLS_Service_Profile_1",
            Certificate = "Authentication Cookie CA",
            ProtocolSettings = new Scm.Inputs.TlsServiceProfileProtocolSettingsArgs
            {
                KeyxchgAlgoRsa = true,
            },
        });
    
        var tlsServiceProf2Upper = new Scm.TlsServiceProfile("tls_service_prof_2_upper", new()
        {
            Folder = "All",
            Name = "TLS_Service_Profile_2",
            Certificate = "Forward-Trust-CA",
            ProtocolSettings = new Scm.Inputs.TlsServiceProfileProtocolSettingsArgs
            {
                MinVersion = "tls1-0",
                MaxVersion = "tls1-1",
                EncAlgoAes128Cbc = true,
                EncAlgoAes256Cbc = true,
            },
        });
    
        var tlsServiceProf3Upper = new Scm.TlsServiceProfile("tls_service_prof_3_upper", new()
        {
            Folder = "All",
            Name = "TLS_Service_Profile_3",
            Certificate = "Root CA",
            ProtocolSettings = new Scm.Inputs.TlsServiceProfileProtocolSettingsArgs
            {
                MinVersion = "tls1-1",
                MaxVersion = "tls1-3",
                KeyxchgAlgoRsa = true,
                KeyxchgAlgoDhe = true,
                KeyxchgAlgoEcdhe = true,
                EncAlgoAes128Cbc = true,
                EncAlgoAes128Gcm = true,
                EncAlgoAes256Cbc = true,
                EncAlgoAes256Gcm = true,
                AuthAlgoSha1 = true,
                AuthAlgoSha256 = true,
                AuthAlgoSha384 = true,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.TlsServiceProfile;
    import com.pulumi.scm.TlsServiceProfileArgs;
    import com.pulumi.scm.inputs.TlsServiceProfileProtocolSettingsArgs;
    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 tlsServiceProf1Upper = new TlsServiceProfile("tlsServiceProf1Upper", TlsServiceProfileArgs.builder()
                .folder("All")
                .name("TLS_Service_Profile_1")
                .certificate("Authentication Cookie CA")
                .protocolSettings(TlsServiceProfileProtocolSettingsArgs.builder()
                    .keyxchgAlgoRsa(true)
                    .build())
                .build());
    
            var tlsServiceProf2Upper = new TlsServiceProfile("tlsServiceProf2Upper", TlsServiceProfileArgs.builder()
                .folder("All")
                .name("TLS_Service_Profile_2")
                .certificate("Forward-Trust-CA")
                .protocolSettings(TlsServiceProfileProtocolSettingsArgs.builder()
                    .minVersion("tls1-0")
                    .maxVersion("tls1-1")
                    .encAlgoAes128Cbc(true)
                    .encAlgoAes256Cbc(true)
                    .build())
                .build());
    
            var tlsServiceProf3Upper = new TlsServiceProfile("tlsServiceProf3Upper", TlsServiceProfileArgs.builder()
                .folder("All")
                .name("TLS_Service_Profile_3")
                .certificate("Root CA")
                .protocolSettings(TlsServiceProfileProtocolSettingsArgs.builder()
                    .minVersion("tls1-1")
                    .maxVersion("tls1-3")
                    .keyxchgAlgoRsa(true)
                    .keyxchgAlgoDhe(true)
                    .keyxchgAlgoEcdhe(true)
                    .encAlgoAes128Cbc(true)
                    .encAlgoAes128Gcm(true)
                    .encAlgoAes256Cbc(true)
                    .encAlgoAes256Gcm(true)
                    .authAlgoSha1(true)
                    .authAlgoSha256(true)
                    .authAlgoSha384(true)
                    .build())
                .build());
    
        }
    }
    
    resources:
      tlsServiceProf1Upper:
        type: scm:TlsServiceProfile
        name: tls_service_prof_1_upper
        properties:
          folder: All
          name: TLS_Service_Profile_1
          certificate: Authentication Cookie CA
          protocolSettings:
            keyxchgAlgoRsa: true
      tlsServiceProf2Upper:
        type: scm:TlsServiceProfile
        name: tls_service_prof_2_upper
        properties:
          folder: All
          name: TLS_Service_Profile_2
          certificate: Forward-Trust-CA
          protocolSettings:
            minVersion: tls1-0
            maxVersion: tls1-1
            encAlgoAes128Cbc: true
            encAlgoAes256Cbc: true
      tlsServiceProf3Upper:
        type: scm:TlsServiceProfile
        name: tls_service_prof_3_upper
        properties:
          folder: All
          name: TLS_Service_Profile_3
          certificate: Root CA
          protocolSettings:
            minVersion: tls1-1
            maxVersion: tls1-3
            keyxchgAlgoRsa: true
            keyxchgAlgoDhe: true
            keyxchgAlgoEcdhe: true
            encAlgoAes128Cbc: true
            encAlgoAes128Gcm: true
            encAlgoAes256Cbc: true
            encAlgoAes256Gcm: true
            authAlgoSha1: true
            authAlgoSha256: true
            authAlgoSha384: true
    

    Create TlsServiceProfile Resource

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

    Constructor syntax

    new TlsServiceProfile(name: string, args: TlsServiceProfileArgs, opts?: CustomResourceOptions);
    @overload
    def TlsServiceProfile(resource_name: str,
                          args: TlsServiceProfileArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def TlsServiceProfile(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          certificate: Optional[str] = None,
                          protocol_settings: Optional[TlsServiceProfileProtocolSettingsArgs] = None,
                          device: Optional[str] = None,
                          folder: Optional[str] = None,
                          name: Optional[str] = None,
                          snippet: Optional[str] = None)
    func NewTlsServiceProfile(ctx *Context, name string, args TlsServiceProfileArgs, opts ...ResourceOption) (*TlsServiceProfile, error)
    public TlsServiceProfile(string name, TlsServiceProfileArgs args, CustomResourceOptions? opts = null)
    public TlsServiceProfile(String name, TlsServiceProfileArgs args)
    public TlsServiceProfile(String name, TlsServiceProfileArgs args, CustomResourceOptions options)
    
    type: scm:TlsServiceProfile
    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 TlsServiceProfileArgs
    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 TlsServiceProfileArgs
    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 TlsServiceProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TlsServiceProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TlsServiceProfileArgs
    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 tlsServiceProfileResource = new Scm.TlsServiceProfile("tlsServiceProfileResource", new()
    {
        Certificate = "string",
        ProtocolSettings = new Scm.Inputs.TlsServiceProfileProtocolSettingsArgs
        {
            AuthAlgoSha1 = false,
            AuthAlgoSha256 = false,
            AuthAlgoSha384 = false,
            EncAlgoAes128Cbc = false,
            EncAlgoAes128Gcm = false,
            EncAlgoAes256Cbc = false,
            EncAlgoAes256Gcm = false,
            KeyxchgAlgoDhe = false,
            KeyxchgAlgoEcdhe = false,
            KeyxchgAlgoRsa = false,
            MaxVersion = "string",
            MinVersion = "string",
        },
        Device = "string",
        Folder = "string",
        Name = "string",
        Snippet = "string",
    });
    
    example, err := scm.NewTlsServiceProfile(ctx, "tlsServiceProfileResource", &scm.TlsServiceProfileArgs{
    	Certificate: pulumi.String("string"),
    	ProtocolSettings: &scm.TlsServiceProfileProtocolSettingsArgs{
    		AuthAlgoSha1:     pulumi.Bool(false),
    		AuthAlgoSha256:   pulumi.Bool(false),
    		AuthAlgoSha384:   pulumi.Bool(false),
    		EncAlgoAes128Cbc: pulumi.Bool(false),
    		EncAlgoAes128Gcm: pulumi.Bool(false),
    		EncAlgoAes256Cbc: pulumi.Bool(false),
    		EncAlgoAes256Gcm: pulumi.Bool(false),
    		KeyxchgAlgoDhe:   pulumi.Bool(false),
    		KeyxchgAlgoEcdhe: pulumi.Bool(false),
    		KeyxchgAlgoRsa:   pulumi.Bool(false),
    		MaxVersion:       pulumi.String("string"),
    		MinVersion:       pulumi.String("string"),
    	},
    	Device:  pulumi.String("string"),
    	Folder:  pulumi.String("string"),
    	Name:    pulumi.String("string"),
    	Snippet: pulumi.String("string"),
    })
    
    var tlsServiceProfileResource = new TlsServiceProfile("tlsServiceProfileResource", TlsServiceProfileArgs.builder()
        .certificate("string")
        .protocolSettings(TlsServiceProfileProtocolSettingsArgs.builder()
            .authAlgoSha1(false)
            .authAlgoSha256(false)
            .authAlgoSha384(false)
            .encAlgoAes128Cbc(false)
            .encAlgoAes128Gcm(false)
            .encAlgoAes256Cbc(false)
            .encAlgoAes256Gcm(false)
            .keyxchgAlgoDhe(false)
            .keyxchgAlgoEcdhe(false)
            .keyxchgAlgoRsa(false)
            .maxVersion("string")
            .minVersion("string")
            .build())
        .device("string")
        .folder("string")
        .name("string")
        .snippet("string")
        .build());
    
    tls_service_profile_resource = scm.TlsServiceProfile("tlsServiceProfileResource",
        certificate="string",
        protocol_settings={
            "auth_algo_sha1": False,
            "auth_algo_sha256": False,
            "auth_algo_sha384": False,
            "enc_algo_aes128_cbc": False,
            "enc_algo_aes128_gcm": False,
            "enc_algo_aes256_cbc": False,
            "enc_algo_aes256_gcm": False,
            "keyxchg_algo_dhe": False,
            "keyxchg_algo_ecdhe": False,
            "keyxchg_algo_rsa": False,
            "max_version": "string",
            "min_version": "string",
        },
        device="string",
        folder="string",
        name="string",
        snippet="string")
    
    const tlsServiceProfileResource = new scm.TlsServiceProfile("tlsServiceProfileResource", {
        certificate: "string",
        protocolSettings: {
            authAlgoSha1: false,
            authAlgoSha256: false,
            authAlgoSha384: false,
            encAlgoAes128Cbc: false,
            encAlgoAes128Gcm: false,
            encAlgoAes256Cbc: false,
            encAlgoAes256Gcm: false,
            keyxchgAlgoDhe: false,
            keyxchgAlgoEcdhe: false,
            keyxchgAlgoRsa: false,
            maxVersion: "string",
            minVersion: "string",
        },
        device: "string",
        folder: "string",
        name: "string",
        snippet: "string",
    });
    
    type: scm:TlsServiceProfile
    properties:
        certificate: string
        device: string
        folder: string
        name: string
        protocolSettings:
            authAlgoSha1: false
            authAlgoSha256: false
            authAlgoSha384: false
            encAlgoAes128Cbc: false
            encAlgoAes128Gcm: false
            encAlgoAes256Cbc: false
            encAlgoAes256Gcm: false
            keyxchgAlgoDhe: false
            keyxchgAlgoEcdhe: false
            keyxchgAlgoRsa: false
            maxVersion: string
            minVersion: string
        snippet: string
    

    TlsServiceProfile 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 TlsServiceProfile resource accepts the following input properties:

    Certificate string
    Certificate name
    ProtocolSettings TlsServiceProfileProtocolSettings
    Protocol settings
    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
    TLS service profile name. The value is muCustomDomainSSLProfile when it is used on mobile-agent infra settings.
    Snippet string

    The snippet in which the resource is defined

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

    Certificate string
    Certificate name
    ProtocolSettings TlsServiceProfileProtocolSettingsArgs
    Protocol settings
    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
    TLS service profile name. The value is muCustomDomainSSLProfile when it is used on mobile-agent infra settings.
    Snippet string

    The snippet in which the resource is defined

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

    certificate String
    Certificate name
    protocolSettings TlsServiceProfileProtocolSettings
    Protocol settings
    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
    TLS service profile name. The value is muCustomDomainSSLProfile when it is used on mobile-agent infra settings.
    snippet String

    The snippet in which the resource is defined

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

    certificate string
    Certificate name
    protocolSettings TlsServiceProfileProtocolSettings
    Protocol settings
    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
    TLS service profile name. The value is muCustomDomainSSLProfile when it is used on mobile-agent infra settings.
    snippet string

    The snippet in which the resource is defined

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

    certificate str
    Certificate name
    protocol_settings TlsServiceProfileProtocolSettingsArgs
    Protocol settings
    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
    TLS service profile name. The value is muCustomDomainSSLProfile when it is used on mobile-agent infra settings.
    snippet str

    The snippet in which the resource is defined

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

    certificate String
    Certificate name
    protocolSettings Property Map
    Protocol settings
    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
    TLS service profile name. The value is muCustomDomainSSLProfile when it is used on mobile-agent infra settings.
    snippet String

    The snippet in which the resource is defined

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

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TlsServiceProfile 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 TlsServiceProfile Resource

    Get an existing TlsServiceProfile 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?: TlsServiceProfileState, opts?: CustomResourceOptions): TlsServiceProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            certificate: Optional[str] = None,
            device: Optional[str] = None,
            folder: Optional[str] = None,
            name: Optional[str] = None,
            protocol_settings: Optional[TlsServiceProfileProtocolSettingsArgs] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> TlsServiceProfile
    func GetTlsServiceProfile(ctx *Context, name string, id IDInput, state *TlsServiceProfileState, opts ...ResourceOption) (*TlsServiceProfile, error)
    public static TlsServiceProfile Get(string name, Input<string> id, TlsServiceProfileState? state, CustomResourceOptions? opts = null)
    public static TlsServiceProfile get(String name, Output<String> id, TlsServiceProfileState state, CustomResourceOptions options)
    resources:  _:    type: scm:TlsServiceProfile    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:
    Certificate string
    Certificate name
    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
    TLS service profile name. The value is muCustomDomainSSLProfile when it is used on mobile-agent infra settings.
    ProtocolSettings TlsServiceProfileProtocolSettings
    Protocol settings
    Snippet string

    The snippet in which the resource is defined

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

    Tfid string
    Certificate string
    Certificate name
    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
    TLS service profile name. The value is muCustomDomainSSLProfile when it is used on mobile-agent infra settings.
    ProtocolSettings TlsServiceProfileProtocolSettingsArgs
    Protocol settings
    Snippet string

    The snippet in which the resource is defined

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

    Tfid string
    certificate String
    Certificate name
    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
    TLS service profile name. The value is muCustomDomainSSLProfile when it is used on mobile-agent infra settings.
    protocolSettings TlsServiceProfileProtocolSettings
    Protocol settings
    snippet String

    The snippet in which the resource is defined

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

    tfid String
    certificate string
    Certificate name
    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
    TLS service profile name. The value is muCustomDomainSSLProfile when it is used on mobile-agent infra settings.
    protocolSettings TlsServiceProfileProtocolSettings
    Protocol settings
    snippet string

    The snippet in which the resource is defined

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

    tfid string
    certificate str
    Certificate name
    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
    TLS service profile name. The value is muCustomDomainSSLProfile when it is used on mobile-agent infra settings.
    protocol_settings TlsServiceProfileProtocolSettingsArgs
    Protocol settings
    snippet str

    The snippet in which the resource is defined

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

    tfid str
    certificate String
    Certificate name
    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
    TLS service profile name. The value is muCustomDomainSSLProfile when it is used on mobile-agent infra settings.
    protocolSettings Property Map
    Protocol settings
    snippet String

    The snippet in which the resource is defined

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

    tfid String

    Supporting Types

    TlsServiceProfileProtocolSettings, TlsServiceProfileProtocolSettingsArgs

    AuthAlgoSha1 bool
    Allow SHA1 authentication?
    AuthAlgoSha256 bool
    Allow SHA256 authentication?
    AuthAlgoSha384 bool
    Allow SHA384 authentication?
    EncAlgoAes128Cbc bool
    Allow AES-128-CBC algorithm?
    EncAlgoAes128Gcm bool
    Allow AES-128-GCM algorithm?
    EncAlgoAes256Cbc bool
    Allow AES-256-CBC algorithm?
    EncAlgoAes256Gcm bool
    Allow algorithm AES-256-GCM
    KeyxchgAlgoDhe bool
    Allow DHE algorithm?
    KeyxchgAlgoEcdhe bool
    Allow ECDHE algorithm?
    KeyxchgAlgoRsa bool
    Allow RSA algorithm?
    MaxVersion string
    Maximum TLS version
    MinVersion string
    Minimum TLS version
    AuthAlgoSha1 bool
    Allow SHA1 authentication?
    AuthAlgoSha256 bool
    Allow SHA256 authentication?
    AuthAlgoSha384 bool
    Allow SHA384 authentication?
    EncAlgoAes128Cbc bool
    Allow AES-128-CBC algorithm?
    EncAlgoAes128Gcm bool
    Allow AES-128-GCM algorithm?
    EncAlgoAes256Cbc bool
    Allow AES-256-CBC algorithm?
    EncAlgoAes256Gcm bool
    Allow algorithm AES-256-GCM
    KeyxchgAlgoDhe bool
    Allow DHE algorithm?
    KeyxchgAlgoEcdhe bool
    Allow ECDHE algorithm?
    KeyxchgAlgoRsa bool
    Allow RSA algorithm?
    MaxVersion string
    Maximum TLS version
    MinVersion string
    Minimum TLS version
    authAlgoSha1 Boolean
    Allow SHA1 authentication?
    authAlgoSha256 Boolean
    Allow SHA256 authentication?
    authAlgoSha384 Boolean
    Allow SHA384 authentication?
    encAlgoAes128Cbc Boolean
    Allow AES-128-CBC algorithm?
    encAlgoAes128Gcm Boolean
    Allow AES-128-GCM algorithm?
    encAlgoAes256Cbc Boolean
    Allow AES-256-CBC algorithm?
    encAlgoAes256Gcm Boolean
    Allow algorithm AES-256-GCM
    keyxchgAlgoDhe Boolean
    Allow DHE algorithm?
    keyxchgAlgoEcdhe Boolean
    Allow ECDHE algorithm?
    keyxchgAlgoRsa Boolean
    Allow RSA algorithm?
    maxVersion String
    Maximum TLS version
    minVersion String
    Minimum TLS version
    authAlgoSha1 boolean
    Allow SHA1 authentication?
    authAlgoSha256 boolean
    Allow SHA256 authentication?
    authAlgoSha384 boolean
    Allow SHA384 authentication?
    encAlgoAes128Cbc boolean
    Allow AES-128-CBC algorithm?
    encAlgoAes128Gcm boolean
    Allow AES-128-GCM algorithm?
    encAlgoAes256Cbc boolean
    Allow AES-256-CBC algorithm?
    encAlgoAes256Gcm boolean
    Allow algorithm AES-256-GCM
    keyxchgAlgoDhe boolean
    Allow DHE algorithm?
    keyxchgAlgoEcdhe boolean
    Allow ECDHE algorithm?
    keyxchgAlgoRsa boolean
    Allow RSA algorithm?
    maxVersion string
    Maximum TLS version
    minVersion string
    Minimum TLS version
    auth_algo_sha1 bool
    Allow SHA1 authentication?
    auth_algo_sha256 bool
    Allow SHA256 authentication?
    auth_algo_sha384 bool
    Allow SHA384 authentication?
    enc_algo_aes128_cbc bool
    Allow AES-128-CBC algorithm?
    enc_algo_aes128_gcm bool
    Allow AES-128-GCM algorithm?
    enc_algo_aes256_cbc bool
    Allow AES-256-CBC algorithm?
    enc_algo_aes256_gcm bool
    Allow algorithm AES-256-GCM
    keyxchg_algo_dhe bool
    Allow DHE algorithm?
    keyxchg_algo_ecdhe bool
    Allow ECDHE algorithm?
    keyxchg_algo_rsa bool
    Allow RSA algorithm?
    max_version str
    Maximum TLS version
    min_version str
    Minimum TLS version
    authAlgoSha1 Boolean
    Allow SHA1 authentication?
    authAlgoSha256 Boolean
    Allow SHA256 authentication?
    authAlgoSha384 Boolean
    Allow SHA384 authentication?
    encAlgoAes128Cbc Boolean
    Allow AES-128-CBC algorithm?
    encAlgoAes128Gcm Boolean
    Allow AES-128-GCM algorithm?
    encAlgoAes256Cbc Boolean
    Allow AES-256-CBC algorithm?
    encAlgoAes256Gcm Boolean
    Allow algorithm AES-256-GCM
    keyxchgAlgoDhe Boolean
    Allow DHE algorithm?
    keyxchgAlgoEcdhe Boolean
    Allow ECDHE algorithm?
    keyxchgAlgoRsa Boolean
    Allow RSA algorithm?
    maxVersion String
    Maximum TLS version
    minVersion String
    Minimum TLS version

    Import

    The following command can be used to import a resource not managed by Terraform:

    bash

    $ pulumi import scm:index/tlsServiceProfile:TlsServiceProfile example folder:::id
    

    or

    bash

    $ pulumi import scm:index/tlsServiceProfile:TlsServiceProfile example :snippet::id
    

    or

    bash

    $ pulumi import scm:index/tlsServiceProfile:TlsServiceProfile example ::device:id
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.3 published on Thursday, Jan 22, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate