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

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    //
    // Data source to retrieve a list of SCM Decryption Profile objects.
    //
    // Fetch a list of all SCM Decryption Profile in the "Shared" folder.
    const allShared = scm.getDecryptionProfileList({
        folder: "All",
    });
    export const scmDecryptionProfileListAllShared = allShared.then(allShared => allShared.datas);
    
    import pulumi
    import pulumi_scm as scm
    
    #
    # Data source to retrieve a list of SCM Decryption Profile objects.
    #
    # Fetch a list of all SCM Decryption Profile in the "Shared" folder.
    all_shared = scm.get_decryption_profile_list(folder="All")
    pulumi.export("scmDecryptionProfileListAllShared", all_shared.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 {
    		// Data source to retrieve a list of SCM Decryption Profile objects.
    		//
    		// Fetch a list of all SCM Decryption Profile in the "Shared" folder.
    		allShared, err := scm.GetDecryptionProfileList(ctx, &scm.GetDecryptionProfileListArgs{
    			Folder: pulumi.StringRef("All"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("scmDecryptionProfileListAllShared", allShared.Datas)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        //
        // Data source to retrieve a list of SCM Decryption Profile objects.
        //
        // Fetch a list of all SCM Decryption Profile in the "Shared" folder.
        var allShared = Scm.GetDecryptionProfileList.Invoke(new()
        {
            Folder = "All",
        });
    
        return new Dictionary<string, object?>
        {
            ["scmDecryptionProfileListAllShared"] = allShared.Apply(getDecryptionProfileListResult => getDecryptionProfileListResult.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.GetDecryptionProfileListArgs;
    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) {
            //
            // Data source to retrieve a list of SCM Decryption Profile objects.
            //
            // Fetch a list of all SCM Decryption Profile in the "Shared" folder.
            final var allShared = ScmFunctions.getDecryptionProfileList(GetDecryptionProfileListArgs.builder()
                .folder("All")
                .build());
    
            ctx.export("scmDecryptionProfileListAllShared", allShared.datas());
        }
    }
    
    variables:
      #
      # Data source to retrieve a list of SCM Decryption Profile objects.
      #
    
      # Fetch a list of all SCM Decryption Profile in the "Shared" folder.
      allShared:
        fn::invoke:
          function: scm:getDecryptionProfileList
          arguments:
            folder: All
    outputs:
      # Output the list of all SCM Decryption Profile objects from the "Shared" folder.
      scmDecryptionProfileListAllShared: ${allShared.datas}
    

    Using getDecryptionProfileList

    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 getDecryptionProfileList(args: GetDecryptionProfileListArgs, opts?: InvokeOptions): Promise<GetDecryptionProfileListResult>
    function getDecryptionProfileListOutput(args: GetDecryptionProfileListOutputArgs, opts?: InvokeOptions): Output<GetDecryptionProfileListResult>
    def get_decryption_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) -> GetDecryptionProfileListResult
    def get_decryption_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[GetDecryptionProfileListResult]
    func GetDecryptionProfileList(ctx *Context, args *GetDecryptionProfileListArgs, opts ...InvokeOption) (*GetDecryptionProfileListResult, error)
    func GetDecryptionProfileListOutput(ctx *Context, args *GetDecryptionProfileListOutputArgs, opts ...InvokeOption) GetDecryptionProfileListResultOutput

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

    public static class GetDecryptionProfileList 
    {
        public static Task<GetDecryptionProfileListResult> InvokeAsync(GetDecryptionProfileListArgs args, InvokeOptions? opts = null)
        public static Output<GetDecryptionProfileListResult> Invoke(GetDecryptionProfileListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDecryptionProfileListResult> getDecryptionProfileList(GetDecryptionProfileListArgs args, InvokeOptions options)
    public static Output<GetDecryptionProfileListResult> getDecryptionProfileList(GetDecryptionProfileListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getDecryptionProfileList:getDecryptionProfileList
      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.

    getDecryptionProfileList Result

    The following output properties are available:

    Datas List<GetDecryptionProfileListData>
    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 []GetDecryptionProfileListData
    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<GetDecryptionProfileListData>
    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 GetDecryptionProfileListData[]
    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[GetDecryptionProfileListData]
    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

    GetDecryptionProfileListData

    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Id string
    UUID of the resource
    Name string
    Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space
    Snippet string
    The snippet in which the resource is defined
    SslForwardProxy GetDecryptionProfileListDataSslForwardProxy
    Ssl forward proxy
    SslInboundProxy GetDecryptionProfileListDataSslInboundProxy
    Ssl inbound proxy
    SslNoProxy GetDecryptionProfileListDataSslNoProxy
    Ssl no proxy
    SslProtocolSettings GetDecryptionProfileListDataSslProtocolSettings
    Ssl protocol settings
    Tfid string
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Id string
    UUID of the resource
    Name string
    Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space
    Snippet string
    The snippet in which the resource is defined
    SslForwardProxy GetDecryptionProfileListDataSslForwardProxy
    Ssl forward proxy
    SslInboundProxy GetDecryptionProfileListDataSslInboundProxy
    Ssl inbound proxy
    SslNoProxy GetDecryptionProfileListDataSslNoProxy
    Ssl no proxy
    SslProtocolSettings GetDecryptionProfileListDataSslProtocolSettings
    Ssl protocol settings
    Tfid string
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    id String
    UUID of the resource
    name String
    Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space
    snippet String
    The snippet in which the resource is defined
    sslForwardProxy GetDecryptionProfileListDataSslForwardProxy
    Ssl forward proxy
    sslInboundProxy GetDecryptionProfileListDataSslInboundProxy
    Ssl inbound proxy
    sslNoProxy GetDecryptionProfileListDataSslNoProxy
    Ssl no proxy
    sslProtocolSettings GetDecryptionProfileListDataSslProtocolSettings
    Ssl protocol settings
    tfid String
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    id string
    UUID of the resource
    name string
    Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space
    snippet string
    The snippet in which the resource is defined
    sslForwardProxy GetDecryptionProfileListDataSslForwardProxy
    Ssl forward proxy
    sslInboundProxy GetDecryptionProfileListDataSslInboundProxy
    Ssl inbound proxy
    sslNoProxy GetDecryptionProfileListDataSslNoProxy
    Ssl no proxy
    sslProtocolSettings GetDecryptionProfileListDataSslProtocolSettings
    Ssl protocol settings
    tfid string
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    id str
    UUID of the resource
    name str
    Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space
    snippet str
    The snippet in which the resource is defined
    ssl_forward_proxy GetDecryptionProfileListDataSslForwardProxy
    Ssl forward proxy
    ssl_inbound_proxy GetDecryptionProfileListDataSslInboundProxy
    Ssl inbound proxy
    ssl_no_proxy GetDecryptionProfileListDataSslNoProxy
    Ssl no proxy
    ssl_protocol_settings GetDecryptionProfileListDataSslProtocolSettings
    Ssl protocol settings
    tfid str
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    id String
    UUID of the resource
    name String
    Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space
    snippet String
    The snippet in which the resource is defined
    sslForwardProxy Property Map
    Ssl forward proxy
    sslInboundProxy Property Map
    Ssl inbound proxy
    sslNoProxy Property Map
    Ssl no proxy
    sslProtocolSettings Property Map
    Ssl protocol settings
    tfid String

    GetDecryptionProfileListDataSslForwardProxy

    AutoIncludeAltname bool
    Auto include altname
    BlockClientCert bool
    Block client cert
    BlockExpiredCertificate bool
    Block expired certificate
    BlockTimeoutCert bool
    Block timeout cert
    BlockTls13DowngradeNoResource bool
    Block tls13 downgrade no resource
    BlockUnknownCert bool
    Block unknown cert
    BlockUnsupportedCipher bool
    Block unsupported cipher
    BlockUnsupportedVersion bool
    Block unsupported version
    BlockUntrustedIssuer bool
    Block untrusted issuer
    RestrictCertExts bool
    Restrict cert exts
    StripAlpn bool
    Strip alpn
    AutoIncludeAltname bool
    Auto include altname
    BlockClientCert bool
    Block client cert
    BlockExpiredCertificate bool
    Block expired certificate
    BlockTimeoutCert bool
    Block timeout cert
    BlockTls13DowngradeNoResource bool
    Block tls13 downgrade no resource
    BlockUnknownCert bool
    Block unknown cert
    BlockUnsupportedCipher bool
    Block unsupported cipher
    BlockUnsupportedVersion bool
    Block unsupported version
    BlockUntrustedIssuer bool
    Block untrusted issuer
    RestrictCertExts bool
    Restrict cert exts
    StripAlpn bool
    Strip alpn
    autoIncludeAltname Boolean
    Auto include altname
    blockClientCert Boolean
    Block client cert
    blockExpiredCertificate Boolean
    Block expired certificate
    blockTimeoutCert Boolean
    Block timeout cert
    blockTls13DowngradeNoResource Boolean
    Block tls13 downgrade no resource
    blockUnknownCert Boolean
    Block unknown cert
    blockUnsupportedCipher Boolean
    Block unsupported cipher
    blockUnsupportedVersion Boolean
    Block unsupported version
    blockUntrustedIssuer Boolean
    Block untrusted issuer
    restrictCertExts Boolean
    Restrict cert exts
    stripAlpn Boolean
    Strip alpn
    autoIncludeAltname boolean
    Auto include altname
    blockClientCert boolean
    Block client cert
    blockExpiredCertificate boolean
    Block expired certificate
    blockTimeoutCert boolean
    Block timeout cert
    blockTls13DowngradeNoResource boolean
    Block tls13 downgrade no resource
    blockUnknownCert boolean
    Block unknown cert
    blockUnsupportedCipher boolean
    Block unsupported cipher
    blockUnsupportedVersion boolean
    Block unsupported version
    blockUntrustedIssuer boolean
    Block untrusted issuer
    restrictCertExts boolean
    Restrict cert exts
    stripAlpn boolean
    Strip alpn
    auto_include_altname bool
    Auto include altname
    block_client_cert bool
    Block client cert
    block_expired_certificate bool
    Block expired certificate
    block_timeout_cert bool
    Block timeout cert
    block_tls13_downgrade_no_resource bool
    Block tls13 downgrade no resource
    block_unknown_cert bool
    Block unknown cert
    block_unsupported_cipher bool
    Block unsupported cipher
    block_unsupported_version bool
    Block unsupported version
    block_untrusted_issuer bool
    Block untrusted issuer
    restrict_cert_exts bool
    Restrict cert exts
    strip_alpn bool
    Strip alpn
    autoIncludeAltname Boolean
    Auto include altname
    blockClientCert Boolean
    Block client cert
    blockExpiredCertificate Boolean
    Block expired certificate
    blockTimeoutCert Boolean
    Block timeout cert
    blockTls13DowngradeNoResource Boolean
    Block tls13 downgrade no resource
    blockUnknownCert Boolean
    Block unknown cert
    blockUnsupportedCipher Boolean
    Block unsupported cipher
    blockUnsupportedVersion Boolean
    Block unsupported version
    blockUntrustedIssuer Boolean
    Block untrusted issuer
    restrictCertExts Boolean
    Restrict cert exts
    stripAlpn Boolean
    Strip alpn

    GetDecryptionProfileListDataSslInboundProxy

    BlockIfHsmUnavailable bool
    Block if hsm unavailable
    BlockIfNoResource bool
    Block if no resource
    BlockUnsupportedCipher bool
    Block unsupported cipher
    BlockUnsupportedVersion bool
    Block unsupported version
    BlockIfHsmUnavailable bool
    Block if hsm unavailable
    BlockIfNoResource bool
    Block if no resource
    BlockUnsupportedCipher bool
    Block unsupported cipher
    BlockUnsupportedVersion bool
    Block unsupported version
    blockIfHsmUnavailable Boolean
    Block if hsm unavailable
    blockIfNoResource Boolean
    Block if no resource
    blockUnsupportedCipher Boolean
    Block unsupported cipher
    blockUnsupportedVersion Boolean
    Block unsupported version
    blockIfHsmUnavailable boolean
    Block if hsm unavailable
    blockIfNoResource boolean
    Block if no resource
    blockUnsupportedCipher boolean
    Block unsupported cipher
    blockUnsupportedVersion boolean
    Block unsupported version
    block_if_hsm_unavailable bool
    Block if hsm unavailable
    block_if_no_resource bool
    Block if no resource
    block_unsupported_cipher bool
    Block unsupported cipher
    block_unsupported_version bool
    Block unsupported version
    blockIfHsmUnavailable Boolean
    Block if hsm unavailable
    blockIfNoResource Boolean
    Block if no resource
    blockUnsupportedCipher Boolean
    Block unsupported cipher
    blockUnsupportedVersion Boolean
    Block unsupported version

    GetDecryptionProfileListDataSslNoProxy

    BlockExpiredCertificate bool
    Block expired certificate
    BlockUntrustedIssuer bool
    Block untrusted issuer
    BlockExpiredCertificate bool
    Block expired certificate
    BlockUntrustedIssuer bool
    Block untrusted issuer
    blockExpiredCertificate Boolean
    Block expired certificate
    blockUntrustedIssuer Boolean
    Block untrusted issuer
    blockExpiredCertificate boolean
    Block expired certificate
    blockUntrustedIssuer boolean
    Block untrusted issuer
    block_expired_certificate bool
    Block expired certificate
    block_untrusted_issuer bool
    Block untrusted issuer
    blockExpiredCertificate Boolean
    Block expired certificate
    blockUntrustedIssuer Boolean
    Block untrusted issuer

    GetDecryptionProfileListDataSslProtocolSettings

    AuthAlgoMd5 bool
    Auth algo md5
    AuthAlgoSha1 bool
    Auth algo sha1
    AuthAlgoSha256 bool
    Auth algo sha256
    AuthAlgoSha384 bool
    Auth algo sha384
    EncAlgo3des bool
    Enc algo3des
    EncAlgoAes128Cbc bool
    Enc algo aes128 cbc
    EncAlgoAes128Gcm bool
    Enc algo aes128 gcm
    EncAlgoAes256Cbc bool
    Enc algo aes256 cbc
    EncAlgoAes256Gcm bool
    Enc algo aes256 gcm
    EncAlgoChacha20Poly1305 bool
    Enc algo chacha20 poly1305
    EncAlgoRc4 bool
    Enc algo rc4
    KeyxchgAlgoDhe bool
    Keyxchg algo dhe
    KeyxchgAlgoEcdhe bool
    Keyxchg algo ecdhe
    KeyxchgAlgoRsa bool
    Keyxchg algo rsa
    MaxVersion string
    Max version
    MinVersion string
    Min version
    AuthAlgoMd5 bool
    Auth algo md5
    AuthAlgoSha1 bool
    Auth algo sha1
    AuthAlgoSha256 bool
    Auth algo sha256
    AuthAlgoSha384 bool
    Auth algo sha384
    EncAlgo3des bool
    Enc algo3des
    EncAlgoAes128Cbc bool
    Enc algo aes128 cbc
    EncAlgoAes128Gcm bool
    Enc algo aes128 gcm
    EncAlgoAes256Cbc bool
    Enc algo aes256 cbc
    EncAlgoAes256Gcm bool
    Enc algo aes256 gcm
    EncAlgoChacha20Poly1305 bool
    Enc algo chacha20 poly1305
    EncAlgoRc4 bool
    Enc algo rc4
    KeyxchgAlgoDhe bool
    Keyxchg algo dhe
    KeyxchgAlgoEcdhe bool
    Keyxchg algo ecdhe
    KeyxchgAlgoRsa bool
    Keyxchg algo rsa
    MaxVersion string
    Max version
    MinVersion string
    Min version
    authAlgoMd5 Boolean
    Auth algo md5
    authAlgoSha1 Boolean
    Auth algo sha1
    authAlgoSha256 Boolean
    Auth algo sha256
    authAlgoSha384 Boolean
    Auth algo sha384
    encAlgo3des Boolean
    Enc algo3des
    encAlgoAes128Cbc Boolean
    Enc algo aes128 cbc
    encAlgoAes128Gcm Boolean
    Enc algo aes128 gcm
    encAlgoAes256Cbc Boolean
    Enc algo aes256 cbc
    encAlgoAes256Gcm Boolean
    Enc algo aes256 gcm
    encAlgoChacha20Poly1305 Boolean
    Enc algo chacha20 poly1305
    encAlgoRc4 Boolean
    Enc algo rc4
    keyxchgAlgoDhe Boolean
    Keyxchg algo dhe
    keyxchgAlgoEcdhe Boolean
    Keyxchg algo ecdhe
    keyxchgAlgoRsa Boolean
    Keyxchg algo rsa
    maxVersion String
    Max version
    minVersion String
    Min version
    authAlgoMd5 boolean
    Auth algo md5
    authAlgoSha1 boolean
    Auth algo sha1
    authAlgoSha256 boolean
    Auth algo sha256
    authAlgoSha384 boolean
    Auth algo sha384
    encAlgo3des boolean
    Enc algo3des
    encAlgoAes128Cbc boolean
    Enc algo aes128 cbc
    encAlgoAes128Gcm boolean
    Enc algo aes128 gcm
    encAlgoAes256Cbc boolean
    Enc algo aes256 cbc
    encAlgoAes256Gcm boolean
    Enc algo aes256 gcm
    encAlgoChacha20Poly1305 boolean
    Enc algo chacha20 poly1305
    encAlgoRc4 boolean
    Enc algo rc4
    keyxchgAlgoDhe boolean
    Keyxchg algo dhe
    keyxchgAlgoEcdhe boolean
    Keyxchg algo ecdhe
    keyxchgAlgoRsa boolean
    Keyxchg algo rsa
    maxVersion string
    Max version
    minVersion string
    Min version
    auth_algo_md5 bool
    Auth algo md5
    auth_algo_sha1 bool
    Auth algo sha1
    auth_algo_sha256 bool
    Auth algo sha256
    auth_algo_sha384 bool
    Auth algo sha384
    enc_algo3des bool
    Enc algo3des
    enc_algo_aes128_cbc bool
    Enc algo aes128 cbc
    enc_algo_aes128_gcm bool
    Enc algo aes128 gcm
    enc_algo_aes256_cbc bool
    Enc algo aes256 cbc
    enc_algo_aes256_gcm bool
    Enc algo aes256 gcm
    enc_algo_chacha20_poly1305 bool
    Enc algo chacha20 poly1305
    enc_algo_rc4 bool
    Enc algo rc4
    keyxchg_algo_dhe bool
    Keyxchg algo dhe
    keyxchg_algo_ecdhe bool
    Keyxchg algo ecdhe
    keyxchg_algo_rsa bool
    Keyxchg algo rsa
    max_version str
    Max version
    min_version str
    Min version
    authAlgoMd5 Boolean
    Auth algo md5
    authAlgoSha1 Boolean
    Auth algo sha1
    authAlgoSha256 Boolean
    Auth algo sha256
    authAlgoSha384 Boolean
    Auth algo sha384
    encAlgo3des Boolean
    Enc algo3des
    encAlgoAes128Cbc Boolean
    Enc algo aes128 cbc
    encAlgoAes128Gcm Boolean
    Enc algo aes128 gcm
    encAlgoAes256Cbc Boolean
    Enc algo aes256 cbc
    encAlgoAes256Gcm Boolean
    Enc algo aes256 gcm
    encAlgoChacha20Poly1305 Boolean
    Enc algo chacha20 poly1305
    encAlgoRc4 Boolean
    Enc algo rc4
    keyxchgAlgoDhe Boolean
    Keyxchg algo dhe
    keyxchgAlgoEcdhe Boolean
    Keyxchg algo ecdhe
    keyxchgAlgoRsa Boolean
    Keyxchg algo rsa
    maxVersion String
    Max version
    minVersion String
    Min 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