UNPKG

@pulumi/sdwan

Version:

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

108 lines (107 loc) 3.42 kB
import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Policy Object Unified TLS SSL Decryption Policy_object. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getPolicyObjectUnifiedTlsSslDecryption({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getPolicyObjectUnifiedTlsSslDecryption(args: GetPolicyObjectUnifiedTlsSslDecryptionArgs, opts?: pulumi.InvokeOptions): Promise<GetPolicyObjectUnifiedTlsSslDecryptionResult>; /** * A collection of arguments for invoking getPolicyObjectUnifiedTlsSslDecryption. */ export interface GetPolicyObjectUnifiedTlsSslDecryptionArgs { /** * Feature Profile ID */ featureProfileId: string; /** * The id of the Policy_object */ id: string; } /** * A collection of values returned by getPolicyObjectUnifiedTlsSslDecryption. */ export interface GetPolicyObjectUnifiedTlsSslDecryptionResult { readonly bundleString: string; /** * If you have vManage as CA or vManage as intermediate CA, this value should be 1 */ readonly certificateLifetime: string; /** * If value is none unknown status not required, if value is ocsp then unknown status is required */ readonly certificateRevocationStatus: string; readonly defaultCaCertificateBundle: boolean; /** * The description of the Policy_object */ readonly description: string; readonly ecKeyType: string; readonly expiredCertificate: string; readonly failureMode: string; /** * Feature Profile ID */ readonly featureProfileId: string; readonly fileName: string; /** * The id of the Policy_object */ readonly id: string; readonly minimalTlsVer: string; /** * The name of the Policy_object */ readonly name: string; readonly rsaKeypairModules: string; /** * Only required if certificateRevocationStatus is oscp, if value is none then field shouldn't be here */ readonly unknownRevocationStatus: string; readonly unsupportedCipherSuites: string; readonly unsupportedProtocolVersions: string; readonly untrustedCertificate: string; /** * The version of the Policy_object */ readonly version: number; } /** * This data source can read the Policy Object Unified TLS SSL Decryption Policy_object. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getPolicyObjectUnifiedTlsSslDecryption({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getPolicyObjectUnifiedTlsSslDecryptionOutput(args: GetPolicyObjectUnifiedTlsSslDecryptionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPolicyObjectUnifiedTlsSslDecryptionResult>; /** * A collection of arguments for invoking getPolicyObjectUnifiedTlsSslDecryption. */ export interface GetPolicyObjectUnifiedTlsSslDecryptionOutputArgs { /** * Feature Profile ID */ featureProfileId: pulumi.Input<string>; /** * The id of the Policy_object */ id: pulumi.Input<string>; }