@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.19 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* Retrieves a config item.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scm from "@pulumi/scm";
*
* const example = scm.getDecryptionProfile({
* id: "1234-56-789",
* });
* ```
*/
export declare function getDecryptionProfile(args: GetDecryptionProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetDecryptionProfileResult>;
/**
* A collection of arguments for invoking getDecryptionProfile.
*/
export interface GetDecryptionProfileArgs {
/**
* The Id param.
*/
id: string;
}
/**
* A collection of values returned by getDecryptionProfile.
*/
export interface GetDecryptionProfileResult {
/**
* The Id param.
*/
readonly id: string;
/**
* Must start with alphanumeric char and should contain only alphanemeric, underscore, hyphen, dot or space. String validation regex: `^[A-Za-z0-9]{1}[A-Za-z0-9_\-\.\s]{0,}$`.
*/
readonly name: string;
/**
* The SslForwardProxy param.
*/
readonly sslForwardProxy: outputs.GetDecryptionProfileSslForwardProxy;
/**
* The SslInboundProxy param.
*/
readonly sslInboundProxy: outputs.GetDecryptionProfileSslInboundProxy;
/**
* The SslNoProxy param.
*/
readonly sslNoProxy: outputs.GetDecryptionProfileSslNoProxy;
/**
* The SslProtocolSettings param.
*/
readonly sslProtocolSettings: outputs.GetDecryptionProfileSslProtocolSettings;
readonly tfid: string;
}
/**
* Retrieves a config item.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scm from "@pulumi/scm";
*
* const example = scm.getDecryptionProfile({
* id: "1234-56-789",
* });
* ```
*/
export declare function getDecryptionProfileOutput(args: GetDecryptionProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDecryptionProfileResult>;
/**
* A collection of arguments for invoking getDecryptionProfile.
*/
export interface GetDecryptionProfileOutputArgs {
/**
* The Id param.
*/
id: pulumi.Input<string>;
}