Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ProcessSignature

import type { ProcessSignature } from "https://googleapis.deno.dev/v1/securitycenter:v1.ts";

Indicates what signature matched this process.

interface ProcessSignature {
memoryHashSignature?: MemoryHashSignature;
signatureType?: "SIGNATURE_TYPE_UNSPECIFIED" | "SIGNATURE_TYPE_PROCESS" | "SIGNATURE_TYPE_FILE";
yaraRuleSignature?: YaraRuleSignature;
}

§Properties

§
memoryHashSignature?: MemoryHashSignature
[src]

Signature indicating that a binary family was matched.

§
signatureType?: "SIGNATURE_TYPE_UNSPECIFIED" | "SIGNATURE_TYPE_PROCESS" | "SIGNATURE_TYPE_FILE"
[src]

Describes the type of resource associated with the signature.

§
yaraRuleSignature?: YaraRuleSignature
[src]

Signature indicating that a YARA rule was matched.