-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.json
More file actions
50 lines (50 loc) · 1.78 KB
/
ui.json
File metadata and controls
50 lines (50 loc) · 1.78 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
49
50
[
{
"type": "text",
"name": "accountId",
"label": "Snowflake account identifier",
"help": "Enter your Snowflake account identifier. Find this in the portal under Your Username > Account > Account Identifier. It is in the format <org_name>-<account_name>, e.g. ABCDEFG-XYZ12345",
"validation": {
"required": true
},
"placeholder": "<org_name>-<account_name>, e.g. ABCDEFG-XYZ12345"
},
{
"type": "text",
"name": "oauth2ClientId",
"label": "Snowflake OAuth client ID",
"help": "The client ID for your Snowflake OAuth application. See documentation for details on how to set up an OAuth application in Snowflake and obtain the client ID.",
"validation": {
"required": true
},
"placeholder": "Enter your Snowflake OAuth client ID"
},
{
"type": "password",
"name": "oauth2ClientSecret",
"label": "Snowflake OAuth secret",
"help": "The client secret for your Snowflake OAuth application. See documentation for details on how to set up an OAuth application in Snowflake and obtain the client secret.",
"validation": {
"required": true
},
"placeholder": "Enter your Snowflake OAuth secret"
},
{
"type": "text",
"name": "oauth2Role",
"label": "Role (optional)",
"help": "Scope OAuth connection to a specific role. If not specified, the user's default role is used.",
"validation": {
"required": false
},
"placeholder": "Enter your Snowflake OAuth role"
},
{
"type": "oAuth2",
"name": "oauth2AuthCodeSignIn",
"label": "Authorize",
"validation": {
"required": true
}
}
]