-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgemini-extension.json
More file actions
43 lines (43 loc) · 1.16 KB
/
gemini-extension.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "cloud-sql-sqlserver",
"version": "0.2.0",
"description": "Connect to Cloud SQL for SQL Server",
"contextFileName": "CLOUD-SQL-SQLSERVER.md",
"settings": [
{
"name": "Project Name",
"description": "Name of the Google Cloud project",
"envVar": "CLOUD_SQL_MSSQL_PROJECT"
},
{
"name": "Region",
"description": "Region of the Cloud SQL instance",
"envVar": "CLOUD_SQL_MSSQL_REGION"
},
{
"name": "Instance ID",
"description": "ID of the Cloud SQL instance",
"envVar": "CLOUD_SQL_MSSQL_INSTANCE"
},
{
"name": "Database",
"description": "Name of the database",
"envVar": "CLOUD_SQL_MSSQL_DATABASE"
},
{
"name": "User",
"description": "Username of the database user",
"envVar": "CLOUD_SQL_MSSQL_USER"
},
{
"name": "Password",
"description": "Password of the database user",
"envVar": "CLOUD_SQL_MSSQL_PASSWORD"
},
{
"name": "Instance IP assignment",
"description": "(Optional) Type of the IP address: PUBLIC, PRIVATE, or PSC (Default: Public)",
"envVar": "CLOUD_SQL_MSSQL_IP_TYPE"
}
]
}