UNPKG

@pulumi/scm

Version:

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

150 lines (149 loc) 4.15 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * ScepProfile data source */ export declare function getScepProfile(args: GetScepProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetScepProfileResult>; /** * A collection of arguments for invoking getScepProfile. */ export interface GetScepProfileArgs { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: string; /** * The UUID of the SCEP profile */ id: string; /** * The name of the SCEP profile */ name?: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: string; } /** * A collection of values returned by getScepProfile. */ export interface GetScepProfileResult { /** * Algorithm */ readonly algorithm: outputs.GetScepProfileAlgorithm; /** * Certificate Authority identity */ readonly caIdentityName: string; /** * Subject Alternative name type */ readonly certificateAttributes: outputs.GetScepProfileCertificateAttributes; /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly device: string; /** * Digest for CSR */ readonly digest: string; /** * Map of sensitive values returned from the API. */ readonly encryptedValues: { [key: string]: string; }; /** * CA certificate fingerprint */ readonly fingerprint: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: string; /** * The UUID of the SCEP profile */ readonly id: string; /** * The name of the SCEP profile */ readonly name: string; /** * SCEP server CA certificate */ readonly scepCaCert: string; /** * One Time Password challenge */ readonly scepChallenge: outputs.GetScepProfileScepChallenge; /** * SCEP client ceertificate */ readonly scepClientCert: string; /** * SCEP server URL */ readonly scepUrl: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: string; /** * Subject */ readonly subject: string; readonly tfid: string; /** * Use as digital signature? */ readonly useAsDigitalSignature: boolean; /** * Use for key encipherment? */ readonly useForKeyEncipherment: boolean; } /** * ScepProfile data source */ export declare function getScepProfileOutput(args: GetScepProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetScepProfileResult>; /** * A collection of arguments for invoking getScepProfile. */ export interface GetScepProfileOutputArgs { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: 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 UUID of the SCEP profile */ id: pulumi.Input<string>; /** * The name of the SCEP profile */ name?: 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>; }