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

    ScepProfile resource

    Create ScepProfile Resource

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

    Constructor syntax

    new ScepProfile(name: string, args: ScepProfileArgs, opts?: CustomResourceOptions);
    @overload
    def ScepProfile(resource_name: str,
                    args: ScepProfileArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def ScepProfile(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    algorithm: Optional[ScepProfileAlgorithmArgs] = None,
                    ca_identity_name: Optional[str] = None,
                    subject: Optional[str] = None,
                    scep_url: Optional[str] = None,
                    digest: Optional[str] = None,
                    scep_challenge: Optional[ScepProfileScepChallengeArgs] = None,
                    scep_ca_cert: Optional[str] = None,
                    name: Optional[str] = None,
                    folder: Optional[str] = None,
                    fingerprint: Optional[str] = None,
                    scep_client_cert: Optional[str] = None,
                    device: Optional[str] = None,
                    snippet: Optional[str] = None,
                    certificate_attributes: Optional[ScepProfileCertificateAttributesArgs] = None,
                    use_as_digital_signature: Optional[bool] = None,
                    use_for_key_encipherment: Optional[bool] = None)
    func NewScepProfile(ctx *Context, name string, args ScepProfileArgs, opts ...ResourceOption) (*ScepProfile, error)
    public ScepProfile(string name, ScepProfileArgs args, CustomResourceOptions? opts = null)
    public ScepProfile(String name, ScepProfileArgs args)
    public ScepProfile(String name, ScepProfileArgs args, CustomResourceOptions options)
    
    type: scm:ScepProfile
    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 ScepProfileArgs
    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 ScepProfileArgs
    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 ScepProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ScepProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ScepProfileArgs
    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 scepProfileResource = new Scm.ScepProfile("scepProfileResource", new()
    {
        Algorithm = new Scm.Inputs.ScepProfileAlgorithmArgs
        {
            Rsa = new Scm.Inputs.ScepProfileAlgorithmRsaArgs
            {
                RsaNbits = 0,
            },
        },
        CaIdentityName = "string",
        Subject = "string",
        ScepUrl = "string",
        Digest = "string",
        ScepChallenge = new Scm.Inputs.ScepProfileScepChallengeArgs
        {
            Dynamic = new Scm.Inputs.ScepProfileScepChallengeDynamicArgs
            {
                OtpServerUrl = "string",
                Password = "string",
                Username = "string",
            },
            Fixed = "string",
            None = "string",
        },
        ScepCaCert = "string",
        Name = "string",
        Folder = "string",
        Fingerprint = "string",
        ScepClientCert = "string",
        Device = "string",
        Snippet = "string",
        CertificateAttributes = new Scm.Inputs.ScepProfileCertificateAttributesArgs
        {
            Dnsname = "string",
            Rfc822name = "string",
            UniformResourceIdentifier = "string",
        },
        UseAsDigitalSignature = false,
        UseForKeyEncipherment = false,
    });
    
    example, err := scm.NewScepProfile(ctx, "scepProfileResource", &scm.ScepProfileArgs{
    	Algorithm: &scm.ScepProfileAlgorithmArgs{
    		Rsa: &scm.ScepProfileAlgorithmRsaArgs{
    			RsaNbits: pulumi.Int(0),
    		},
    	},
    	CaIdentityName: pulumi.String("string"),
    	Subject:        pulumi.String("string"),
    	ScepUrl:        pulumi.String("string"),
    	Digest:         pulumi.String("string"),
    	ScepChallenge: &scm.ScepProfileScepChallengeArgs{
    		Dynamic: &scm.ScepProfileScepChallengeDynamicArgs{
    			OtpServerUrl: pulumi.String("string"),
    			Password:     pulumi.String("string"),
    			Username:     pulumi.String("string"),
    		},
    		Fixed: pulumi.String("string"),
    		None:  pulumi.String("string"),
    	},
    	ScepCaCert:     pulumi.String("string"),
    	Name:           pulumi.String("string"),
    	Folder:         pulumi.String("string"),
    	Fingerprint:    pulumi.String("string"),
    	ScepClientCert: pulumi.String("string"),
    	Device:         pulumi.String("string"),
    	Snippet:        pulumi.String("string"),
    	CertificateAttributes: &scm.ScepProfileCertificateAttributesArgs{
    		Dnsname:                   pulumi.String("string"),
    		Rfc822name:                pulumi.String("string"),
    		UniformResourceIdentifier: pulumi.String("string"),
    	},
    	UseAsDigitalSignature: pulumi.Bool(false),
    	UseForKeyEncipherment: pulumi.Bool(false),
    })
    
    var scepProfileResource = new ScepProfile("scepProfileResource", ScepProfileArgs.builder()
        .algorithm(ScepProfileAlgorithmArgs.builder()
            .rsa(ScepProfileAlgorithmRsaArgs.builder()
                .rsaNbits(0)
                .build())
            .build())
        .caIdentityName("string")
        .subject("string")
        .scepUrl("string")
        .digest("string")
        .scepChallenge(ScepProfileScepChallengeArgs.builder()
            .dynamic(ScepProfileScepChallengeDynamicArgs.builder()
                .otpServerUrl("string")
                .password("string")
                .username("string")
                .build())
            .fixed("string")
            .none("string")
            .build())
        .scepCaCert("string")
        .name("string")
        .folder("string")
        .fingerprint("string")
        .scepClientCert("string")
        .device("string")
        .snippet("string")
        .certificateAttributes(ScepProfileCertificateAttributesArgs.builder()
            .dnsname("string")
            .rfc822name("string")
            .uniformResourceIdentifier("string")
            .build())
        .useAsDigitalSignature(false)
        .useForKeyEncipherment(false)
        .build());
    
    scep_profile_resource = scm.ScepProfile("scepProfileResource",
        algorithm={
            "rsa": {
                "rsa_nbits": 0,
            },
        },
        ca_identity_name="string",
        subject="string",
        scep_url="string",
        digest="string",
        scep_challenge={
            "dynamic": {
                "otp_server_url": "string",
                "password": "string",
                "username": "string",
            },
            "fixed": "string",
            "none": "string",
        },
        scep_ca_cert="string",
        name="string",
        folder="string",
        fingerprint="string",
        scep_client_cert="string",
        device="string",
        snippet="string",
        certificate_attributes={
            "dnsname": "string",
            "rfc822name": "string",
            "uniform_resource_identifier": "string",
        },
        use_as_digital_signature=False,
        use_for_key_encipherment=False)
    
    const scepProfileResource = new scm.ScepProfile("scepProfileResource", {
        algorithm: {
            rsa: {
                rsaNbits: 0,
            },
        },
        caIdentityName: "string",
        subject: "string",
        scepUrl: "string",
        digest: "string",
        scepChallenge: {
            dynamic: {
                otpServerUrl: "string",
                password: "string",
                username: "string",
            },
            fixed: "string",
            none: "string",
        },
        scepCaCert: "string",
        name: "string",
        folder: "string",
        fingerprint: "string",
        scepClientCert: "string",
        device: "string",
        snippet: "string",
        certificateAttributes: {
            dnsname: "string",
            rfc822name: "string",
            uniformResourceIdentifier: "string",
        },
        useAsDigitalSignature: false,
        useForKeyEncipherment: false,
    });
    
    type: scm:ScepProfile
    properties:
        algorithm:
            rsa:
                rsaNbits: 0
        caIdentityName: string
        certificateAttributes:
            dnsname: string
            rfc822name: string
            uniformResourceIdentifier: string
        device: string
        digest: string
        fingerprint: string
        folder: string
        name: string
        scepCaCert: string
        scepChallenge:
            dynamic:
                otpServerUrl: string
                password: string
                username: string
            fixed: string
            none: string
        scepClientCert: string
        scepUrl: string
        snippet: string
        subject: string
        useAsDigitalSignature: false
        useForKeyEncipherment: false
    

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

    Algorithm ScepProfileAlgorithm
    Algorithm
    CaIdentityName string
    Certificate Authority identity
    Digest string
    Digest for CSR
    ScepChallenge ScepProfileScepChallenge
    One Time Password challenge
    ScepUrl string
    SCEP server URL
    Subject string
    Subject
    CertificateAttributes ScepProfileCertificateAttributes
    Subject Alternative name type
    Device string
    The device in which the resource is defined
    Fingerprint string
    CA certificate fingerprint
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the SCEP profile
    ScepCaCert string
    SCEP server CA certificate
    ScepClientCert string
    SCEP client ceertificate
    Snippet string
    The snippet in which the resource is defined
    UseAsDigitalSignature bool
    Use as digital signature?
    UseForKeyEncipherment bool
    Use for key encipherment?
    Algorithm ScepProfileAlgorithmArgs
    Algorithm
    CaIdentityName string
    Certificate Authority identity
    Digest string
    Digest for CSR
    ScepChallenge ScepProfileScepChallengeArgs
    One Time Password challenge
    ScepUrl string
    SCEP server URL
    Subject string
    Subject
    CertificateAttributes ScepProfileCertificateAttributesArgs
    Subject Alternative name type
    Device string
    The device in which the resource is defined
    Fingerprint string
    CA certificate fingerprint
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the SCEP profile
    ScepCaCert string
    SCEP server CA certificate
    ScepClientCert string
    SCEP client ceertificate
    Snippet string
    The snippet in which the resource is defined
    UseAsDigitalSignature bool
    Use as digital signature?
    UseForKeyEncipherment bool
    Use for key encipherment?
    algorithm ScepProfileAlgorithm
    Algorithm
    caIdentityName String
    Certificate Authority identity
    digest String
    Digest for CSR
    scepChallenge ScepProfileScepChallenge
    One Time Password challenge
    scepUrl String
    SCEP server URL
    subject String
    Subject
    certificateAttributes ScepProfileCertificateAttributes
    Subject Alternative name type
    device String
    The device in which the resource is defined
    fingerprint String
    CA certificate fingerprint
    folder String
    The folder in which the resource is defined
    name String
    The name of the SCEP profile
    scepCaCert String
    SCEP server CA certificate
    scepClientCert String
    SCEP client ceertificate
    snippet String
    The snippet in which the resource is defined
    useAsDigitalSignature Boolean
    Use as digital signature?
    useForKeyEncipherment Boolean
    Use for key encipherment?
    algorithm ScepProfileAlgorithm
    Algorithm
    caIdentityName string
    Certificate Authority identity
    digest string
    Digest for CSR
    scepChallenge ScepProfileScepChallenge
    One Time Password challenge
    scepUrl string
    SCEP server URL
    subject string
    Subject
    certificateAttributes ScepProfileCertificateAttributes
    Subject Alternative name type
    device string
    The device in which the resource is defined
    fingerprint string
    CA certificate fingerprint
    folder string
    The folder in which the resource is defined
    name string
    The name of the SCEP profile
    scepCaCert string
    SCEP server CA certificate
    scepClientCert string
    SCEP client ceertificate
    snippet string
    The snippet in which the resource is defined
    useAsDigitalSignature boolean
    Use as digital signature?
    useForKeyEncipherment boolean
    Use for key encipherment?
    algorithm ScepProfileAlgorithmArgs
    Algorithm
    ca_identity_name str
    Certificate Authority identity
    digest str
    Digest for CSR
    scep_challenge ScepProfileScepChallengeArgs
    One Time Password challenge
    scep_url str
    SCEP server URL
    subject str
    Subject
    certificate_attributes ScepProfileCertificateAttributesArgs
    Subject Alternative name type
    device str
    The device in which the resource is defined
    fingerprint str
    CA certificate fingerprint
    folder str
    The folder in which the resource is defined
    name str
    The name of the SCEP profile
    scep_ca_cert str
    SCEP server CA certificate
    scep_client_cert str
    SCEP client ceertificate
    snippet str
    The snippet in which the resource is defined
    use_as_digital_signature bool
    Use as digital signature?
    use_for_key_encipherment bool
    Use for key encipherment?
    algorithm Property Map
    Algorithm
    caIdentityName String
    Certificate Authority identity
    digest String
    Digest for CSR
    scepChallenge Property Map
    One Time Password challenge
    scepUrl String
    SCEP server URL
    subject String
    Subject
    certificateAttributes Property Map
    Subject Alternative name type
    device String
    The device in which the resource is defined
    fingerprint String
    CA certificate fingerprint
    folder String
    The folder in which the resource is defined
    name String
    The name of the SCEP profile
    scepCaCert String
    SCEP server CA certificate
    scepClientCert String
    SCEP client ceertificate
    snippet String
    The snippet in which the resource is defined
    useAsDigitalSignature Boolean
    Use as digital signature?
    useForKeyEncipherment Boolean
    Use for key encipherment?

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ScepProfile resource produces the following output properties:

    EncryptedValues Dictionary<string, string>
    Map of sensitive values returned from the API.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    EncryptedValues map[string]string
    Map of sensitive values returned from the API.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    encryptedValues Map<String,String>
    Map of sensitive values returned from the API.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    encryptedValues {[key: string]: string}
    Map of sensitive values returned from the API.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    encrypted_values Mapping[str, str]
    Map of sensitive values returned from the API.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    encryptedValues Map<String>
    Map of sensitive values returned from the API.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    Look up Existing ScepProfile Resource

    Get an existing ScepProfile 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?: ScepProfileState, opts?: CustomResourceOptions): ScepProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            algorithm: Optional[ScepProfileAlgorithmArgs] = None,
            ca_identity_name: Optional[str] = None,
            certificate_attributes: Optional[ScepProfileCertificateAttributesArgs] = None,
            device: Optional[str] = None,
            digest: Optional[str] = None,
            encrypted_values: Optional[Mapping[str, str]] = None,
            fingerprint: Optional[str] = None,
            folder: Optional[str] = None,
            name: Optional[str] = None,
            scep_ca_cert: Optional[str] = None,
            scep_challenge: Optional[ScepProfileScepChallengeArgs] = None,
            scep_client_cert: Optional[str] = None,
            scep_url: Optional[str] = None,
            snippet: Optional[str] = None,
            subject: Optional[str] = None,
            tfid: Optional[str] = None,
            use_as_digital_signature: Optional[bool] = None,
            use_for_key_encipherment: Optional[bool] = None) -> ScepProfile
    func GetScepProfile(ctx *Context, name string, id IDInput, state *ScepProfileState, opts ...ResourceOption) (*ScepProfile, error)
    public static ScepProfile Get(string name, Input<string> id, ScepProfileState? state, CustomResourceOptions? opts = null)
    public static ScepProfile get(String name, Output<String> id, ScepProfileState state, CustomResourceOptions options)
    resources:  _:    type: scm:ScepProfile    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:
    Algorithm ScepProfileAlgorithm
    Algorithm
    CaIdentityName string
    Certificate Authority identity
    CertificateAttributes ScepProfileCertificateAttributes
    Subject Alternative name type
    Device string
    The device in which the resource is defined
    Digest string
    Digest for CSR
    EncryptedValues Dictionary<string, string>
    Map of sensitive values returned from the API.
    Fingerprint string
    CA certificate fingerprint
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the SCEP profile
    ScepCaCert string
    SCEP server CA certificate
    ScepChallenge ScepProfileScepChallenge
    One Time Password challenge
    ScepClientCert string
    SCEP client ceertificate
    ScepUrl string
    SCEP server URL
    Snippet string
    The snippet in which the resource is defined
    Subject string
    Subject
    Tfid string
    UseAsDigitalSignature bool
    Use as digital signature?
    UseForKeyEncipherment bool
    Use for key encipherment?
    Algorithm ScepProfileAlgorithmArgs
    Algorithm
    CaIdentityName string
    Certificate Authority identity
    CertificateAttributes ScepProfileCertificateAttributesArgs
    Subject Alternative name type
    Device string
    The device in which the resource is defined
    Digest string
    Digest for CSR
    EncryptedValues map[string]string
    Map of sensitive values returned from the API.
    Fingerprint string
    CA certificate fingerprint
    Folder string
    The folder in which the resource is defined
    Name string
    The name of the SCEP profile
    ScepCaCert string
    SCEP server CA certificate
    ScepChallenge ScepProfileScepChallengeArgs
    One Time Password challenge
    ScepClientCert string
    SCEP client ceertificate
    ScepUrl string
    SCEP server URL
    Snippet string
    The snippet in which the resource is defined
    Subject string
    Subject
    Tfid string
    UseAsDigitalSignature bool
    Use as digital signature?
    UseForKeyEncipherment bool
    Use for key encipherment?
    algorithm ScepProfileAlgorithm
    Algorithm
    caIdentityName String
    Certificate Authority identity
    certificateAttributes ScepProfileCertificateAttributes
    Subject Alternative name type
    device String
    The device in which the resource is defined
    digest String
    Digest for CSR
    encryptedValues Map<String,String>
    Map of sensitive values returned from the API.
    fingerprint String
    CA certificate fingerprint
    folder String
    The folder in which the resource is defined
    name String
    The name of the SCEP profile
    scepCaCert String
    SCEP server CA certificate
    scepChallenge ScepProfileScepChallenge
    One Time Password challenge
    scepClientCert String
    SCEP client ceertificate
    scepUrl String
    SCEP server URL
    snippet String
    The snippet in which the resource is defined
    subject String
    Subject
    tfid String
    useAsDigitalSignature Boolean
    Use as digital signature?
    useForKeyEncipherment Boolean
    Use for key encipherment?
    algorithm ScepProfileAlgorithm
    Algorithm
    caIdentityName string
    Certificate Authority identity
    certificateAttributes ScepProfileCertificateAttributes
    Subject Alternative name type
    device string
    The device in which the resource is defined
    digest string
    Digest for CSR
    encryptedValues {[key: string]: string}
    Map of sensitive values returned from the API.
    fingerprint string
    CA certificate fingerprint
    folder string
    The folder in which the resource is defined
    name string
    The name of the SCEP profile
    scepCaCert string
    SCEP server CA certificate
    scepChallenge ScepProfileScepChallenge
    One Time Password challenge
    scepClientCert string
    SCEP client ceertificate
    scepUrl string
    SCEP server URL
    snippet string
    The snippet in which the resource is defined
    subject string
    Subject
    tfid string
    useAsDigitalSignature boolean
    Use as digital signature?
    useForKeyEncipherment boolean
    Use for key encipherment?
    algorithm ScepProfileAlgorithmArgs
    Algorithm
    ca_identity_name str
    Certificate Authority identity
    certificate_attributes ScepProfileCertificateAttributesArgs
    Subject Alternative name type
    device str
    The device in which the resource is defined
    digest str
    Digest for CSR
    encrypted_values Mapping[str, str]
    Map of sensitive values returned from the API.
    fingerprint str
    CA certificate fingerprint
    folder str
    The folder in which the resource is defined
    name str
    The name of the SCEP profile
    scep_ca_cert str
    SCEP server CA certificate
    scep_challenge ScepProfileScepChallengeArgs
    One Time Password challenge
    scep_client_cert str
    SCEP client ceertificate
    scep_url str
    SCEP server URL
    snippet str
    The snippet in which the resource is defined
    subject str
    Subject
    tfid str
    use_as_digital_signature bool
    Use as digital signature?
    use_for_key_encipherment bool
    Use for key encipherment?
    algorithm Property Map
    Algorithm
    caIdentityName String
    Certificate Authority identity
    certificateAttributes Property Map
    Subject Alternative name type
    device String
    The device in which the resource is defined
    digest String
    Digest for CSR
    encryptedValues Map<String>
    Map of sensitive values returned from the API.
    fingerprint String
    CA certificate fingerprint
    folder String
    The folder in which the resource is defined
    name String
    The name of the SCEP profile
    scepCaCert String
    SCEP server CA certificate
    scepChallenge Property Map
    One Time Password challenge
    scepClientCert String
    SCEP client ceertificate
    scepUrl String
    SCEP server URL
    snippet String
    The snippet in which the resource is defined
    subject String
    Subject
    tfid String
    useAsDigitalSignature Boolean
    Use as digital signature?
    useForKeyEncipherment Boolean
    Use for key encipherment?

    Supporting Types

    ScepProfileAlgorithm, ScepProfileAlgorithmArgs

    Rsa ScepProfileAlgorithmRsa
    Key length (bits)
    Rsa ScepProfileAlgorithmRsa
    Key length (bits)
    rsa ScepProfileAlgorithmRsa
    Key length (bits)
    rsa ScepProfileAlgorithmRsa
    Key length (bits)
    rsa ScepProfileAlgorithmRsa
    Key length (bits)
    rsa Property Map
    Key length (bits)

    ScepProfileAlgorithmRsa, ScepProfileAlgorithmRsaArgs

    RsaNbits int
    Rsa nbits
    RsaNbits int
    Rsa nbits
    rsaNbits Integer
    Rsa nbits
    rsaNbits number
    Rsa nbits
    rsa_nbits int
    Rsa nbits
    rsaNbits Number
    Rsa nbits

    ScepProfileCertificateAttributes, ScepProfileCertificateAttributesArgs

    Dnsname string
    Dnsname
    Rfc822name string
    Rfc822name
    UniformResourceIdentifier string
    Uniform resource identifier
    Dnsname string
    Dnsname
    Rfc822name string
    Rfc822name
    UniformResourceIdentifier string
    Uniform resource identifier
    dnsname String
    Dnsname
    rfc822name String
    Rfc822name
    uniformResourceIdentifier String
    Uniform resource identifier
    dnsname string
    Dnsname
    rfc822name string
    Rfc822name
    uniformResourceIdentifier string
    Uniform resource identifier
    dnsname str
    Dnsname
    rfc822name str
    Rfc822name
    uniform_resource_identifier str
    Uniform resource identifier
    dnsname String
    Dnsname
    rfc822name String
    Rfc822name
    uniformResourceIdentifier String
    Uniform resource identifier

    ScepProfileScepChallenge, ScepProfileScepChallengeArgs

    Dynamic ScepProfileScepChallengeDynamic
    Dynamic
    Fixed string
    Challenge to use for SCEP server on mobile clients
    None string
    No OTP
    Dynamic ScepProfileScepChallengeDynamic
    Dynamic
    Fixed string
    Challenge to use for SCEP server on mobile clients
    None string
    No OTP
    dynamic ScepProfileScepChallengeDynamic
    Dynamic
    fixed String
    Challenge to use for SCEP server on mobile clients
    none String
    No OTP
    dynamic ScepProfileScepChallengeDynamic
    Dynamic
    fixed string
    Challenge to use for SCEP server on mobile clients
    none string
    No OTP
    dynamic ScepProfileScepChallengeDynamic
    Dynamic
    fixed str
    Challenge to use for SCEP server on mobile clients
    none str
    No OTP
    dynamic Property Map
    Dynamic
    fixed String
    Challenge to use for SCEP server on mobile clients
    none String
    No OTP

    ScepProfileScepChallengeDynamic, ScepProfileScepChallengeDynamicArgs

    OtpServerUrl string
    OTP server URL
    Password string
    OTP password
    Username string
    OTP username
    OtpServerUrl string
    OTP server URL
    Password string
    OTP password
    Username string
    OTP username
    otpServerUrl String
    OTP server URL
    password String
    OTP password
    username String
    OTP username
    otpServerUrl string
    OTP server URL
    password string
    OTP password
    username string
    OTP username
    otp_server_url str
    OTP server URL
    password str
    OTP password
    username str
    OTP username
    otpServerUrl String
    OTP server URL
    password String
    OTP password
    username String
    OTP username

    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