import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * DecryptionRule data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // We use the ID from the resource created above. * const singleRuleById = scm.getDecryptionRule({ * id: "b3544acb-fc55-4c6f-921d-4128b5a1d135", * }); * export const singleDecryptionRuleName = singleRuleById; * ``` */ export declare function getDecryptionRule(args: GetDecryptionRuleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDecryptionRule. */ export interface GetDecryptionRuleArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the decryption rule */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getDecryptionRule. */ export interface GetDecryptionRuleResult { readonly action: string; readonly categories: string[]; readonly description: string; readonly destinationHips: string[]; readonly destinations: string[]; /** * The device in which the resource is defined */ readonly device: string; readonly disabled: boolean; readonly folder: string; readonly froms: string[]; /** * The UUID of the decryption rule */ readonly id: string; readonly logFail: boolean; readonly logSetting: string; readonly logSuccess: boolean; readonly name: string; readonly negateDestination: boolean; readonly negateSource: boolean; readonly position: string; readonly profile: string; readonly relativePosition: string; readonly services: string[]; readonly snippet: string; readonly sourceHips: string[]; readonly sourceUsers: string[]; readonly sources: string[]; readonly tags: string[]; readonly targetRule: string; readonly tfid: string; readonly tos: string[]; readonly type: outputs.GetDecryptionRuleType; } /** * DecryptionRule data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // We use the ID from the resource created above. * const singleRuleById = scm.getDecryptionRule({ * id: "b3544acb-fc55-4c6f-921d-4128b5a1d135", * }); * export const singleDecryptionRuleName = singleRuleById; * ``` */ export declare function getDecryptionRuleOutput(args: GetDecryptionRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDecryptionRule. */ export interface GetDecryptionRuleOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the decryption rule */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getDecryptionRule.d.ts.map