UNPKG

@pulumi/scm

Version:

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

81 lines (80 loc) 2.13 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 UUID of the SCEP profile */ id: string; /** * The name of the SCEP profile */ name?: 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 */ readonly device: string; readonly digest: string; readonly encryptedValues: { [key: string]: string; }; readonly fingerprint: string; readonly folder: string; /** * The UUID of the SCEP profile */ readonly id: string; /** * The name of the SCEP profile */ readonly name: string; readonly scepCaCert: string; readonly scepChallenge: outputs.GetScepProfileScepChallenge; readonly scepClientCert: string; readonly scepUrl: string; readonly snippet: string; readonly subject: string; readonly tfid: string; readonly useAsDigitalSignature: boolean; 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 UUID of the SCEP profile */ id: pulumi.Input<string>; /** * The name of the SCEP profile */ name?: pulumi.Input<string>; }