Skip to content

Commit d0fe55a

Browse files
OAS Update
1 parent 2b3d3bd commit d0fe55a

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

services/git/v1beta/git.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"description": "A user chosen name to distinguish multiple STACKIT Git instances.",
99
"maxLength": 32,
1010
"minLength": 5,
11-
"pattern": "^[a-zA-Z0-9-_]+$",
11+
"pattern": "^[a-z]([a-z0-9\\-]){0,30}[a-z0-9]+$",
1212
"type": "string"
1313
}
1414
},
@@ -20,24 +20,24 @@
2020
"description": "Describes a STACKIT Git instance.",
2121
"properties": {
2222
"created": {
23-
"description": "The date and time the creation of the STACKIT GIT instance was triggered.",
23+
"description": "The date and time the creation of the STACKIT Git instance was triggered.",
2424
"format": "date-time",
2525
"maxLength": 48,
2626
"type": "string"
2727
},
2828
"id": {
29-
"description": "A auto generated unique id which identifies the STACKIT GIT instances.",
29+
"description": "A auto generated unique id which identifies the STACKIT Git instances.",
3030
"format": "uuid",
3131
"maxLength": 36,
3232
"type": "string"
3333
},
3434
"name": {
35-
"description": "A user chosen name to distinguish multiple STACKIT GIT instances.",
35+
"description": "A user chosen name to distinguish multiple STACKIT Git instances.",
3636
"maxLength": 32,
3737
"type": "string"
3838
},
3939
"state": {
40-
"description": "The current state of the STACKIT GIT instance.",
40+
"description": "The current state of the STACKIT Git instance.",
4141
"enum": [
4242
"Creating",
4343
"WaitingForResources",
@@ -50,12 +50,12 @@
5050
"type": "string"
5151
},
5252
"url": {
53-
"description": "The URL for reaching the STACKIT GIT instance.",
53+
"description": "The URL for reaching the STACKIT Git instance.",
5454
"maxLength": 2048,
5555
"type": "string"
5656
},
5757
"version": {
58-
"description": "The current version of STACKIT GIT deployed to the instance.",
58+
"description": "The current version of STACKIT Git deployed to the instance.",
5959
"maxLength": 20,
6060
"type": "string"
6161
}
@@ -120,7 +120,7 @@
120120
"paths": {
121121
"/v1beta/projects/{projectId}/instances": {
122122
"get": {
123-
"description": "Returns a list of all STACKIT Git instances within the project.",
123+
"description": "STACKIT Git instances exist within a project, and a project may have zero or more instances.\nThis endpoint allows a user with read-access to a project to list all instances that exist\nwithin the specified project.\n",
124124
"operationId": "ListInstances",
125125
"responses": {
126126
"200": {
@@ -157,7 +157,7 @@
157157
"description": "Internal server error."
158158
}
159159
},
160-
"summary": "STACKIT Git instances exist within a project, and a project may have zero or more instances.\nThis endpoint allows a user with read-access to a project to list all instances that exist\nwithin the specified project.\n",
160+
"summary": "Returns a list of all STACKIT Git instances within the project.",
161161
"x-stackit-authorization": {
162162
"actions": [
163163
"git.instance.list"
@@ -182,7 +182,7 @@
182182
}
183183
],
184184
"post": {
185-
"description": "Creates a new STACKIT Git instance within the project.",
185+
"description": "Users with write-access to a project may create a new STACKIT Git instance by posting\nthe instance creation request to this endpoint, which will schedule the creation of a\nnew STACKIT Git instance within that project.\n",
186186
"operationId": "CreateInstance",
187187
"requestBody": {
188188
"content": {
@@ -233,7 +233,7 @@
233233
"description": "Internal server error."
234234
}
235235
},
236-
"summary": "Users with write-access to a project may create a new STACKIT Git instance by posting\nthe instance creation request to this endpoint, which will schedule the creation of a\nnew STACKIT Git instance within that project.\n",
236+
"summary": "Creates a new STACKIT Git instance within the project.",
237237
"x-stackit-authorization": {
238238
"actions": [
239239
"git.instance.create"
@@ -246,7 +246,7 @@
246246
},
247247
"/v1beta/projects/{projectId}/instances/{instanceId}": {
248248
"delete": {
249-
"description": "Deletes the given STACKIT Git instance.",
249+
"description": "Allows a user with write-access to a project to schedule the deletion of a STACKIT Git\ninstance, which will soon eliminate all repositories \u0026 user metadata associated with\nthat instance. This is a destructive operation.\n",
250250
"operationId": "DeleteInstance",
251251
"responses": {
252252
"202": {
@@ -282,7 +282,7 @@
282282
"description": "Internal server error."
283283
}
284284
},
285-
"summary": "Allows a user with write-access to a project to schedule the deletion of a STACKIT Git\ninstance, which will soon eliminate all repositories \u0026 user metadata associated with\nthat instance. This is a destructive operation.\n",
285+
"summary": "Deletes the given STACKIT Git instance.",
286286
"x-stackit-authorization": {
287287
"actions": [
288288
"git.instance.delete"
@@ -293,7 +293,7 @@
293293
}
294294
},
295295
"get": {
296-
"description": "Returns the details for the given STACKIT Git instance.",
296+
"description": "Provides detailed information about the state of an instance within the specified\nproject including information about how to access the instance for further use.\n",
297297
"operationId": "GetInstance",
298298
"responses": {
299299
"200": {
@@ -333,7 +333,7 @@
333333
"description": "Internal server error."
334334
}
335335
},
336-
"summary": "Provides detailed information about the state of an instance within the specified\nproject including information about how to access the instance for further use.\n",
336+
"summary": "Returns the details for the given STACKIT Git instance.",
337337
"x-stackit-authorization": {
338338
"actions": [
339339
"git.instance.get"

0 commit comments

Comments
 (0)