UNPKG

@pulumi/sdwan

Version:

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

231 lines (230 loc) 7.13 kB
import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage a TLS SSL Profile Policy Definition . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = new sdwan.TlsSslProfilePolicyDefinition("example", { * name: "Example", * description: "My description", * mode: "security", * decryptCategories: ["alcohol-and-tobacco"], * neverDecryptCategories: ["auctions"], * skipDecryptCategories: ["cdns"], * decryptThreshold: "high-risk", * reputation: false, * failDecrypt: true, * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import sdwan:index/tlsSslProfilePolicyDefinition:TlsSslProfilePolicyDefinition example "f6b2c44c-693c-4763-b010-895aa3d236bd" * ``` */ export declare class TlsSslProfilePolicyDefinition extends pulumi.CustomResource { /** * Get an existing TlsSslProfilePolicyDefinition resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TlsSslProfilePolicyDefinitionState, opts?: pulumi.CustomResourceOptions): TlsSslProfilePolicyDefinition; /** * Returns true if the given object is an instance of TlsSslProfilePolicyDefinition. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is TlsSslProfilePolicyDefinition; /** * Allow URL list ID */ readonly allowUrlListId: pulumi.Output<string | undefined>; /** * Allow URL list version */ readonly allowUrlListVersion: pulumi.Output<number | undefined>; /** * Block URL list ID */ readonly blockUrlListId: pulumi.Output<string | undefined>; /** * Block URL list version */ readonly blockUrlListVersion: pulumi.Output<number | undefined>; /** * Categories that should be decrypted */ readonly decryptCategories: pulumi.Output<string[] | undefined>; /** * Decrypt threshold - Choices: `high-risk`, `suspicious`, `moderate-risk`, `low-risk`, `trustworthy` */ readonly decryptThreshold: pulumi.Output<string | undefined>; /** * The description of the policy definition. */ readonly description: pulumi.Output<string>; /** * Fail decrypt enabled */ readonly failDecrypt: pulumi.Output<boolean | undefined>; /** * The policy mode - Choices: `security`, `unified` */ readonly mode: pulumi.Output<string | undefined>; /** * The name of the policy definition. */ readonly name: pulumi.Output<string>; /** * Categories that should never be decrypted */ readonly neverDecryptCategories: pulumi.Output<string[] | undefined>; /** * Reputation enabled */ readonly reputation: pulumi.Output<boolean | undefined>; /** * Categories that should skipped */ readonly skipDecryptCategories: pulumi.Output<string[] | undefined>; /** * The version of the object */ readonly version: pulumi.Output<number>; /** * Create a TlsSslProfilePolicyDefinition resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: TlsSslProfilePolicyDefinitionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TlsSslProfilePolicyDefinition resources. */ export interface TlsSslProfilePolicyDefinitionState { /** * Allow URL list ID */ allowUrlListId?: pulumi.Input<string>; /** * Allow URL list version */ allowUrlListVersion?: pulumi.Input<number>; /** * Block URL list ID */ blockUrlListId?: pulumi.Input<string>; /** * Block URL list version */ blockUrlListVersion?: pulumi.Input<number>; /** * Categories that should be decrypted */ decryptCategories?: pulumi.Input<pulumi.Input<string>[]>; /** * Decrypt threshold - Choices: `high-risk`, `suspicious`, `moderate-risk`, `low-risk`, `trustworthy` */ decryptThreshold?: pulumi.Input<string>; /** * The description of the policy definition. */ description?: pulumi.Input<string>; /** * Fail decrypt enabled */ failDecrypt?: pulumi.Input<boolean>; /** * The policy mode - Choices: `security`, `unified` */ mode?: pulumi.Input<string>; /** * The name of the policy definition. */ name?: pulumi.Input<string>; /** * Categories that should never be decrypted */ neverDecryptCategories?: pulumi.Input<pulumi.Input<string>[]>; /** * Reputation enabled */ reputation?: pulumi.Input<boolean>; /** * Categories that should skipped */ skipDecryptCategories?: pulumi.Input<pulumi.Input<string>[]>; /** * The version of the object */ version?: pulumi.Input<number>; } /** * The set of arguments for constructing a TlsSslProfilePolicyDefinition resource. */ export interface TlsSslProfilePolicyDefinitionArgs { /** * Allow URL list ID */ allowUrlListId?: pulumi.Input<string>; /** * Allow URL list version */ allowUrlListVersion?: pulumi.Input<number>; /** * Block URL list ID */ blockUrlListId?: pulumi.Input<string>; /** * Block URL list version */ blockUrlListVersion?: pulumi.Input<number>; /** * Categories that should be decrypted */ decryptCategories?: pulumi.Input<pulumi.Input<string>[]>; /** * Decrypt threshold - Choices: `high-risk`, `suspicious`, `moderate-risk`, `low-risk`, `trustworthy` */ decryptThreshold?: pulumi.Input<string>; /** * The description of the policy definition. */ description: pulumi.Input<string>; /** * Fail decrypt enabled */ failDecrypt?: pulumi.Input<boolean>; /** * The policy mode - Choices: `security`, `unified` */ mode?: pulumi.Input<string>; /** * The name of the policy definition. */ name?: pulumi.Input<string>; /** * Categories that should never be decrypted */ neverDecryptCategories?: pulumi.Input<pulumi.Input<string>[]>; /** * Reputation enabled */ reputation?: pulumi.Input<boolean>; /** * Categories that should skipped */ skipDecryptCategories?: pulumi.Input<pulumi.Input<string>[]>; }