UNPKG

@pulumi/sdwan

Version:

A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1

115 lines (114 loc) 2.94 kB
import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the TLS SSL Profile Policy Definition . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTlsSslProfilePolicyDefinition({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getTlsSslProfilePolicyDefinition(args: GetTlsSslProfilePolicyDefinitionArgs, opts?: pulumi.InvokeOptions): Promise<GetTlsSslProfilePolicyDefinitionResult>; /** * A collection of arguments for invoking getTlsSslProfilePolicyDefinition. */ export interface GetTlsSslProfilePolicyDefinitionArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getTlsSslProfilePolicyDefinition. */ export interface GetTlsSslProfilePolicyDefinitionResult { /** * Allow URL list ID */ readonly allowUrlListId: string; /** * Allow URL list version */ readonly allowUrlListVersion: number; /** * Block URL list ID */ readonly blockUrlListId: string; /** * Block URL list version */ readonly blockUrlListVersion: number; /** * Categories that should be decrypted */ readonly decryptCategories: string[]; /** * Decrypt threshold */ readonly decryptThreshold: string; /** * The description of the policy definition. */ readonly description: string; /** * Fail decrypt enabled */ readonly failDecrypt: boolean; /** * The id of the object */ readonly id: string; /** * The policy mode */ readonly mode: string; /** * The name of the policy definition. */ readonly name: string; /** * Categories that should never be decrypted */ readonly neverDecryptCategories: string[]; /** * Reputation enabled */ readonly reputation: boolean; /** * Categories that should skipped */ readonly skipDecryptCategories: string[]; /** * The version of the object */ readonly version: number; } /** * This data source can read the TLS SSL Profile Policy Definition . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTlsSslProfilePolicyDefinition({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getTlsSslProfilePolicyDefinitionOutput(args: GetTlsSslProfilePolicyDefinitionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTlsSslProfilePolicyDefinitionResult>; /** * A collection of arguments for invoking getTlsSslProfilePolicyDefinition. */ export interface GetTlsSslProfilePolicyDefinitionOutputArgs { /** * The id of the object */ id: pulumi.Input<string>; }