-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgemini-extension.json
More file actions
48 lines (48 loc) · 1.35 KB
/
gemini-extension.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "alloydb",
"version": "0.2.0",
"description": "Create, connect, and interact with an AlloyDB for PostgreSQL database and data.",
"contextFileName": "ALLOYDB.md",
"settings": [
{
"name": "Project ID",
"description": "ID of the Google Cloud project",
"envVar": "ALLOYDB_POSTGRES_PROJECT"
},
{
"name": "Location",
"description": "Region of the AlloyDB cluster",
"envVar": "ALLOYDB_POSTGRES_REGION"
},
{
"name": "Cluster ID",
"description": "ID of the AlloyDB cluster",
"envVar": "ALLOYDB_POSTGRES_CLUSTER"
},
{
"name": "Instance ID",
"description": "ID of the AlloyDB instance",
"envVar": "ALLOYDB_POSTGRES_INSTANCE"
},
{
"name": "Database",
"description": "Name of the database",
"envVar": "ALLOYDB_POSTGRES_DATABASE"
},
{
"name": "User",
"description": "(Optional) Username of the database user (Default: IAM user)",
"envVar": "ALLOYDB_POSTGRES_USER"
},
{
"name": "Password",
"description": "(Optional) Password of the database user (Default: IAM user)",
"envVar": "ALLOYDB_POSTGRES_PASSWORD"
},
{
"name": "IP Type",
"description": "(Optional) Type of the IP address: PUBLIC, PRIVATE, or PSC (Default: Public)",
"envVar": "ALLOYDB_POSTGRES_IP_TYPE"
}
]
}