54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
$schema: "http://json-schema.org/draft-06/schema#"
|
|
|
|
title: networksecurity v1alpha1 ThreatPreventionProfile export schema
|
|
description: A gcloud export/import command YAML validation schema.
|
|
type: object
|
|
additionalProperties: false
|
|
properties:
|
|
COMMENT:
|
|
type: object
|
|
description: User specified info ignored by gcloud import.
|
|
additionalProperties: false
|
|
properties:
|
|
template-id:
|
|
type: string
|
|
region:
|
|
type: string
|
|
description:
|
|
type: string
|
|
date:
|
|
type: string
|
|
version:
|
|
type: string
|
|
UNKNOWN:
|
|
type: array
|
|
description: Unknown API fields that cannot be imported.
|
|
items:
|
|
type: string
|
|
antivirusOverrides:
|
|
description: Configuration for overriding antivirus actions per protocol.
|
|
type: array
|
|
items:
|
|
$ref: AntivirusOverride.yaml
|
|
antivirusThreatOverrides:
|
|
description: |-
|
|
Configuration for overriding VIRUS threat actions per protocol.
|
|
type: array
|
|
items:
|
|
$ref: AntivirusThreatOverride.yaml
|
|
severityOverrides:
|
|
description: |-
|
|
Configuration for overriding threats actions by severity match.
|
|
type: array
|
|
items:
|
|
$ref: SeverityOverride.yaml
|
|
threatOverrides:
|
|
description: |-
|
|
Configuration for overriding threats actions by threat_id
|
|
match. If a threat is matched both by configuration provided
|
|
in severity_overrides and threat_overrides, the
|
|
threat_overrides action is applied.
|
|
type: array
|
|
items:
|
|
$ref: ThreatOverride.yaml
|