Skip to content

Commit b35eee7

Browse files
OAS Update
1 parent 5591aab commit b35eee7

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

services/kms/v1beta/kms.json

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,14 +738,15 @@
738738
}
739739
},
740740
"info": {
741-
"description": "This API provides endpoints for managing keys and key rings.\n",
741+
"description": "### DEPRECATED! This service is no longer maintained. Please use the version v1 instead.\nThis API provides endpoints for managing keys and key rings.\n",
742742
"title": "STACKIT Key Management Service API",
743743
"version": "1beta.0.0"
744744
},
745745
"openapi": "3.0.3",
746746
"paths": {
747747
"/v1beta/projects/{projectId}/regions/{regionId}/keyrings": {
748748
"get": {
749+
"deprecated": true,
749750
"description": "Returns a list of all key rings within the project.",
750751
"operationId": "ListKeyRings",
751752
"responses": {
@@ -788,6 +789,7 @@
788789
}
789790
],
790791
"post": {
792+
"deprecated": true,
791793
"description": "Creates a new key ring within the project.",
792794
"operationId": "CreateKeyRing",
793795
"requestBody": {
@@ -834,6 +836,7 @@
834836
},
835837
"/v1beta/projects/{projectId}/regions/{regionId}/keyrings/{keyRingId}": {
836838
"delete": {
839+
"deprecated": true,
837840
"description": "Deletes the given key ring if it is empty",
838841
"operationId": "DeleteKeyRing",
839842
"responses": {
@@ -867,6 +870,7 @@
867870
}
868871
},
869872
"get": {
873+
"deprecated": true,
870874
"description": "Returns the details for the given key ring.",
871875
"operationId": "GetKeyRing",
872876
"responses": {
@@ -917,6 +921,7 @@
917921
},
918922
"/v1beta/projects/{projectId}/regions/{regionId}/keyrings/{keyRingId}/keys": {
919923
"get": {
924+
"deprecated": true,
920925
"description": "Returns the keys for the given key ring.",
921926
"operationId": "ListKeys",
922927
"responses": {
@@ -965,6 +970,7 @@
965970
}
966971
],
967972
"post": {
973+
"deprecated": true,
968974
"description": "Creates a new key for the given key ring.",
969975
"operationId": "CreateKey",
970976
"requestBody": {
@@ -1014,6 +1020,7 @@
10141020
},
10151021
"/v1beta/projects/{projectId}/regions/{regionId}/keyrings/{keyRingId}/keys/{keyId}": {
10161022
"delete": {
1023+
"deprecated": true,
10171024
"description": "Schedules the deletion of the given key",
10181025
"operationId": "DeleteKey",
10191026
"responses": {
@@ -1047,6 +1054,7 @@
10471054
}
10481055
},
10491056
"get": {
1057+
"deprecated": true,
10501058
"description": "Returns the details for the given key.",
10511059
"operationId": "GetKey",
10521060
"responses": {
@@ -1114,6 +1122,7 @@
11141122
}
11151123
],
11161124
"post": {
1125+
"deprecated": true,
11171126
"description": "Imports a new version to the given key.",
11181127
"operationId": "ImportKey",
11191128
"requestBody": {
@@ -1180,6 +1189,7 @@
11801189
}
11811190
],
11821191
"post": {
1192+
"deprecated": true,
11831193
"description": "Restores the given key from being deleted.",
11841194
"operationId": "RestoreKey",
11851195
"responses": {
@@ -1229,6 +1239,7 @@
12291239
}
12301240
],
12311241
"post": {
1242+
"deprecated": true,
12321243
"description": "Rotates the given key.",
12331244
"operationId": "RotateKey",
12341245
"responses": {
@@ -1274,6 +1285,7 @@
12741285
},
12751286
"/v1beta/projects/{projectId}/regions/{regionId}/keyrings/{keyRingId}/keys/{keyId}/versions": {
12761287
"get": {
1288+
"deprecated": true,
12771289
"description": "Returns a list of all versions of a given key.",
12781290
"operationId": "ListVersions",
12791291
"responses": {
@@ -1327,6 +1339,7 @@
13271339
},
13281340
"/v1beta/projects/{projectId}/regions/{regionId}/keyrings/{keyRingId}/keys/{keyId}/versions/{versionNumber}": {
13291341
"get": {
1342+
"deprecated": true,
13301343
"description": "Returns the details for the given version.",
13311344
"operationId": "GetVersion",
13321345
"responses": {
@@ -1400,6 +1413,7 @@
14001413
}
14011414
],
14021415
"post": {
1416+
"deprecated": true,
14031417
"description": "Decrypts data using the given key version.",
14041418
"operationId": "Decrypt",
14051419
"requestBody": {
@@ -1469,6 +1483,7 @@
14691483
}
14701484
],
14711485
"post": {
1486+
"deprecated": true,
14721487
"description": "Removes the key material of a version permanently.",
14731488
"operationId": "DestroyVersion",
14741489
"responses": {
@@ -1521,6 +1536,7 @@
15211536
}
15221537
],
15231538
"post": {
1539+
"deprecated": true,
15241540
"description": "Disables the given version.",
15251541
"operationId": "DisableVersion",
15261542
"responses": {
@@ -1573,6 +1589,7 @@
15731589
}
15741590
],
15751591
"post": {
1592+
"deprecated": true,
15761593
"description": "Enables the given version.",
15771594
"operationId": "EnableVersion",
15781595
"responses": {
@@ -1625,6 +1642,7 @@
16251642
}
16261643
],
16271644
"post": {
1645+
"deprecated": true,
16281646
"description": "Encrypts data using the given key version.",
16291647
"operationId": "Encrypt",
16301648
"requestBody": {
@@ -1694,6 +1712,7 @@
16941712
}
16951713
],
16961714
"post": {
1715+
"deprecated": true,
16971716
"description": "Restores the given version from being destroyed",
16981717
"operationId": "RestoreVersion",
16991718
"responses": {
@@ -1746,6 +1765,7 @@
17461765
}
17471766
],
17481767
"post": {
1768+
"deprecated": true,
17491769
"description": "Sign data using the given key version as secret.",
17501770
"operationId": "Sign",
17511771
"requestBody": {
@@ -1815,6 +1835,7 @@
18151835
}
18161836
],
18171837
"post": {
1838+
"deprecated": true,
18181839
"description": "Verify data using the given key version as secret.",
18191840
"operationId": "Verify",
18201841
"requestBody": {
@@ -1867,6 +1888,7 @@
18671888
},
18681889
"/v1beta/projects/{projectId}/regions/{regionId}/keyrings/{keyRingId}/wrappingkeys": {
18691890
"get": {
1891+
"deprecated": true,
18701892
"description": "Returns the wrapping keys for the given key ring.",
18711893
"operationId": "ListWrappingKeys",
18721894
"responses": {
@@ -1915,6 +1937,7 @@
19151937
}
19161938
],
19171939
"post": {
1940+
"deprecated": true,
19181941
"description": "Creates a new wrapping key for the given key ring.",
19191942
"operationId": "CreateWrappingKey",
19201943
"requestBody": {
@@ -1964,6 +1987,7 @@
19641987
},
19651988
"/v1beta/projects/{projectId}/regions/{regionId}/keyrings/{keyRingId}/wrappingkeys/{wrappingKeyId}": {
19661989
"delete": {
1990+
"deprecated": true,
19671991
"description": "Deletes the given wrapping key",
19681992
"operationId": "DeleteWrappingKey",
19691993
"responses": {
@@ -1997,6 +2021,7 @@
19972021
}
19982022
},
19992023
"get": {
2024+
"deprecated": true,
20002025
"description": "Returns the details for the given wrapping key.",
20012026
"operationId": "GetWrappingKey",
20022027
"responses": {

0 commit comments

Comments
 (0)