-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugin.json
More file actions
51 lines (51 loc) · 1.59 KB
/
plugin.json
File metadata and controls
51 lines (51 loc) · 1.59 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
{
"name": "cloud-sql-postgresql",
"version": "0.1.0",
"description": "Create, connect, and interact with a Cloud SQL for PostgreSQL database and data.",
"repository": "https://github.com/gemini-cli-extensions/cloud-sql-postgresql",
"skills": "./skills/",
"userConfig": {
"cloud_sql_postgres_project": {
"title": "Project ID",
"description": "ID of the Google Cloud project",
"type": "string",
"sensitive": false
},
"cloud_sql_postgres_region": {
"title": "Region",
"description": "Region of the Cloud SQL instance",
"type": "string",
"sensitive": false
},
"cloud_sql_postgres_instance": {
"title": "Instance Name",
"description": "Name of the Cloud SQL instance",
"type": "string",
"sensitive": false
},
"cloud_sql_postgres_database": {
"title": "Database Name",
"description": "Name of the database",
"type": "string",
"sensitive": false
},
"cloud_sql_postgres_user": {
"title": "Database User",
"description": "(Optional) Username of the database user (Default: IAM user)",
"type": "string",
"sensitive": false
},
"cloud_sql_postgres_password": {
"title": "Database Password",
"description": "(Optional) Password of the database user (Default: IAM user)",
"type": "string",
"sensitive": false
},
"cloud_sql_postgres_ip_type": {
"title": "IP Type",
"description": "(Optional) Type of the IP address: PUBLIC, PRIVATE, or PSC (Default: Public)",
"type": "string",
"sensitive": false
}
}
}