-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreverse-provisioning-template.yaml
More file actions
48 lines (48 loc) · 1.85 KB
/
reverse-provisioning-template.yaml
File metadata and controls
48 lines (48 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
apiVersion: witboost.com/v2
kind: ReverseProvisioningTemplate
metadata:
name: reverse-provisioning-google-bigquery-outputport-template.1
title: BigQuery Output Port
description: Import the metadata of a BigQuery table.
tags:
- reverse-provisioning
- outputport
- bigquery
spec:
owner: agilelab
useCaseTemplateId:
- urn:dmb:utm:google-bigquery-outputport-template:0.0.0
parameters:
title: BigQuery Output Port Information
description: |-
This wizard allows you to update the BigQuery Output Port on Witboost by importing the metadata of a table.
Please specify the information about the table to be analyzed.
required:
- project
- dataset
- tableName
properties:
project:
title: Project ID
type: string
ui:field: RegexPicker
validation:
errorMessage: Project ID must be 6-30 characters long, start with a lowercase letter, contain only lowercase letters, numbers, and hyphens, and must not end with a hyphen.
regularExpression: ^[a-z][a-z0-9-]{4,28}[a-z0-9]$
description: Google BigQuery project ID where the dataset is stored.
dataset:
title: Dataset name
type: string
ui:field: RegexPicker
validation:
errorMessage: Dataset name must be 1-1024 characters long and can include letters, numbers, and underscores only.
regularExpression: ^[A-Za-z0-9_]{1,1024}$
description: Dataset name where the source table is stored.
tableName:
title: Table name
type: string
ui:field: RegexPicker
validation:
errorMessage: Table name must be 1-1024 characters long and can include letters, numbers, underscores, dashes, spaces.
regularExpression: ^[A-Za-z0-9_\- ]{1,1024}$
description: Source table name located on the provided dataset.