import * as pulumi from "@pulumi/pulumi"; /** * The zia_sandbox_behavioral_analysis_advanced_settings resource manages the list of MD5 file hashes that are blocked by the ZIA sandbox behavioral analysis engine. This is a singleton resource. Only MD5 hashes (32 characters) are supported. * * For more information, see the [ZIA Cloud Sandbox documentation](https://help.zscaler.com/zia/about-cloud-sandbox-policies). * * ## Example Usage * ### Block File Hashes via Sandbox Settings * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.SandboxBehavioralAnalysisAdvancedSettings("example", { * fileHashesToBeBlocked: [ * "42914d6d213a20a2684064be5c80ffa9", * "c0202cf6aeab8437c638533d14563d35", * ], * }); * ``` * * > This is a singleton resource. Import is not applicable. */ export declare class SandboxBehavioralAnalysisAdvancedSettings extends pulumi.CustomResource { /** * Get an existing SandboxBehavioralAnalysisAdvancedSettings 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): SandboxBehavioralAnalysisAdvancedSettings; /** * Returns true if the given object is an instance of SandboxBehavioralAnalysisAdvancedSettings. 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 SandboxBehavioralAnalysisAdvancedSettings; /** * List of MD5 file hashes to be blocked. Each hash must be exactly 32 characters (MD5 format). SHA1 and SHA256 are not supported. */ readonly fileHashesToBeBlocked: pulumi.Output; /** * The internal resource identifier for the sandbox settings. */ readonly resourceId: pulumi.Output; /** * Create a SandboxBehavioralAnalysisAdvancedSettings 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?: SandboxBehavioralAnalysisAdvancedSettingsArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a SandboxBehavioralAnalysisAdvancedSettings resource. */ export interface SandboxBehavioralAnalysisAdvancedSettingsArgs { /** * List of MD5 file hashes to be blocked. Each hash must be exactly 32 characters (MD5 format). SHA1 and SHA256 are not supported. */ fileHashesToBeBlocked?: pulumi.Input[] | undefined>; } //# sourceMappingURL=sandboxBehavioralAnalysisAdvancedSettings.d.ts.map