File tree Expand file tree Collapse file tree 1 file changed +44
-2
lines changed
services/secrets-manager/v1 Expand file tree Collapse file tree 1 file changed +44
-2
lines changed Original file line number Diff line number Diff line change 169
169
" cidr"
170
170
]
171
171
},
172
+ "UpdateInstancePayload" : {
173
+ "properties" : {
174
+ "name" : {
175
+ "description" : " A user chosen name to distinguish multiple secrets manager instances." ,
176
+ "type" : " string"
177
+ }
178
+ },
179
+ "required" : [
180
+ " name"
181
+ ]
182
+ },
172
183
"UpdateUserPayload" : {
173
184
"properties" : {
174
185
"write" : {
213
224
"info" : {
214
225
"description" : " This API provides endpoints for managing the Secrets-Manager.\n " ,
215
226
"title" : " STACKIT Secrets Manager API" ,
216
- "version" : " 1.2 .0"
227
+ "version" : " 1.4 .0"
217
228
},
218
229
"openapi" : " 3.0.3" ,
219
230
"paths" : {
356
367
"x-go-type" : " string"
357
368
}
358
369
}
359
- ]
370
+ ],
371
+ "put" : {
372
+ "description" : " Updates the given Secrets Manager instance." ,
373
+ "operationId" : " UpdateInstance" ,
374
+ "requestBody" : {
375
+ "content" : {
376
+ "application/json" : {
377
+ "schema" : {
378
+ "$ref" : " #/components/schemas/UpdateInstancePayload"
379
+ }
380
+ }
381
+ },
382
+ "required" : true
383
+ },
384
+ "responses" : {
385
+ "201" : {
386
+ "description" : " Instance was updated successfully."
387
+ },
388
+ "400" : {
389
+ "description" : " Bad Request. Invalid instance name.'"
390
+ },
391
+ "401" : {
392
+ "description" : " Unauthorized. You may have provided no or wrong credentials."
393
+ },
394
+ "404" : {
395
+ "description" : " Not found. Instance not found."
396
+ },
397
+ "500" : {
398
+ "description" : " Internal server error. The application experienced some unexpected situation."
399
+ }
400
+ }
401
+ }
360
402
},
361
403
"/v1/projects/{projectId}/instances/{instanceId}/acls" : {
362
404
"get" : {
You can’t perform that action at this time.
0 commit comments