Skip to content

Commit 905fdbc

Browse files
OAS Update
1 parent 86c5d1a commit 905fdbc

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

services/sqlserverflex/v3beta1/sqlserverflex.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,9 @@
404404
"isDeletable": {
405405
"$ref": "#/components/schemas/instance.isDeletable"
406406
},
407+
"labels": {
408+
"$ref": "#/components/schemas/labels"
409+
},
407410
"name": {
408411
"$ref": "#/components/schemas/instance.name"
409412
},
@@ -1052,6 +1055,9 @@
10521055
"flavorId": {
10531056
"$ref": "#/components/schemas/flavor.flavorId"
10541057
},
1058+
"labels": {
1059+
"$ref": "#/components/schemas/labels"
1060+
},
10551061
"name": {
10561062
"$ref": "#/components/schemas/instance.name"
10571063
},
@@ -1531,6 +1537,21 @@
15311537
],
15321538
"type": "string"
15331539
},
1540+
"labels": {
1541+
"additionalProperties": {
1542+
"maxLength": 63,
1543+
"nullable": true,
1544+
"pattern": "^([A-Za-z0-9]([-A-Za-z0-9_.]*[A-Za-z0-9])?)?$",
1545+
"type": "string"
1546+
},
1547+
"description": "A dictionary of user-defined key-value pairs used to categorize or organize the resource.\n\n**Rules for Keys:**\n* Must be between 1 and 63 characters long.\n* Must begin and end with an alphanumeric character (`[a-z0-9A-Z]`).\n* May contain dashes (`-`), underscores (`_`), and dots (`.`).\n* **Regex:** `^(?=.{1,63}$)([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]$`\n* **Restriction:** The prefix `stackit-` is strictly reserved and cannot be used.\n\n**Rules for Values:**\n* Must be between 0 (empty string) and 63 characters long.\n* If not empty, must begin and end with an alphanumeric character.\n* May contain dashes (`-`), underscores (`_`), and dots (`.`).\n* **Regex:** `^(?=.{0,63}$)(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])*$`\n",
1548+
"example": {
1549+
"environment": "production",
1550+
"team": "backend"
1551+
},
1552+
"maxProperties": 64,
1553+
"type": "object"
1554+
},
15341555
"protect.isDeletable": {
15351556
"description": "Protect instance from deletion.",
15361557
"example": true,
@@ -1745,6 +1766,9 @@
17451766
"flavorId": {
17461767
"$ref": "#/components/schemas/flavor.flavorId.opt"
17471768
},
1769+
"labels": {
1770+
"$ref": "#/components/schemas/labels"
1771+
},
17481772
"name": {
17491773
"$ref": "#/components/schemas/instance.name.opt"
17501774
},
@@ -1783,6 +1807,9 @@
17831807
"flavorId": {
17841808
"$ref": "#/components/schemas/flavor.flavorId"
17851809
},
1810+
"labels": {
1811+
"$ref": "#/components/schemas/labels"
1812+
},
17861813
"name": {
17871814
"$ref": "#/components/schemas/instance.name"
17881815
},

0 commit comments

Comments
 (0)