Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 41 additions & 11 deletions gemini-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,46 @@
"--prebuilt",
"cloud-sql-mssql",
"--stdio"
],
"env": {
"CLOUD_SQL_SQLSERVER_PROJECT": "${CLOUD_SQL_SQLSERVER_PROJECT}",
"CLOUD_SQL_SQLSERVER_REGION": "${CLOUD_SQL_SQLSERVER_REGION}",
"CLOUD_SQL_SQLSERVER_INSTANCE": "${CLOUD_SQL_SQLSERVER_INSTANCE}",
"CLOUD_SQL_SQLSERVER_DATABASE": "${CLOUD_SQL_SQLSERVER_DATABASE}",
"CLOUD_SQL_SQLSERVER_USER": "${CLOUD_SQL_SQLSERVER_USER}",
"CLOUD_SQL_SQLSERVER_PASSWORD": "${CLOUD_SQL_SQLSERVER_PASSWORD}"
}
]
}
},
"contextFileName": "CLOUD-SQL-SQLSERVER.md"
}
"contextFileName": "CLOUD-SQL-SQLSERVER.md",
"settings": [
{
"name": "Project ID",
Comment thread
averikitsch marked this conversation as resolved.
Outdated
"description": "ID of the Google Cloud project",
Comment thread
averikitsch marked this conversation as resolved.
Outdated
"envVar": "CLOUD_SQL_MSSQL_PROJECT"
},
{
"name": "Location",
Comment thread
averikitsch marked this conversation as resolved.
Outdated
"description": "Region of the Cloud SQL instance",
"envVar": "CLOUD_SQL_MSSQL_REGION"
},
{
"name": "Instance",
Comment thread
averikitsch marked this conversation as resolved.
Outdated
"description": "Name 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",
"sensitive": true
},
{
"name": "IP Type",
Comment thread
averikitsch marked this conversation as resolved.
Outdated
"description": "(Optional) Type of the IP address: PUBLIC, PRIVATE, or PSC (Default: Public)",
"envVar": "CLOUD_SQL_MSSQL_IP_TYPE"
}
]
}
Loading