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

GoogleCloudSecuritycenterV1SecurityHealthAnalyticsCustomModule

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

Represents an instance of a Security Health Analytics custom module, including its full module name, display name, enablement state, and last updated time. You can create a custom module at the organization, folder, or project level. Custom modules that you create at the organization or folder level are inherited by the child folders and projects.

interface GoogleCloudSecuritycenterV1SecurityHealthAnalyticsCustomModule {
readonly ancestorModule?: string;
displayName?: string;
enablementState?:
| "ENABLEMENT_STATE_UNSPECIFIED"
| "ENABLED"
| "DISABLED"
| "INHERITED";
readonly lastEditor?: string;
name?: string;
readonly updateTime?: Date;
}

§Properties

§
readonly ancestorModule?: string
[src]

Output only. If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, ancestor_module specifies the organization or folder from which the custom module is inherited.

§

The user specified custom configuration for the module.

§
displayName?: string
[src]

The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.

§
enablementState?: "ENABLEMENT_STATE_UNSPECIFIED" | "ENABLED" | "DISABLED" | "INHERITED"
[src]

The enablement state of the custom module.

§
readonly lastEditor?: string
[src]

Output only. The editor that last updated the custom module.

§
name?: string
[src]

Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.

§
readonly updateTime?: Date
[src]

Output only. The time at which the custom module was last updated.