51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
$schema: "http://json-schema.org/draft-06/schema#"
|
|
|
|
title: privilegedaccessmanager v1beta Step export schema
|
|
description: A gcloud export/import command YAML validation schema.
|
|
type: object
|
|
required:
|
|
- approvalsNeeded
|
|
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
|
|
approvalsNeeded:
|
|
description: |-
|
|
How many users from the above list need to approve. If there are not
|
|
enough distinct users in the list above then the workflow will
|
|
indefinitely block. Should always be greater than 0. 1 is the only
|
|
supported value for now.
|
|
type: integer
|
|
approverEmailRecipients:
|
|
description: |-
|
|
Additional email addresses to be notified when a grant is pending
|
|
approval.
|
|
type: array
|
|
items:
|
|
type: string
|
|
approvers:
|
|
description: |-
|
|
The potential set of approvers in this step. This list should contain
|
|
at most one entry.
|
|
type: array
|
|
items:
|
|
$ref: AccessControlEntry.yaml
|