UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

260 lines (259 loc) 7.51 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ScepProfile resource */ export declare class ScepProfile extends pulumi.CustomResource { /** * Get an existing ScepProfile resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ScepProfileState, opts?: pulumi.CustomResourceOptions): ScepProfile; /** * Returns true if the given object is an instance of ScepProfile. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ScepProfile; /** * Algorithm */ readonly algorithm: pulumi.Output<outputs.ScepProfileAlgorithm>; /** * Certificate Authority identity */ readonly caIdentityName: pulumi.Output<string>; /** * Subject Alternative name type */ readonly certificateAttributes: pulumi.Output<outputs.ScepProfileCertificateAttributes | undefined>; /** * The device in which the resource is defined */ readonly device: pulumi.Output<string | undefined>; /** * Digest for CSR */ readonly digest: pulumi.Output<string>; /** * Map of sensitive values returned from the API. */ readonly encryptedValues: pulumi.Output<{ [key: string]: string; }>; /** * CA certificate fingerprint */ readonly fingerprint: pulumi.Output<string | undefined>; /** * The folder in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: pulumi.Output<string | undefined>; /** * The name of the SCEP profile */ readonly name: pulumi.Output<string>; /** * SCEP server CA certificate */ readonly scepCaCert: pulumi.Output<string | undefined>; /** * One Time Password challenge */ readonly scepChallenge: pulumi.Output<outputs.ScepProfileScepChallenge>; /** * SCEP client ceertificate */ readonly scepClientCert: pulumi.Output<string | undefined>; /** * SCEP server URL */ readonly scepUrl: pulumi.Output<string>; /** * The snippet in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: pulumi.Output<string | undefined>; /** * Subject */ readonly subject: pulumi.Output<string>; readonly tfid: pulumi.Output<string>; /** * Use as digital signature? */ readonly useAsDigitalSignature: pulumi.Output<boolean | undefined>; /** * Use for key encipherment? */ readonly useForKeyEncipherment: pulumi.Output<boolean | undefined>; /** * Create a ScepProfile resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ScepProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ScepProfile resources. */ export interface ScepProfileState { /** * Algorithm */ algorithm?: pulumi.Input<inputs.ScepProfileAlgorithm>; /** * Certificate Authority identity */ caIdentityName?: pulumi.Input<string>; /** * Subject Alternative name type */ certificateAttributes?: pulumi.Input<inputs.ScepProfileCertificateAttributes>; /** * The device in which the resource is defined */ device?: pulumi.Input<string>; /** * Digest for CSR */ digest?: pulumi.Input<string>; /** * Map of sensitive values returned from the API. */ encryptedValues?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; /** * CA certificate fingerprint */ fingerprint?: pulumi.Input<string>; /** * The folder in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input<string>; /** * The name of the SCEP profile */ name?: pulumi.Input<string>; /** * SCEP server CA certificate */ scepCaCert?: pulumi.Input<string>; /** * One Time Password challenge */ scepChallenge?: pulumi.Input<inputs.ScepProfileScepChallenge>; /** * SCEP client ceertificate */ scepClientCert?: pulumi.Input<string>; /** * SCEP server URL */ scepUrl?: pulumi.Input<string>; /** * The snippet in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input<string>; /** * Subject */ subject?: pulumi.Input<string>; tfid?: pulumi.Input<string>; /** * Use as digital signature? */ useAsDigitalSignature?: pulumi.Input<boolean>; /** * Use for key encipherment? */ useForKeyEncipherment?: pulumi.Input<boolean>; } /** * The set of arguments for constructing a ScepProfile resource. */ export interface ScepProfileArgs { /** * Algorithm */ algorithm: pulumi.Input<inputs.ScepProfileAlgorithm>; /** * Certificate Authority identity */ caIdentityName: pulumi.Input<string>; /** * Subject Alternative name type */ certificateAttributes?: pulumi.Input<inputs.ScepProfileCertificateAttributes>; /** * The device in which the resource is defined */ device?: pulumi.Input<string>; /** * Digest for CSR */ digest: pulumi.Input<string>; /** * CA certificate fingerprint */ fingerprint?: pulumi.Input<string>; /** * The folder in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input<string>; /** * The name of the SCEP profile */ name?: pulumi.Input<string>; /** * SCEP server CA certificate */ scepCaCert?: pulumi.Input<string>; /** * One Time Password challenge */ scepChallenge: pulumi.Input<inputs.ScepProfileScepChallenge>; /** * SCEP client ceertificate */ scepClientCert?: pulumi.Input<string>; /** * SCEP server URL */ scepUrl: pulumi.Input<string>; /** * The snippet in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input<string>; /** * Subject */ subject: pulumi.Input<string>; /** * Use as digital signature? */ useAsDigitalSignature?: pulumi.Input<boolean>; /** * Use for key encipherment? */ useForKeyEncipherment?: pulumi.Input<boolean>; }