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

    TlsServiceProfile resource

    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,
            EncAlgo3des = false,
            EncAlgoAes128Cbc = false,
            EncAlgoAes128Gcm = false,
            EncAlgoAes256Cbc = false,
            EncAlgoAes256Gcm = false,
            EncAlgoRc4 = 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),
    		EncAlgo3des:      pulumi.Bool(false),
    		EncAlgoAes128Cbc: pulumi.Bool(false),
    		EncAlgoAes128Gcm: pulumi.Bool(false),
    		EncAlgoAes256Cbc: pulumi.Bool(false),
    		EncAlgoAes256Gcm: pulumi.Bool(false),
    		EncAlgoRc4:       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)
            .encAlgo3des(false)
            .encAlgoAes128Cbc(false)
            .encAlgoAes128Gcm(false)
            .encAlgoAes256Cbc(false)
            .encAlgoAes256Gcm(false)
            .encAlgoRc4(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_algo3des": False,
            "enc_algo_aes128_cbc": False,
            "enc_algo_aes128_gcm": False,
            "enc_algo_aes256_cbc": False,
            "enc_algo_aes256_gcm": False,
            "enc_algo_rc4": 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,
            encAlgo3des: false,
            encAlgoAes128Cbc: false,
            encAlgoAes128Gcm: false,
            encAlgoAes256Cbc: false,
            encAlgoAes256Gcm: false,
            encAlgoRc4: 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
            encAlgo3des: false
            encAlgoAes128Cbc: false
            encAlgoAes128Gcm: false
            encAlgoAes256Cbc: false
            encAlgoAes256Gcm: false
            encAlgoRc4: 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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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

    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    tfid String

    Supporting Types

    TlsServiceProfileProtocolSettings, TlsServiceProfileProtocolSettingsArgs

    AuthAlgoSha1 bool
    Allow SHA1 authentication?
    AuthAlgoSha256 bool
    Allow SHA256 authentication?
    AuthAlgoSha384 bool
    Allow SHA384 authentication?
    EncAlgo3des bool
    Allow 3DES algorithm?
    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
    EncAlgoRc4 bool
    Allow RC4 algorithm?
    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?
    EncAlgo3des bool
    Allow 3DES algorithm?
    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
    EncAlgoRc4 bool
    Allow RC4 algorithm?
    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?
    encAlgo3des Boolean
    Allow 3DES algorithm?
    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
    encAlgoRc4 Boolean
    Allow RC4 algorithm?
    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?
    encAlgo3des boolean
    Allow 3DES algorithm?
    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
    encAlgoRc4 boolean
    Allow RC4 algorithm?
    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_algo3des bool
    Allow 3DES algorithm?
    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
    enc_algo_rc4 bool
    Allow RC4 algorithm?
    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?
    encAlgo3des Boolean
    Allow 3DES algorithm?
    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
    encAlgoRc4 Boolean
    Allow RC4 algorithm?
    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

    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