-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugin.json
More file actions
57 lines (57 loc) · 1.63 KB
/
plugin.json
File metadata and controls
57 lines (57 loc) · 1.63 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
51
52
53
54
55
56
57
{
"name": "cloud-sql-sqlserver",
"version": "0.1.8",
"description": "Connect to Cloud SQL for SQL Server",
"author": {
"name": "Google LLC",
"email": "data-cloud-ai-integrations@google.com"
},
"homepage": "https://cloud.google.com/sql/docs/sqlserver",
"license": "Apache-2.0",
"repository": "https://github.com/gemini-cli-extensions/cloud-sql-sqlserver",
"skills": "./skills/",
"userConfig": {
"cloud_sql_mssql_project": {
"title": "Project Name",
"description": "Name of the Google Cloud project",
"type": "string",
"sensitive": false
},
"cloud_sql_mssql_region": {
"title": "Region",
"description": "Region of the Cloud SQL instance",
"type": "string",
"sensitive": false
},
"cloud_sql_mssql_instance": {
"title": "Instance ID",
"description": "ID of the Cloud SQL instance",
"type": "string",
"sensitive": false
},
"cloud_sql_mssql_database": {
"title": "Database",
"description": "Name of the database",
"type": "string",
"sensitive": false
},
"cloud_sql_mssql_user": {
"title": "User",
"description": "Username of the database user",
"type": "string",
"sensitive": false
},
"cloud_sql_mssql_password": {
"title": "Password",
"description": "Password of the database user",
"type": "string",
"sensitive": false
},
"cloud_sql_mssql_ip_type": {
"title": "Instance IP assignment",
"description": "(Optional) Type of the IP address: PUBLIC, PRIVATE, or PSC (Default: Public)",
"type": "string",
"sensitive": false
}
}
}