1. Packages
  2. Strata Cloud Manager
  3. API Docs
  4. CertificateProfile
Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi

scm.CertificateProfile

Explore with Pulumi AI

scm logo
Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi

    Retrieves a config item.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const example = new scm.CertificateProfile("example", {});
    
    import pulumi
    import pulumi_scm as scm
    
    example = scm.CertificateProfile("example")
    
    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.NewCertificateProfile(ctx, "example", nil)
    		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 example = new Scm.CertificateProfile("example");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.CertificateProfile;
    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 example = new CertificateProfile("example");
    
        }
    }
    
    resources:
      example:
        type: scm:CertificateProfile
    

    Create CertificateProfile Resource

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

    Constructor syntax

    new CertificateProfile(name: string, args: CertificateProfileArgs, opts?: CustomResourceOptions);
    @overload
    def CertificateProfile(resource_name: str,
                           args: CertificateProfileArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def CertificateProfile(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           ca_certificates: Optional[Sequence[CertificateProfileCaCertificateArgs]] = None,
                           domain: Optional[str] = None,
                           folder: Optional[str] = None,
                           block_unknown_cert: Optional[bool] = None,
                           block_timeout_cert: Optional[bool] = None,
                           cert_status_timeout: Optional[str] = None,
                           crl_receive_timeout: Optional[str] = None,
                           block_unauthenticated_cert: Optional[bool] = None,
                           block_expired_cert: Optional[bool] = None,
                           device: Optional[str] = None,
                           name: Optional[str] = None,
                           ocsp_receive_timeout: Optional[str] = None,
                           snippet: Optional[str] = None,
                           use_crl: Optional[bool] = None,
                           use_ocsp: Optional[bool] = None,
                           username_field: Optional[CertificateProfileUsernameFieldArgs] = None)
    func NewCertificateProfile(ctx *Context, name string, args CertificateProfileArgs, opts ...ResourceOption) (*CertificateProfile, error)
    public CertificateProfile(string name, CertificateProfileArgs args, CustomResourceOptions? opts = null)
    public CertificateProfile(String name, CertificateProfileArgs args)
    public CertificateProfile(String name, CertificateProfileArgs args, CustomResourceOptions options)
    
    type: scm:CertificateProfile
    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 CertificateProfileArgs
    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 CertificateProfileArgs
    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 CertificateProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CertificateProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CertificateProfileArgs
    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 certificateProfileResource = new Scm.CertificateProfile("certificateProfileResource", new()
    {
        CaCertificates = new[]
        {
            new Scm.Inputs.CertificateProfileCaCertificateArgs
            {
                DefaultOcspUrl = "string",
                Name = "string",
                OcspVerifyCert = "string",
                TemplateName = "string",
            },
        },
        Domain = "string",
        Folder = "string",
        BlockUnknownCert = false,
        BlockTimeoutCert = false,
        CertStatusTimeout = "string",
        CrlReceiveTimeout = "string",
        BlockUnauthenticatedCert = false,
        BlockExpiredCert = false,
        Device = "string",
        Name = "string",
        OcspReceiveTimeout = "string",
        Snippet = "string",
        UseCrl = false,
        UseOcsp = false,
        UsernameField = new Scm.Inputs.CertificateProfileUsernameFieldArgs
        {
            Subject = "string",
            SubjectAlt = "string",
        },
    });
    
    example, err := scm.NewCertificateProfile(ctx, "certificateProfileResource", &scm.CertificateProfileArgs{
    	CaCertificates: scm.CertificateProfileCaCertificateArray{
    		&scm.CertificateProfileCaCertificateArgs{
    			DefaultOcspUrl: pulumi.String("string"),
    			Name:           pulumi.String("string"),
    			OcspVerifyCert: pulumi.String("string"),
    			TemplateName:   pulumi.String("string"),
    		},
    	},
    	Domain:                   pulumi.String("string"),
    	Folder:                   pulumi.String("string"),
    	BlockUnknownCert:         pulumi.Bool(false),
    	BlockTimeoutCert:         pulumi.Bool(false),
    	CertStatusTimeout:        pulumi.String("string"),
    	CrlReceiveTimeout:        pulumi.String("string"),
    	BlockUnauthenticatedCert: pulumi.Bool(false),
    	BlockExpiredCert:         pulumi.Bool(false),
    	Device:                   pulumi.String("string"),
    	Name:                     pulumi.String("string"),
    	OcspReceiveTimeout:       pulumi.String("string"),
    	Snippet:                  pulumi.String("string"),
    	UseCrl:                   pulumi.Bool(false),
    	UseOcsp:                  pulumi.Bool(false),
    	UsernameField: &scm.CertificateProfileUsernameFieldArgs{
    		Subject:    pulumi.String("string"),
    		SubjectAlt: pulumi.String("string"),
    	},
    })
    
    var certificateProfileResource = new CertificateProfile("certificateProfileResource", CertificateProfileArgs.builder()
        .caCertificates(CertificateProfileCaCertificateArgs.builder()
            .defaultOcspUrl("string")
            .name("string")
            .ocspVerifyCert("string")
            .templateName("string")
            .build())
        .domain("string")
        .folder("string")
        .blockUnknownCert(false)
        .blockTimeoutCert(false)
        .certStatusTimeout("string")
        .crlReceiveTimeout("string")
        .blockUnauthenticatedCert(false)
        .blockExpiredCert(false)
        .device("string")
        .name("string")
        .ocspReceiveTimeout("string")
        .snippet("string")
        .useCrl(false)
        .useOcsp(false)
        .usernameField(CertificateProfileUsernameFieldArgs.builder()
            .subject("string")
            .subjectAlt("string")
            .build())
        .build());
    
    certificate_profile_resource = scm.CertificateProfile("certificateProfileResource",
        ca_certificates=[scm.CertificateProfileCaCertificateArgs(
            default_ocsp_url="string",
            name="string",
            ocsp_verify_cert="string",
            template_name="string",
        )],
        domain="string",
        folder="string",
        block_unknown_cert=False,
        block_timeout_cert=False,
        cert_status_timeout="string",
        crl_receive_timeout="string",
        block_unauthenticated_cert=False,
        block_expired_cert=False,
        device="string",
        name="string",
        ocsp_receive_timeout="string",
        snippet="string",
        use_crl=False,
        use_ocsp=False,
        username_field=scm.CertificateProfileUsernameFieldArgs(
            subject="string",
            subject_alt="string",
        ))
    
    const certificateProfileResource = new scm.CertificateProfile("certificateProfileResource", {
        caCertificates: [{
            defaultOcspUrl: "string",
            name: "string",
            ocspVerifyCert: "string",
            templateName: "string",
        }],
        domain: "string",
        folder: "string",
        blockUnknownCert: false,
        blockTimeoutCert: false,
        certStatusTimeout: "string",
        crlReceiveTimeout: "string",
        blockUnauthenticatedCert: false,
        blockExpiredCert: false,
        device: "string",
        name: "string",
        ocspReceiveTimeout: "string",
        snippet: "string",
        useCrl: false,
        useOcsp: false,
        usernameField: {
            subject: "string",
            subjectAlt: "string",
        },
    });
    
    type: scm:CertificateProfile
    properties:
        blockExpiredCert: false
        blockTimeoutCert: false
        blockUnauthenticatedCert: false
        blockUnknownCert: false
        caCertificates:
            - defaultOcspUrl: string
              name: string
              ocspVerifyCert: string
              templateName: string
        certStatusTimeout: string
        crlReceiveTimeout: string
        device: string
        domain: string
        folder: string
        name: string
        ocspReceiveTimeout: string
        snippet: string
        useCrl: false
        useOcsp: false
        usernameField:
            subject: string
            subjectAlt: string
    

    CertificateProfile Resource Properties

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

    Inputs

    The CertificateProfile resource accepts the following input properties:

    CaCertificates List<CertificateProfileCaCertificate>
    The CaCertificates param.
    BlockExpiredCert bool
    The BlockExpiredCert param.
    BlockTimeoutCert bool
    The BlockTimeoutCert param.
    BlockUnauthenticatedCert bool
    The BlockUnauthenticatedCert param.
    BlockUnknownCert bool
    The BlockUnknownCert param.
    CertStatusTimeout string
    The CertStatusTimeout param.
    CrlReceiveTimeout string
    The CrlReceiveTimeout param.
    Device string
    The Device param.
    Domain string
    The Domain param.
    Folder string
    The Folder param.
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    OcspReceiveTimeout string
    The OcspReceiveTimeout param.
    Snippet string
    The Snippet param.
    UseCrl bool
    The UseCrl param.
    UseOcsp bool
    The UseOcsp param.
    UsernameField CertificateProfileUsernameField
    The UsernameField param.
    CaCertificates []CertificateProfileCaCertificateArgs
    The CaCertificates param.
    BlockExpiredCert bool
    The BlockExpiredCert param.
    BlockTimeoutCert bool
    The BlockTimeoutCert param.
    BlockUnauthenticatedCert bool
    The BlockUnauthenticatedCert param.
    BlockUnknownCert bool
    The BlockUnknownCert param.
    CertStatusTimeout string
    The CertStatusTimeout param.
    CrlReceiveTimeout string
    The CrlReceiveTimeout param.
    Device string
    The Device param.
    Domain string
    The Domain param.
    Folder string
    The Folder param.
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    OcspReceiveTimeout string
    The OcspReceiveTimeout param.
    Snippet string
    The Snippet param.
    UseCrl bool
    The UseCrl param.
    UseOcsp bool
    The UseOcsp param.
    UsernameField CertificateProfileUsernameFieldArgs
    The UsernameField param.
    caCertificates List<CertificateProfileCaCertificate>
    The CaCertificates param.
    blockExpiredCert Boolean
    The BlockExpiredCert param.
    blockTimeoutCert Boolean
    The BlockTimeoutCert param.
    blockUnauthenticatedCert Boolean
    The BlockUnauthenticatedCert param.
    blockUnknownCert Boolean
    The BlockUnknownCert param.
    certStatusTimeout String
    The CertStatusTimeout param.
    crlReceiveTimeout String
    The CrlReceiveTimeout param.
    device String
    The Device param.
    domain String
    The Domain param.
    folder String
    The Folder param.
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    ocspReceiveTimeout String
    The OcspReceiveTimeout param.
    snippet String
    The Snippet param.
    useCrl Boolean
    The UseCrl param.
    useOcsp Boolean
    The UseOcsp param.
    usernameField CertificateProfileUsernameField
    The UsernameField param.
    caCertificates CertificateProfileCaCertificate[]
    The CaCertificates param.
    blockExpiredCert boolean
    The BlockExpiredCert param.
    blockTimeoutCert boolean
    The BlockTimeoutCert param.
    blockUnauthenticatedCert boolean
    The BlockUnauthenticatedCert param.
    blockUnknownCert boolean
    The BlockUnknownCert param.
    certStatusTimeout string
    The CertStatusTimeout param.
    crlReceiveTimeout string
    The CrlReceiveTimeout param.
    device string
    The Device param.
    domain string
    The Domain param.
    folder string
    The Folder param.
    name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    ocspReceiveTimeout string
    The OcspReceiveTimeout param.
    snippet string
    The Snippet param.
    useCrl boolean
    The UseCrl param.
    useOcsp boolean
    The UseOcsp param.
    usernameField CertificateProfileUsernameField
    The UsernameField param.
    ca_certificates Sequence[CertificateProfileCaCertificateArgs]
    The CaCertificates param.
    block_expired_cert bool
    The BlockExpiredCert param.
    block_timeout_cert bool
    The BlockTimeoutCert param.
    block_unauthenticated_cert bool
    The BlockUnauthenticatedCert param.
    block_unknown_cert bool
    The BlockUnknownCert param.
    cert_status_timeout str
    The CertStatusTimeout param.
    crl_receive_timeout str
    The CrlReceiveTimeout param.
    device str
    The Device param.
    domain str
    The Domain param.
    folder str
    The Folder param.
    name str
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    ocsp_receive_timeout str
    The OcspReceiveTimeout param.
    snippet str
    The Snippet param.
    use_crl bool
    The UseCrl param.
    use_ocsp bool
    The UseOcsp param.
    username_field CertificateProfileUsernameFieldArgs
    The UsernameField param.
    caCertificates List<Property Map>
    The CaCertificates param.
    blockExpiredCert Boolean
    The BlockExpiredCert param.
    blockTimeoutCert Boolean
    The BlockTimeoutCert param.
    blockUnauthenticatedCert Boolean
    The BlockUnauthenticatedCert param.
    blockUnknownCert Boolean
    The BlockUnknownCert param.
    certStatusTimeout String
    The CertStatusTimeout param.
    crlReceiveTimeout String
    The CrlReceiveTimeout param.
    device String
    The Device param.
    domain String
    The Domain param.
    folder String
    The Folder param.
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    ocspReceiveTimeout String
    The OcspReceiveTimeout param.
    snippet String
    The Snippet param.
    useCrl Boolean
    The UseCrl param.
    useOcsp Boolean
    The UseOcsp param.
    usernameField Property Map
    The UsernameField param.

    Outputs

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

    Get an existing CertificateProfile 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?: CertificateProfileState, opts?: CustomResourceOptions): CertificateProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            block_expired_cert: Optional[bool] = None,
            block_timeout_cert: Optional[bool] = None,
            block_unauthenticated_cert: Optional[bool] = None,
            block_unknown_cert: Optional[bool] = None,
            ca_certificates: Optional[Sequence[CertificateProfileCaCertificateArgs]] = None,
            cert_status_timeout: Optional[str] = None,
            crl_receive_timeout: Optional[str] = None,
            device: Optional[str] = None,
            domain: Optional[str] = None,
            folder: Optional[str] = None,
            name: Optional[str] = None,
            ocsp_receive_timeout: Optional[str] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None,
            use_crl: Optional[bool] = None,
            use_ocsp: Optional[bool] = None,
            username_field: Optional[CertificateProfileUsernameFieldArgs] = None) -> CertificateProfile
    func GetCertificateProfile(ctx *Context, name string, id IDInput, state *CertificateProfileState, opts ...ResourceOption) (*CertificateProfile, error)
    public static CertificateProfile Get(string name, Input<string> id, CertificateProfileState? state, CustomResourceOptions? opts = null)
    public static CertificateProfile get(String name, Output<String> id, CertificateProfileState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    BlockExpiredCert bool
    The BlockExpiredCert param.
    BlockTimeoutCert bool
    The BlockTimeoutCert param.
    BlockUnauthenticatedCert bool
    The BlockUnauthenticatedCert param.
    BlockUnknownCert bool
    The BlockUnknownCert param.
    CaCertificates List<CertificateProfileCaCertificate>
    The CaCertificates param.
    CertStatusTimeout string
    The CertStatusTimeout param.
    CrlReceiveTimeout string
    The CrlReceiveTimeout param.
    Device string
    The Device param.
    Domain string
    The Domain param.
    Folder string
    The Folder param.
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    OcspReceiveTimeout string
    The OcspReceiveTimeout param.
    Snippet string
    The Snippet param.
    Tfid string
    UseCrl bool
    The UseCrl param.
    UseOcsp bool
    The UseOcsp param.
    UsernameField CertificateProfileUsernameField
    The UsernameField param.
    BlockExpiredCert bool
    The BlockExpiredCert param.
    BlockTimeoutCert bool
    The BlockTimeoutCert param.
    BlockUnauthenticatedCert bool
    The BlockUnauthenticatedCert param.
    BlockUnknownCert bool
    The BlockUnknownCert param.
    CaCertificates []CertificateProfileCaCertificateArgs
    The CaCertificates param.
    CertStatusTimeout string
    The CertStatusTimeout param.
    CrlReceiveTimeout string
    The CrlReceiveTimeout param.
    Device string
    The Device param.
    Domain string
    The Domain param.
    Folder string
    The Folder param.
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    OcspReceiveTimeout string
    The OcspReceiveTimeout param.
    Snippet string
    The Snippet param.
    Tfid string
    UseCrl bool
    The UseCrl param.
    UseOcsp bool
    The UseOcsp param.
    UsernameField CertificateProfileUsernameFieldArgs
    The UsernameField param.
    blockExpiredCert Boolean
    The BlockExpiredCert param.
    blockTimeoutCert Boolean
    The BlockTimeoutCert param.
    blockUnauthenticatedCert Boolean
    The BlockUnauthenticatedCert param.
    blockUnknownCert Boolean
    The BlockUnknownCert param.
    caCertificates List<CertificateProfileCaCertificate>
    The CaCertificates param.
    certStatusTimeout String
    The CertStatusTimeout param.
    crlReceiveTimeout String
    The CrlReceiveTimeout param.
    device String
    The Device param.
    domain String
    The Domain param.
    folder String
    The Folder param.
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    ocspReceiveTimeout String
    The OcspReceiveTimeout param.
    snippet String
    The Snippet param.
    tfid String
    useCrl Boolean
    The UseCrl param.
    useOcsp Boolean
    The UseOcsp param.
    usernameField CertificateProfileUsernameField
    The UsernameField param.
    blockExpiredCert boolean
    The BlockExpiredCert param.
    blockTimeoutCert boolean
    The BlockTimeoutCert param.
    blockUnauthenticatedCert boolean
    The BlockUnauthenticatedCert param.
    blockUnknownCert boolean
    The BlockUnknownCert param.
    caCertificates CertificateProfileCaCertificate[]
    The CaCertificates param.
    certStatusTimeout string
    The CertStatusTimeout param.
    crlReceiveTimeout string
    The CrlReceiveTimeout param.
    device string
    The Device param.
    domain string
    The Domain param.
    folder string
    The Folder param.
    name string
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    ocspReceiveTimeout string
    The OcspReceiveTimeout param.
    snippet string
    The Snippet param.
    tfid string
    useCrl boolean
    The UseCrl param.
    useOcsp boolean
    The UseOcsp param.
    usernameField CertificateProfileUsernameField
    The UsernameField param.
    block_expired_cert bool
    The BlockExpiredCert param.
    block_timeout_cert bool
    The BlockTimeoutCert param.
    block_unauthenticated_cert bool
    The BlockUnauthenticatedCert param.
    block_unknown_cert bool
    The BlockUnknownCert param.
    ca_certificates Sequence[CertificateProfileCaCertificateArgs]
    The CaCertificates param.
    cert_status_timeout str
    The CertStatusTimeout param.
    crl_receive_timeout str
    The CrlReceiveTimeout param.
    device str
    The Device param.
    domain str
    The Domain param.
    folder str
    The Folder param.
    name str
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    ocsp_receive_timeout str
    The OcspReceiveTimeout param.
    snippet str
    The Snippet param.
    tfid str
    use_crl bool
    The UseCrl param.
    use_ocsp bool
    The UseOcsp param.
    username_field CertificateProfileUsernameFieldArgs
    The UsernameField param.
    blockExpiredCert Boolean
    The BlockExpiredCert param.
    blockTimeoutCert Boolean
    The BlockTimeoutCert param.
    blockUnauthenticatedCert Boolean
    The BlockUnauthenticatedCert param.
    blockUnknownCert Boolean
    The BlockUnknownCert param.
    caCertificates List<Property Map>
    The CaCertificates param.
    certStatusTimeout String
    The CertStatusTimeout param.
    crlReceiveTimeout String
    The CrlReceiveTimeout param.
    device String
    The Device param.
    domain String
    The Domain param.
    folder String
    The Folder param.
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
    ocspReceiveTimeout String
    The OcspReceiveTimeout param.
    snippet String
    The Snippet param.
    tfid String
    useCrl Boolean
    The UseCrl param.
    useOcsp Boolean
    The UseOcsp param.
    usernameField Property Map
    The UsernameField param.

    Supporting Types

    CertificateProfileCaCertificate, CertificateProfileCaCertificateArgs

    DefaultOcspUrl string
    The DefaultOcspUrl param.
    Name string
    The Name param.
    OcspVerifyCert string
    The OcspVerifyCert param.
    TemplateName string
    The TemplateName param.
    DefaultOcspUrl string
    The DefaultOcspUrl param.
    Name string
    The Name param.
    OcspVerifyCert string
    The OcspVerifyCert param.
    TemplateName string
    The TemplateName param.
    defaultOcspUrl String
    The DefaultOcspUrl param.
    name String
    The Name param.
    ocspVerifyCert String
    The OcspVerifyCert param.
    templateName String
    The TemplateName param.
    defaultOcspUrl string
    The DefaultOcspUrl param.
    name string
    The Name param.
    ocspVerifyCert string
    The OcspVerifyCert param.
    templateName string
    The TemplateName param.
    default_ocsp_url str
    The DefaultOcspUrl param.
    name str
    The Name param.
    ocsp_verify_cert str
    The OcspVerifyCert param.
    template_name str
    The TemplateName param.
    defaultOcspUrl String
    The DefaultOcspUrl param.
    name String
    The Name param.
    ocspVerifyCert String
    The OcspVerifyCert param.
    templateName String
    The TemplateName param.

    CertificateProfileUsernameField, CertificateProfileUsernameFieldArgs

    Subject string
    The Subject param. String must be one of these: "common-name".
    SubjectAlt string
    The SubjectAlt param. String must be one of these: "email".
    Subject string
    The Subject param. String must be one of these: "common-name".
    SubjectAlt string
    The SubjectAlt param. String must be one of these: "email".
    subject String
    The Subject param. String must be one of these: "common-name".
    subjectAlt String
    The SubjectAlt param. String must be one of these: "email".
    subject string
    The Subject param. String must be one of these: "common-name".
    subjectAlt string
    The SubjectAlt param. String must be one of these: "email".
    subject str
    The Subject param. String must be one of these: "common-name".
    subject_alt str
    The SubjectAlt param. String must be one of these: "email".
    subject String
    The Subject param. String must be one of these: "common-name".
    subjectAlt String
    The SubjectAlt param. String must be one of these: "email".

    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.1.1 published on Friday, May 31, 2024 by Pulumi