UNPKG

@pulumi/scm

Version:

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

60 lines (59 loc) 1.44 kB
import * as pulumi from "@pulumi/pulumi"; /** * DecryptionExclusion data source */ export declare function getDecryptionExclusion(args: GetDecryptionExclusionArgs, opts?: pulumi.InvokeOptions): Promise<GetDecryptionExclusionResult>; /** * A collection of arguments for invoking getDecryptionExclusion. */ export interface GetDecryptionExclusionArgs { /** * UUID of the resource */ id: string; /** * Name */ name?: string; } /** * A collection of values returned by getDecryptionExclusion. */ export interface GetDecryptionExclusionResult { /** * Description */ readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; /** * Name */ readonly name: string; readonly snippet: string; readonly tfid: string; } /** * DecryptionExclusion data source */ export declare function getDecryptionExclusionOutput(args: GetDecryptionExclusionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDecryptionExclusionResult>; /** * A collection of arguments for invoking getDecryptionExclusion. */ export interface GetDecryptionExclusionOutputArgs { /** * UUID of the resource */ id: pulumi.Input<string>; /** * Name */ name?: pulumi.Input<string>; }