import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * The zia_sandbox_behavioral_analysis_advanced_settings_v2 resource manages the V2 MD5 hash value list for the ZIA sandbox behavioral analysis engine. Each entry includes the hash URL, an optional comment, and a type (allow, deny, or malware). This is a singleton resource. * * For more information, see the [ZIA Cloud Sandbox documentation](https://help.zscaler.com/zia/about-cloud-sandbox-policies). * * ## Example Usage * ### Manage MD5 Hash Value List * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.SandboxBehavioralAnalysisAdvancedSettingsV2("example", { * md5HashValueList: [ * { * url: "42914d6d213a20a2684064be5c80ffa9", * urlComment: "Known safe file hash", * type: "CUSTOM_FILEHASH_ALLOW", * }, * { * url: "c0202cf6aeab8437c638533d14563d35", * urlComment: "Known malicious file hash", * type: "CUSTOM_FILEHASH_DENY", * }, * ], * }); * ``` * * > This is a singleton resource. Import is not applicable. */ export declare class SandboxBehavioralAnalysisAdvancedSettingsV2 extends pulumi.CustomResource { /** * Get an existing SandboxBehavioralAnalysisAdvancedSettingsV2 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): SandboxBehavioralAnalysisAdvancedSettingsV2; /** * Returns true if the given object is an instance of SandboxBehavioralAnalysisAdvancedSettingsV2. 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 SandboxBehavioralAnalysisAdvancedSettingsV2; /** * List of MD5 hash value entries. Each entry contains a hash URL, optional comment, and type. */ readonly md5HashValueList: pulumi.Output; /** * Create a SandboxBehavioralAnalysisAdvancedSettingsV2 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?: SandboxBehavioralAnalysisAdvancedSettingsV2Args, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a SandboxBehavioralAnalysisAdvancedSettingsV2 resource. */ export interface SandboxBehavioralAnalysisAdvancedSettingsV2Args { /** * List of MD5 hash value entries. Each entry contains a hash URL, optional comment, and type. */ md5HashValueList?: pulumi.Input[] | undefined>; } //# sourceMappingURL=sandboxBehavioralAnalysisAdvancedSettingsV2.d.ts.map