Skip to content

Commit c603ce1

Browse files
committed
revert skill testing failure
1 parent e4bad75 commit c603ce1

1 file changed

Lines changed: 11 additions & 50 deletions

File tree

skills/cloudsql-postgres-admin/SKILL.md

Lines changed: 11 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: cloudsql-postgres-admin
3-
descfgfg∂ription: skill for performing administrative operations on cloudsql postgres
3+
description: skill for performing administrative operations on cloudsql postgres
44
---
55

66
## Usage
@@ -15,7 +15,6 @@ All scripts can be executed using Node.js. Replace `<param_name>` and `<param_va
1515

1616
## Scripts
1717

18-
1918
### clone_instance
2019

2120
Clone an existing Cloud SQL instance into a new instance. The clone can be a direct copy of the source instance, or a point-in-time-recovery (PITR) clone from a specific timestamp. The call returns a Cloud SQL Operation object. Call wait_for_operation tool after this, make sure to use multiplier as 4 to poll the opertation status till it is marked DONE.
@@ -51,10 +50,7 @@ Clone an existing Cloud SQL instance into a new instance. The clone can be a dir
5150
"type": "string"
5251
}
5352
},
54-
"required": [
55-
"sourceInstanceName",
56-
"destinationInstanceName"
57-
],
53+
"required": ["sourceInstanceName", "destinationInstanceName"],
5854
"type": "object"
5955
}
6056
```
@@ -88,9 +84,7 @@ Creates a backup on a Cloud SQL instance.
8884
"type": "string"
8985
}
9086
},
91-
"required": [
92-
"instance"
93-
],
87+
"required": ["instance"],
9488
"type": "object"
9589
}
9690
```
@@ -99,8 +93,6 @@ Creates a backup on a Cloud SQL instance.
9993

10094
### create_database
10195

102-
103-
10496
#### Parameters
10597

10698
```json
@@ -120,10 +112,7 @@ Creates a backup on a Cloud SQL instance.
120112
"type": "string"
121113
}
122114
},
123-
"required": [
124-
"instance",
125-
"name"
126-
],
115+
"required": ["instance", "name"],
127116
"type": "object"
128117
}
129118
```
@@ -132,8 +121,6 @@ Creates a backup on a Cloud SQL instance.
132121

133122
### create_instance
134123

135-
136-
137124
#### Parameters
138125

139126
```json
@@ -163,10 +150,7 @@ Creates a backup on a Cloud SQL instance.
163150
"type": "string"
164151
}
165152
},
166-
"required": [
167-
"name",
168-
"rootPassword"
169-
],
153+
"required": ["name", "rootPassword"],
170154
"type": "object"
171155
}
172156
```
@@ -175,8 +159,6 @@ Creates a backup on a Cloud SQL instance.
175159

176160
### create_user
177161

178-
179-
180162
#### Parameters
181163

182164
```json
@@ -204,11 +186,7 @@ Creates a backup on a Cloud SQL instance.
204186
"type": "string"
205187
}
206188
},
207-
"required": [
208-
"instance",
209-
"name",
210-
"iamUser"
211-
],
189+
"required": ["instance", "name", "iamUser"],
212190
"type": "object"
213191
}
214192
```
@@ -217,8 +195,6 @@ Creates a backup on a Cloud SQL instance.
217195

218196
### get_instance
219197

220-
221-
222198
#### Parameters
223199

224200
```json
@@ -234,9 +210,7 @@ Creates a backup on a Cloud SQL instance.
234210
"type": "string"
235211
}
236212
},
237-
"required": [
238-
"instanceId"
239-
],
213+
"required": ["instanceId"],
240214
"type": "object"
241215
}
242216
```
@@ -262,9 +236,7 @@ Lists all databases for a Cloud SQL instance.
262236
"type": "string"
263237
}
264238
},
265-
"required": [
266-
"instance"
267-
],
239+
"required": ["instance"],
268240
"type": "object"
269241
}
270242
```
@@ -318,10 +290,7 @@ INFO: No Action Needed. Informational messages only. This pre-check helps custom
318290
"type": "string"
319291
}
320292
},
321-
"required": [
322-
"project",
323-
"instance"
324-
],
293+
"required": ["project", "instance"],
325294
"type": "object"
326295
}
327296
```
@@ -359,10 +328,7 @@ Restores a backup on a Cloud SQL instance.
359328
"type": "string"
360329
}
361330
},
362-
"required": [
363-
"target_instance",
364-
"backup_id"
365-
],
331+
"required": ["target_instance", "backup_id"],
366332
"type": "object"
367333
}
368334
```
@@ -371,8 +337,6 @@ Restores a backup on a Cloud SQL instance.
371337

372338
### wait_for_operation
373339

374-
375-
376340
#### Parameters
377341

378342
```json
@@ -388,12 +352,9 @@ Restores a backup on a Cloud SQL instance.
388352
"type": "string"
389353
}
390354
},
391-
"required": [
392-
"operation"
393-
],
355+
"required": ["operation"],
394356
"type": "object"
395357
}
396358
```
397359

398360
---
399-

0 commit comments

Comments
 (0)