Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi
scm.ScepProfile
Explore with Pulumi AI
Retrieves a config item.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const example = new scm.ScepProfile("example", {});
import pulumi
import pulumi_scm as scm
example = scm.ScepProfile("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.NewScepProfile(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.ScepProfile("example");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.ScepProfile;
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 ScepProfile("example");
}
}
resources:
example:
type: scm:ScepProfile
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,
digest: Optional[str] = None,
ca_identity_name: Optional[str] = None,
scep_url: Optional[str] = None,
scep_ca_cert: Optional[str] = None,
device: Optional[str] = None,
fingerprint: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
algorithm: Optional[ScepProfileAlgorithmArgs] = None,
scep_challenge: Optional[ScepProfileScepChallengeArgs] = None,
scep_client_cert: Optional[str] = None,
certificate_attributes: Optional[ScepProfileCertificateAttributesArgs] = None,
snippet: Optional[str] = None,
subject: Optional[str] = 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()
{
Digest = "string",
CaIdentityName = "string",
ScepUrl = "string",
ScepCaCert = "string",
Device = "string",
Fingerprint = "string",
Folder = "string",
Name = "string",
Algorithm = new Scm.Inputs.ScepProfileAlgorithmArgs
{
Rsa = new Scm.Inputs.ScepProfileAlgorithmRsaArgs
{
RsaNbits = "string",
},
},
ScepChallenge = new Scm.Inputs.ScepProfileScepChallengeArgs
{
DynamicChallenge = new Scm.Inputs.ScepProfileScepChallengeDynamicChallengeArgs
{
OtpServerUrl = "string",
Password = "string",
Username = "string",
},
Fixed = "string",
None = "string",
},
ScepClientCert = "string",
CertificateAttributes = new Scm.Inputs.ScepProfileCertificateAttributesArgs
{
Dnsname = "string",
Rfc822name = "string",
UniformResourceIdentifier = "string",
},
Snippet = "string",
Subject = "string",
UseAsDigitalSignature = false,
UseForKeyEncipherment = false,
});
example, err := scm.NewScepProfile(ctx, "scepProfileResource", &scm.ScepProfileArgs{
Digest: pulumi.String("string"),
CaIdentityName: pulumi.String("string"),
ScepUrl: pulumi.String("string"),
ScepCaCert: pulumi.String("string"),
Device: pulumi.String("string"),
Fingerprint: pulumi.String("string"),
Folder: pulumi.String("string"),
Name: pulumi.String("string"),
Algorithm: &scm.ScepProfileAlgorithmArgs{
Rsa: &scm.ScepProfileAlgorithmRsaArgs{
RsaNbits: pulumi.String("string"),
},
},
ScepChallenge: &scm.ScepProfileScepChallengeArgs{
DynamicChallenge: &scm.ScepProfileScepChallengeDynamicChallengeArgs{
OtpServerUrl: pulumi.String("string"),
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
Fixed: pulumi.String("string"),
None: pulumi.String("string"),
},
ScepClientCert: pulumi.String("string"),
CertificateAttributes: &scm.ScepProfileCertificateAttributesArgs{
Dnsname: pulumi.String("string"),
Rfc822name: pulumi.String("string"),
UniformResourceIdentifier: pulumi.String("string"),
},
Snippet: pulumi.String("string"),
Subject: pulumi.String("string"),
UseAsDigitalSignature: pulumi.Bool(false),
UseForKeyEncipherment: pulumi.Bool(false),
})
var scepProfileResource = new ScepProfile("scepProfileResource", ScepProfileArgs.builder()
.digest("string")
.caIdentityName("string")
.scepUrl("string")
.scepCaCert("string")
.device("string")
.fingerprint("string")
.folder("string")
.name("string")
.algorithm(ScepProfileAlgorithmArgs.builder()
.rsa(ScepProfileAlgorithmRsaArgs.builder()
.rsaNbits("string")
.build())
.build())
.scepChallenge(ScepProfileScepChallengeArgs.builder()
.dynamicChallenge(ScepProfileScepChallengeDynamicChallengeArgs.builder()
.otpServerUrl("string")
.password("string")
.username("string")
.build())
.fixed("string")
.none("string")
.build())
.scepClientCert("string")
.certificateAttributes(ScepProfileCertificateAttributesArgs.builder()
.dnsname("string")
.rfc822name("string")
.uniformResourceIdentifier("string")
.build())
.snippet("string")
.subject("string")
.useAsDigitalSignature(false)
.useForKeyEncipherment(false)
.build());
scep_profile_resource = scm.ScepProfile("scepProfileResource",
digest="string",
ca_identity_name="string",
scep_url="string",
scep_ca_cert="string",
device="string",
fingerprint="string",
folder="string",
name="string",
algorithm=scm.ScepProfileAlgorithmArgs(
rsa=scm.ScepProfileAlgorithmRsaArgs(
rsa_nbits="string",
),
),
scep_challenge=scm.ScepProfileScepChallengeArgs(
dynamic_challenge=scm.ScepProfileScepChallengeDynamicChallengeArgs(
otp_server_url="string",
password="string",
username="string",
),
fixed="string",
none="string",
),
scep_client_cert="string",
certificate_attributes=scm.ScepProfileCertificateAttributesArgs(
dnsname="string",
rfc822name="string",
uniform_resource_identifier="string",
),
snippet="string",
subject="string",
use_as_digital_signature=False,
use_for_key_encipherment=False)
const scepProfileResource = new scm.ScepProfile("scepProfileResource", {
digest: "string",
caIdentityName: "string",
scepUrl: "string",
scepCaCert: "string",
device: "string",
fingerprint: "string",
folder: "string",
name: "string",
algorithm: {
rsa: {
rsaNbits: "string",
},
},
scepChallenge: {
dynamicChallenge: {
otpServerUrl: "string",
password: "string",
username: "string",
},
fixed: "string",
none: "string",
},
scepClientCert: "string",
certificateAttributes: {
dnsname: "string",
rfc822name: "string",
uniformResourceIdentifier: "string",
},
snippet: "string",
subject: "string",
useAsDigitalSignature: false,
useForKeyEncipherment: false,
});
type: scm:ScepProfile
properties:
algorithm:
rsa:
rsaNbits: string
caIdentityName: string
certificateAttributes:
dnsname: string
rfc822name: string
uniformResourceIdentifier: string
device: string
digest: string
fingerprint: string
folder: string
name: string
scepCaCert: string
scepChallenge:
dynamicChallenge:
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
The ScepProfile resource accepts the following input properties:
- Ca
Identity stringName - The CaIdentityName param.
- Digest string
- The Digest param.
- Scep
Url string - The ScepUrl param.
- Algorithm
Scep
Profile Algorithm - The Algorithm param.
- Certificate
Attributes ScepProfile Certificate Attributes - The CertificateAttributes param.
- Device string
- The Device param.
- Fingerprint string
- The Fingerprint param.
- Folder string
- The Folder param.
- Name string
- alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
- Scep
Ca stringCert - The ScepCaCert param.
- Scep
Challenge ScepProfile Scep Challenge - The ScepChallenge param.
- Scep
Client stringCert - The ScepClientCert param.
- Snippet string
- The Snippet param.
- Subject string
- The Subject param.
- Use
As boolDigital Signature - The UseAsDigitalSignature param.
- Use
For boolKey Encipherment - The UseForKeyEncipherment param.
- Ca
Identity stringName - The CaIdentityName param.
- Digest string
- The Digest param.
- Scep
Url string - The ScepUrl param.
- Algorithm
Scep
Profile Algorithm Args - The Algorithm param.
- Certificate
Attributes ScepProfile Certificate Attributes Args - The CertificateAttributes param.
- Device string
- The Device param.
- Fingerprint string
- The Fingerprint param.
- Folder string
- The Folder param.
- Name string
- alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
- Scep
Ca stringCert - The ScepCaCert param.
- Scep
Challenge ScepProfile Scep Challenge Args - The ScepChallenge param.
- Scep
Client stringCert - The ScepClientCert param.
- Snippet string
- The Snippet param.
- Subject string
- The Subject param.
- Use
As boolDigital Signature - The UseAsDigitalSignature param.
- Use
For boolKey Encipherment - The UseForKeyEncipherment param.
- ca
Identity StringName - The CaIdentityName param.
- digest String
- The Digest param.
- scep
Url String - The ScepUrl param.
- algorithm
Scep
Profile Algorithm - The Algorithm param.
- certificate
Attributes ScepProfile Certificate Attributes - The CertificateAttributes param.
- device String
- The Device param.
- fingerprint String
- The Fingerprint param.
- folder String
- The Folder param.
- name String
- alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
- scep
Ca StringCert - The ScepCaCert param.
- scep
Challenge ScepProfile Scep Challenge - The ScepChallenge param.
- scep
Client StringCert - The ScepClientCert param.
- snippet String
- The Snippet param.
- subject String
- The Subject param.
- use
As BooleanDigital Signature - The UseAsDigitalSignature param.
- use
For BooleanKey Encipherment - The UseForKeyEncipherment param.
- ca
Identity stringName - The CaIdentityName param.
- digest string
- The Digest param.
- scep
Url string - The ScepUrl param.
- algorithm
Scep
Profile Algorithm - The Algorithm param.
- certificate
Attributes ScepProfile Certificate Attributes - The CertificateAttributes param.
- device string
- The Device param.
- fingerprint string
- The Fingerprint param.
- folder string
- The Folder param.
- name string
- alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
- scep
Ca stringCert - The ScepCaCert param.
- scep
Challenge ScepProfile Scep Challenge - The ScepChallenge param.
- scep
Client stringCert - The ScepClientCert param.
- snippet string
- The Snippet param.
- subject string
- The Subject param.
- use
As booleanDigital Signature - The UseAsDigitalSignature param.
- use
For booleanKey Encipherment - The UseForKeyEncipherment param.
- ca_
identity_ strname - The CaIdentityName param.
- digest str
- The Digest param.
- scep_
url str - The ScepUrl param.
- algorithm
Scep
Profile Algorithm Args - The Algorithm param.
- certificate_
attributes ScepProfile Certificate Attributes Args - The CertificateAttributes param.
- device str
- The Device param.
- fingerprint str
- The Fingerprint param.
- folder str
- The Folder param.
- name str
- alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
- scep_
ca_ strcert - The ScepCaCert param.
- scep_
challenge ScepProfile Scep Challenge Args - The ScepChallenge param.
- scep_
client_ strcert - The ScepClientCert param.
- snippet str
- The Snippet param.
- subject str
- The Subject param.
- use_
as_ booldigital_ signature - The UseAsDigitalSignature param.
- use_
for_ boolkey_ encipherment - The UseForKeyEncipherment param.
- ca
Identity StringName - The CaIdentityName param.
- digest String
- The Digest param.
- scep
Url String - The ScepUrl param.
- algorithm Property Map
- The Algorithm param.
- certificate
Attributes Property Map - The CertificateAttributes param.
- device String
- The Device param.
- fingerprint String
- The Fingerprint param.
- folder String
- The Folder param.
- name String
- alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
- scep
Ca StringCert - The ScepCaCert param.
- scep
Challenge Property Map - The ScepChallenge param.
- scep
Client StringCert - The ScepClientCert param.
- snippet String
- The Snippet param.
- subject String
- The Subject param.
- use
As BooleanDigital Signature - The UseAsDigitalSignature param.
- use
For BooleanKey Encipherment - The UseForKeyEncipherment param.
Outputs
All input properties are implicitly available as output properties. Additionally, the ScepProfile resource produces the following output properties:
- Encrypted
Values Dictionary<string, string> - (Internal use) Encrypted values returned from the API.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- Encrypted
Values map[string]string - (Internal use) Encrypted values returned from the API.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- encrypted
Values Map<String,String> - (Internal use) Encrypted values returned from the API.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- encrypted
Values {[key: string]: string} - (Internal use) Encrypted values returned from the API.
- id string
- The provider-assigned unique ID for this managed resource.
- tfid string
- encrypted_
values Mapping[str, str] - (Internal use) Encrypted values returned from the API.
- id str
- The provider-assigned unique ID for this managed resource.
- tfid str
- encrypted
Values Map<String> - (Internal use) Encrypted 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)
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.
- Algorithm
Scep
Profile Algorithm - The Algorithm param.
- Ca
Identity stringName - The CaIdentityName param.
- Certificate
Attributes ScepProfile Certificate Attributes - The CertificateAttributes param.
- Device string
- The Device param.
- Digest string
- The Digest param.
- Encrypted
Values Dictionary<string, string> - (Internal use) Encrypted values returned from the API.
- Fingerprint string
- The Fingerprint param.
- Folder string
- The Folder param.
- Name string
- alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
- Scep
Ca stringCert - The ScepCaCert param.
- Scep
Challenge ScepProfile Scep Challenge - The ScepChallenge param.
- Scep
Client stringCert - The ScepClientCert param.
- Scep
Url string - The ScepUrl param.
- Snippet string
- The Snippet param.
- Subject string
- The Subject param.
- Tfid string
- Use
As boolDigital Signature - The UseAsDigitalSignature param.
- Use
For boolKey Encipherment - The UseForKeyEncipherment param.
- Algorithm
Scep
Profile Algorithm Args - The Algorithm param.
- Ca
Identity stringName - The CaIdentityName param.
- Certificate
Attributes ScepProfile Certificate Attributes Args - The CertificateAttributes param.
- Device string
- The Device param.
- Digest string
- The Digest param.
- Encrypted
Values map[string]string - (Internal use) Encrypted values returned from the API.
- Fingerprint string
- The Fingerprint param.
- Folder string
- The Folder param.
- Name string
- alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
- Scep
Ca stringCert - The ScepCaCert param.
- Scep
Challenge ScepProfile Scep Challenge Args - The ScepChallenge param.
- Scep
Client stringCert - The ScepClientCert param.
- Scep
Url string - The ScepUrl param.
- Snippet string
- The Snippet param.
- Subject string
- The Subject param.
- Tfid string
- Use
As boolDigital Signature - The UseAsDigitalSignature param.
- Use
For boolKey Encipherment - The UseForKeyEncipherment param.
- algorithm
Scep
Profile Algorithm - The Algorithm param.
- ca
Identity StringName - The CaIdentityName param.
- certificate
Attributes ScepProfile Certificate Attributes - The CertificateAttributes param.
- device String
- The Device param.
- digest String
- The Digest param.
- encrypted
Values Map<String,String> - (Internal use) Encrypted values returned from the API.
- fingerprint String
- The Fingerprint param.
- folder String
- The Folder param.
- name String
- alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
- scep
Ca StringCert - The ScepCaCert param.
- scep
Challenge ScepProfile Scep Challenge - The ScepChallenge param.
- scep
Client StringCert - The ScepClientCert param.
- scep
Url String - The ScepUrl param.
- snippet String
- The Snippet param.
- subject String
- The Subject param.
- tfid String
- use
As BooleanDigital Signature - The UseAsDigitalSignature param.
- use
For BooleanKey Encipherment - The UseForKeyEncipherment param.
- algorithm
Scep
Profile Algorithm - The Algorithm param.
- ca
Identity stringName - The CaIdentityName param.
- certificate
Attributes ScepProfile Certificate Attributes - The CertificateAttributes param.
- device string
- The Device param.
- digest string
- The Digest param.
- encrypted
Values {[key: string]: string} - (Internal use) Encrypted values returned from the API.
- fingerprint string
- The Fingerprint param.
- folder string
- The Folder param.
- name string
- alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
- scep
Ca stringCert - The ScepCaCert param.
- scep
Challenge ScepProfile Scep Challenge - The ScepChallenge param.
- scep
Client stringCert - The ScepClientCert param.
- scep
Url string - The ScepUrl param.
- snippet string
- The Snippet param.
- subject string
- The Subject param.
- tfid string
- use
As booleanDigital Signature - The UseAsDigitalSignature param.
- use
For booleanKey Encipherment - The UseForKeyEncipherment param.
- algorithm
Scep
Profile Algorithm Args - The Algorithm param.
- ca_
identity_ strname - The CaIdentityName param.
- certificate_
attributes ScepProfile Certificate Attributes Args - The CertificateAttributes param.
- device str
- The Device param.
- digest str
- The Digest param.
- encrypted_
values Mapping[str, str] - (Internal use) Encrypted values returned from the API.
- fingerprint str
- The Fingerprint param.
- folder str
- The Folder param.
- name str
- alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
- scep_
ca_ strcert - The ScepCaCert param.
- scep_
challenge ScepProfile Scep Challenge Args - The ScepChallenge param.
- scep_
client_ strcert - The ScepClientCert param.
- scep_
url str - The ScepUrl param.
- snippet str
- The Snippet param.
- subject str
- The Subject param.
- tfid str
- use_
as_ booldigital_ signature - The UseAsDigitalSignature param.
- use_
for_ boolkey_ encipherment - The UseForKeyEncipherment param.
- algorithm Property Map
- The Algorithm param.
- ca
Identity StringName - The CaIdentityName param.
- certificate
Attributes Property Map - The CertificateAttributes param.
- device String
- The Device param.
- digest String
- The Digest param.
- encrypted
Values Map<String> - (Internal use) Encrypted values returned from the API.
- fingerprint String
- The Fingerprint param.
- folder String
- The Folder param.
- name String
- alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 31 characters.
- scep
Ca StringCert - The ScepCaCert param.
- scep
Challenge Property Map - The ScepChallenge param.
- scep
Client StringCert - The ScepClientCert param.
- scep
Url String - The ScepUrl param.
- snippet String
- The Snippet param.
- subject String
- The Subject param.
- tfid String
- use
As BooleanDigital Signature - The UseAsDigitalSignature param.
- use
For BooleanKey Encipherment - The UseForKeyEncipherment param.
Supporting Types
ScepProfileAlgorithm, ScepProfileAlgorithmArgs
- Rsa
Scep
Profile Algorithm Rsa - The Rsa param.
- Rsa
Scep
Profile Algorithm Rsa - The Rsa param.
- rsa
Scep
Profile Algorithm Rsa - The Rsa param.
- rsa
Scep
Profile Algorithm Rsa - The Rsa param.
- rsa
Scep
Profile Algorithm Rsa - The Rsa param.
- rsa Property Map
- The Rsa param.
ScepProfileAlgorithmRsa, ScepProfileAlgorithmRsaArgs
- Rsa
Nbits string - The RsaNbits param.
- Rsa
Nbits string - The RsaNbits param.
- rsa
Nbits String - The RsaNbits param.
- rsa
Nbits string - The RsaNbits param.
- rsa_
nbits str - The RsaNbits param.
- rsa
Nbits String - The RsaNbits param.
ScepProfileCertificateAttributes, ScepProfileCertificateAttributesArgs
- Dnsname string
- The Dnsname param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- Rfc822name string
- The Rfc822name param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- Uniform
Resource stringIdentifier - The UniformResourceIdentifier param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- Dnsname string
- The Dnsname param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- Rfc822name string
- The Rfc822name param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- Uniform
Resource stringIdentifier - The UniformResourceIdentifier param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- dnsname String
- The Dnsname param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- rfc822name String
- The Rfc822name param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- uniform
Resource StringIdentifier - The UniformResourceIdentifier param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- dnsname string
- The Dnsname param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- rfc822name string
- The Rfc822name param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- uniform
Resource stringIdentifier - The UniformResourceIdentifier param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- dnsname str
- The Dnsname param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- rfc822name str
- The Rfc822name param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- uniform_
resource_ stridentifier - The UniformResourceIdentifier param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- dnsname String
- The Dnsname param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- rfc822name String
- The Rfc822name param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
- uniform
Resource StringIdentifier - The UniformResourceIdentifier param. Ensure that only one of the following is specified:
dnsname
,rfc822name
,uniform_resource_identifier
ScepProfileScepChallenge, ScepProfileScepChallengeArgs
- Dynamic
Challenge ScepProfile Scep Challenge Dynamic Challenge - The DynamicChallenge param. Ensure that only one of the following is specified:
dynamic
,fixed
,none
- Fixed string
- Challenge to use for SCEP server on mobile clients. String length must not exceed 1024 characters. Ensure that only one of the following is specified:
dynamic
,fixed
,none
- None string
- The None param. String must be one of these:
""
. Ensure that only one of the following is specified:dynamic
,fixed
,none
- Dynamic
Challenge ScepProfile Scep Challenge Dynamic Challenge - The DynamicChallenge param. Ensure that only one of the following is specified:
dynamic
,fixed
,none
- Fixed string
- Challenge to use for SCEP server on mobile clients. String length must not exceed 1024 characters. Ensure that only one of the following is specified:
dynamic
,fixed
,none
- None string
- The None param. String must be one of these:
""
. Ensure that only one of the following is specified:dynamic
,fixed
,none
- dynamic
Challenge ScepProfile Scep Challenge Dynamic Challenge - The DynamicChallenge param. Ensure that only one of the following is specified:
dynamic
,fixed
,none
- fixed String
- Challenge to use for SCEP server on mobile clients. String length must not exceed 1024 characters. Ensure that only one of the following is specified:
dynamic
,fixed
,none
- none String
- The None param. String must be one of these:
""
. Ensure that only one of the following is specified:dynamic
,fixed
,none
- dynamic
Challenge ScepProfile Scep Challenge Dynamic Challenge - The DynamicChallenge param. Ensure that only one of the following is specified:
dynamic
,fixed
,none
- fixed string
- Challenge to use for SCEP server on mobile clients. String length must not exceed 1024 characters. Ensure that only one of the following is specified:
dynamic
,fixed
,none
- none string
- The None param. String must be one of these:
""
. Ensure that only one of the following is specified:dynamic
,fixed
,none
- dynamic_
challenge ScepProfile Scep Challenge Dynamic Challenge - The DynamicChallenge param. Ensure that only one of the following is specified:
dynamic
,fixed
,none
- fixed str
- Challenge to use for SCEP server on mobile clients. String length must not exceed 1024 characters. Ensure that only one of the following is specified:
dynamic
,fixed
,none
- none str
- The None param. String must be one of these:
""
. Ensure that only one of the following is specified:dynamic
,fixed
,none
- dynamic
Challenge Property Map - The DynamicChallenge param. Ensure that only one of the following is specified:
dynamic
,fixed
,none
- fixed String
- Challenge to use for SCEP server on mobile clients. String length must not exceed 1024 characters. Ensure that only one of the following is specified:
dynamic
,fixed
,none
- none String
- The None param. String must be one of these:
""
. Ensure that only one of the following is specified:dynamic
,fixed
,none
ScepProfileScepChallengeDynamicChallenge, ScepProfileScepChallengeDynamicChallengeArgs
- Otp
Server stringUrl - The OtpServerUrl param. String length must not exceed 255 characters.
- Password string
- The Password param. String length must not exceed 255 characters.
- Username string
- The Username param. String length must not exceed 255 characters.
- Otp
Server stringUrl - The OtpServerUrl param. String length must not exceed 255 characters.
- Password string
- The Password param. String length must not exceed 255 characters.
- Username string
- The Username param. String length must not exceed 255 characters.
- otp
Server StringUrl - The OtpServerUrl param. String length must not exceed 255 characters.
- password String
- The Password param. String length must not exceed 255 characters.
- username String
- The Username param. String length must not exceed 255 characters.
- otp
Server stringUrl - The OtpServerUrl param. String length must not exceed 255 characters.
- password string
- The Password param. String length must not exceed 255 characters.
- username string
- The Username param. String length must not exceed 255 characters.
- otp_
server_ strurl - The OtpServerUrl param. String length must not exceed 255 characters.
- password str
- The Password param. String length must not exceed 255 characters.
- username str
- The Username param. String length must not exceed 255 characters.
- otp
Server StringUrl - The OtpServerUrl param. String length must not exceed 255 characters.
- password String
- The Password param. String length must not exceed 255 characters.
- username String
- The Username param. String length must not exceed 255 characters.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scm
Terraform Provider.