1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getCertificateProfileList
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";
    
    // Fetch a list of all certificate profile objects from the "Shared" folder.
    const allProfiles = scm.getCertificateProfileList({
        folder: "All",
    });
    export const certificateProfilesList = allProfiles.then(allProfiles => allProfiles.datas);
    
    import pulumi
    import pulumi_scm as scm
    
    # Fetch a list of all certificate profile objects from the "Shared" folder.
    all_profiles = scm.get_certificate_profile_list(folder="All")
    pulumi.export("certificateProfilesList", all_profiles.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 {
    		// Fetch a list of all certificate profile objects from the "Shared" folder.
    		allProfiles, err := scm.GetCertificateProfileList(ctx, &scm.GetCertificateProfileListArgs{
    			Folder: pulumi.StringRef("All"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("certificateProfilesList", allProfiles.Datas)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Fetch a list of all certificate profile objects from the "Shared" folder.
        var allProfiles = Scm.GetCertificateProfileList.Invoke(new()
        {
            Folder = "All",
        });
    
        return new Dictionary<string, object?>
        {
            ["certificateProfilesList"] = allProfiles.Apply(getCertificateProfileListResult => getCertificateProfileListResult.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.GetCertificateProfileListArgs;
    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) {
            // Fetch a list of all certificate profile objects from the "Shared" folder.
            final var allProfiles = ScmFunctions.getCertificateProfileList(GetCertificateProfileListArgs.builder()
                .folder("All")
                .build());
    
            ctx.export("certificateProfilesList", allProfiles.datas());
        }
    }
    
    variables:
      # Fetch a list of all certificate profile objects from the "Shared" folder.
      allProfiles:
        fn::invoke:
          function: scm:getCertificateProfileList
          arguments:
            folder: All
    outputs:
      # Output the raw list of all certificate profile objects found.
      certificateProfilesList: ${allProfiles.datas}
    

    Using getCertificateProfileList

    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 getCertificateProfileList(args: GetCertificateProfileListArgs, opts?: InvokeOptions): Promise<GetCertificateProfileListResult>
    function getCertificateProfileListOutput(args: GetCertificateProfileListOutputArgs, opts?: InvokeOptions): Output<GetCertificateProfileListResult>
    def get_certificate_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) -> GetCertificateProfileListResult
    def get_certificate_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[GetCertificateProfileListResult]
    func GetCertificateProfileList(ctx *Context, args *GetCertificateProfileListArgs, opts ...InvokeOption) (*GetCertificateProfileListResult, error)
    func GetCertificateProfileListOutput(ctx *Context, args *GetCertificateProfileListOutputArgs, opts ...InvokeOption) GetCertificateProfileListResultOutput

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

    public static class GetCertificateProfileList 
    {
        public static Task<GetCertificateProfileListResult> InvokeAsync(GetCertificateProfileListArgs args, InvokeOptions? opts = null)
        public static Output<GetCertificateProfileListResult> Invoke(GetCertificateProfileListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCertificateProfileListResult> getCertificateProfileList(GetCertificateProfileListArgs args, InvokeOptions options)
    public static Output<GetCertificateProfileListResult> getCertificateProfileList(GetCertificateProfileListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getCertificateProfileList:getCertificateProfileList
      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.

    getCertificateProfileList Result

    The following output properties are available:

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

    GetCertificateProfileListData

    BlockExpiredCert bool
    Block sessions with expired certificates?
    BlockTimeoutCert bool
    Block session if certificate status cannot be retrieved within timeout?
    BlockUnauthenticatedCert bool
    Block session if the certificate was not issued to the authenticating device?
    BlockUnknownCert bool
    Block session if certificate status is unknown?
    CaCertificates List<GetCertificateProfileListDataCaCertificate>
    An ordered list of CA certificates
    CertStatusTimeout string
    Certificate status timeout
    CrlReceiveTimeout string
    CRL receive timeout (seconds)
    Device string
    The device in which the resource is defined
    Domain string
    User domain
    Folder string
    The folder in which the resource is defined
    Id string
    The UUID of the certificate profile
    Name string
    The name of the certificate profile
    OcspReceiveTimeout string
    OCSP receive timeout (seconds)
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    UseCrl bool
    Use CRL?
    UseOcsp bool
    Use OCSP?
    UsernameField GetCertificateProfileListDataUsernameField
    Certificate username field
    BlockExpiredCert bool
    Block sessions with expired certificates?
    BlockTimeoutCert bool
    Block session if certificate status cannot be retrieved within timeout?
    BlockUnauthenticatedCert bool
    Block session if the certificate was not issued to the authenticating device?
    BlockUnknownCert bool
    Block session if certificate status is unknown?
    CaCertificates []GetCertificateProfileListDataCaCertificate
    An ordered list of CA certificates
    CertStatusTimeout string
    Certificate status timeout
    CrlReceiveTimeout string
    CRL receive timeout (seconds)
    Device string
    The device in which the resource is defined
    Domain string
    User domain
    Folder string
    The folder in which the resource is defined
    Id string
    The UUID of the certificate profile
    Name string
    The name of the certificate profile
    OcspReceiveTimeout string
    OCSP receive timeout (seconds)
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    UseCrl bool
    Use CRL?
    UseOcsp bool
    Use OCSP?
    UsernameField GetCertificateProfileListDataUsernameField
    Certificate username field
    blockExpiredCert Boolean
    Block sessions with expired certificates?
    blockTimeoutCert Boolean
    Block session if certificate status cannot be retrieved within timeout?
    blockUnauthenticatedCert Boolean
    Block session if the certificate was not issued to the authenticating device?
    blockUnknownCert Boolean
    Block session if certificate status is unknown?
    caCertificates List<GetCertificateProfileListDataCaCertificate>
    An ordered list of CA certificates
    certStatusTimeout String
    Certificate status timeout
    crlReceiveTimeout String
    CRL receive timeout (seconds)
    device String
    The device in which the resource is defined
    domain String
    User domain
    folder String
    The folder in which the resource is defined
    id String
    The UUID of the certificate profile
    name String
    The name of the certificate profile
    ocspReceiveTimeout String
    OCSP receive timeout (seconds)
    snippet String
    The snippet in which the resource is defined
    tfid String
    useCrl Boolean
    Use CRL?
    useOcsp Boolean
    Use OCSP?
    usernameField GetCertificateProfileListDataUsernameField
    Certificate username field
    blockExpiredCert boolean
    Block sessions with expired certificates?
    blockTimeoutCert boolean
    Block session if certificate status cannot be retrieved within timeout?
    blockUnauthenticatedCert boolean
    Block session if the certificate was not issued to the authenticating device?
    blockUnknownCert boolean
    Block session if certificate status is unknown?
    caCertificates GetCertificateProfileListDataCaCertificate[]
    An ordered list of CA certificates
    certStatusTimeout string
    Certificate status timeout
    crlReceiveTimeout string
    CRL receive timeout (seconds)
    device string
    The device in which the resource is defined
    domain string
    User domain
    folder string
    The folder in which the resource is defined
    id string
    The UUID of the certificate profile
    name string
    The name of the certificate profile
    ocspReceiveTimeout string
    OCSP receive timeout (seconds)
    snippet string
    The snippet in which the resource is defined
    tfid string
    useCrl boolean
    Use CRL?
    useOcsp boolean
    Use OCSP?
    usernameField GetCertificateProfileListDataUsernameField
    Certificate username field
    block_expired_cert bool
    Block sessions with expired certificates?
    block_timeout_cert bool
    Block session if certificate status cannot be retrieved within timeout?
    block_unauthenticated_cert bool
    Block session if the certificate was not issued to the authenticating device?
    block_unknown_cert bool
    Block session if certificate status is unknown?
    ca_certificates Sequence[GetCertificateProfileListDataCaCertificate]
    An ordered list of CA certificates
    cert_status_timeout str
    Certificate status timeout
    crl_receive_timeout str
    CRL receive timeout (seconds)
    device str
    The device in which the resource is defined
    domain str
    User domain
    folder str
    The folder in which the resource is defined
    id str
    The UUID of the certificate profile
    name str
    The name of the certificate profile
    ocsp_receive_timeout str
    OCSP receive timeout (seconds)
    snippet str
    The snippet in which the resource is defined
    tfid str
    use_crl bool
    Use CRL?
    use_ocsp bool
    Use OCSP?
    username_field GetCertificateProfileListDataUsernameField
    Certificate username field
    blockExpiredCert Boolean
    Block sessions with expired certificates?
    blockTimeoutCert Boolean
    Block session if certificate status cannot be retrieved within timeout?
    blockUnauthenticatedCert Boolean
    Block session if the certificate was not issued to the authenticating device?
    blockUnknownCert Boolean
    Block session if certificate status is unknown?
    caCertificates List<Property Map>
    An ordered list of CA certificates
    certStatusTimeout String
    Certificate status timeout
    crlReceiveTimeout String
    CRL receive timeout (seconds)
    device String
    The device in which the resource is defined
    domain String
    User domain
    folder String
    The folder in which the resource is defined
    id String
    The UUID of the certificate profile
    name String
    The name of the certificate profile
    ocspReceiveTimeout String
    OCSP receive timeout (seconds)
    snippet String
    The snippet in which the resource is defined
    tfid String
    useCrl Boolean
    Use CRL?
    useOcsp Boolean
    Use OCSP?
    usernameField Property Map
    Certificate username field

    GetCertificateProfileListDataCaCertificate

    DefaultOcspUrl string
    Default OCSP URL
    Name string
    CA certificate name
    OcspVerifyCert string
    OCSP verify certificate
    TemplateName string
    Template name/OID
    DefaultOcspUrl string
    Default OCSP URL
    Name string
    CA certificate name
    OcspVerifyCert string
    OCSP verify certificate
    TemplateName string
    Template name/OID
    defaultOcspUrl String
    Default OCSP URL
    name String
    CA certificate name
    ocspVerifyCert String
    OCSP verify certificate
    templateName String
    Template name/OID
    defaultOcspUrl string
    Default OCSP URL
    name string
    CA certificate name
    ocspVerifyCert string
    OCSP verify certificate
    templateName string
    Template name/OID
    default_ocsp_url str
    Default OCSP URL
    name str
    CA certificate name
    ocsp_verify_cert str
    OCSP verify certificate
    template_name str
    Template name/OID
    defaultOcspUrl String
    Default OCSP URL
    name String
    CA certificate name
    ocspVerifyCert String
    OCSP verify certificate
    templateName String
    Template name/OID

    GetCertificateProfileListDataUsernameField

    Subject string
    Common name
    SubjectAlt string
    Email address
    Subject string
    Common name
    SubjectAlt string
    Email address
    subject String
    Common name
    subjectAlt String
    Email address
    subject string
    Common name
    subjectAlt string
    Email address
    subject str
    Common name
    subject_alt str
    Email address
    subject String
    Common name
    subjectAlt String
    Email address

    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