@sphereon/ssi-sdk.kms-rest-client 0.34.1-feature.IDK.11.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/dist/index.cjs +2083 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +1468 -0
- package/dist/index.d.ts +1468 -0
- package/dist/index.js +2063 -0
- package/dist/index.js.map +1 -0
- package/package.json +60 -0
- package/plugin.schema.json +1123 -0
- package/src/agent/KmsRestClient.ts +468 -0
- package/src/index.ts +7 -0
- package/src/models/AwsAssumeRoleCredentials.ts +98 -0
- package/src/models/AwsClientConfiguration.ts +72 -0
- package/src/models/AwsKmsSetting.ts +126 -0
- package/src/models/AwsStaticCredentials.ts +98 -0
- package/src/models/AwsWebIdentityTokenCredentials.ts +99 -0
- package/src/models/AzureClientSecretCredentialOpts.ts +90 -0
- package/src/models/AzureCredentialOpts.ts +70 -0
- package/src/models/AzureKeyVaultSetting.ts +112 -0
- package/src/models/CoseKey.ts +145 -0
- package/src/models/CoseKeyPair.ts +79 -0
- package/src/models/CoseKeyType.ts +55 -0
- package/src/models/CreateKeyProvider.ts +115 -0
- package/src/models/CreateRawSignature.ts +80 -0
- package/src/models/CreateRawSignatureResponse.ts +65 -0
- package/src/models/CreateSimpleSignature.ts +100 -0
- package/src/models/CryptoAlg.ts +55 -0
- package/src/models/Curve.ts +59 -0
- package/src/models/DigestAlg.ts +58 -0
- package/src/models/ErrorResponse.ts +82 -0
- package/src/models/GenerateKey.ts +106 -0
- package/src/models/GenerateKeyGlobal.ts +114 -0
- package/src/models/GenerateKeyResponse.ts +71 -0
- package/src/models/GetKeyResponse.ts +71 -0
- package/src/models/IdentifierMethod.ts +56 -0
- package/src/models/JoseKeyPair.ts +79 -0
- package/src/models/Jwk.ts +248 -0
- package/src/models/JwkKeyType.ts +55 -0
- package/src/models/JwkUse.ts +53 -0
- package/src/models/KeyEncoding.ts +53 -0
- package/src/models/KeyInfo.ts +164 -0
- package/src/models/KeyOperations.ts +59 -0
- package/src/models/KeyProvider.ts +82 -0
- package/src/models/KeyProviderResponse.ts +82 -0
- package/src/models/KeyProviderType.ts +54 -0
- package/src/models/KeyResolver.ts +92 -0
- package/src/models/KeyType.ts +54 -0
- package/src/models/KeyVisibility.ts +53 -0
- package/src/models/ListKeyProvidersResponse.ts +71 -0
- package/src/models/ListKeysResponse.ts +71 -0
- package/src/models/ListResolversResponse.ts +71 -0
- package/src/models/LookupMode.ts +54 -0
- package/src/models/ManagedKeyInfo.ts +167 -0
- package/src/models/ManagedKeyPair.ts +111 -0
- package/src/models/MaskGenFunction.ts +52 -0
- package/src/models/ProviderCapabilities.ts +122 -0
- package/src/models/ResolvePublicKey.ts +102 -0
- package/src/models/ResolvedKeyInfo.ts +165 -0
- package/src/models/Resolver.ts +92 -0
- package/src/models/SignInput.ts +92 -0
- package/src/models/SignOutput.ts +79 -0
- package/src/models/Signature.ts +103 -0
- package/src/models/SignatureAlgorithm.ts +63 -0
- package/src/models/StoreKey.ts +79 -0
- package/src/models/StoreKeyResponse.ts +71 -0
- package/src/models/UpdateKeyProvider.ts +99 -0
- package/src/models/VerifyRawSignature.ts +89 -0
- package/src/models/VerifyRawSignatureResponse.ts +65 -0
- package/src/models/VerifySimpleSignature.ts +85 -0
- package/src/models/index.ts +60 -0
- package/src/types/IKmsRestClient.ts +133 -0
|
@@ -0,0 +1,1123 @@
|
|
|
1
|
+
{
|
|
2
|
+
"IKmsRestClient": {
|
|
3
|
+
"components": {
|
|
4
|
+
"schemas": {
|
|
5
|
+
"KmsCreateRawSignatureArgs": {
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"properties": {
|
|
9
|
+
"keyInfo": {
|
|
10
|
+
"$ref": "#/components/schemas/KeyInfo"
|
|
11
|
+
},
|
|
12
|
+
"input": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"baseUrl": {
|
|
16
|
+
"type": "string"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"required": [
|
|
20
|
+
"input",
|
|
21
|
+
"keyInfo"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
"KeyInfo": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"properties": {
|
|
27
|
+
"kid": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"description": "Unique identifier for the cryptographic key. Can be null if the key identifier is not provided."
|
|
30
|
+
},
|
|
31
|
+
"key": {
|
|
32
|
+
"$ref": "#/components/schemas/Jwk"
|
|
33
|
+
},
|
|
34
|
+
"signatureAlgorithm": {
|
|
35
|
+
"$ref": "#/components/schemas/SignatureAlgorithm"
|
|
36
|
+
},
|
|
37
|
+
"keyVisibility": {
|
|
38
|
+
"$ref": "#/components/schemas/KeyVisibility"
|
|
39
|
+
},
|
|
40
|
+
"x5c": {
|
|
41
|
+
"type": "array",
|
|
42
|
+
"items": {
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
45
|
+
"description": "X.509 certificate chain associated with the key."
|
|
46
|
+
},
|
|
47
|
+
"alias": {
|
|
48
|
+
"type": "string",
|
|
49
|
+
"description": "A reference or alias to the key in the Key Management Service (KMS)."
|
|
50
|
+
},
|
|
51
|
+
"providerId": {
|
|
52
|
+
"type": "string",
|
|
53
|
+
"description": "The Key Management System (KMS) identifier associated with the key."
|
|
54
|
+
},
|
|
55
|
+
"keyType": {
|
|
56
|
+
"$ref": "#/components/schemas/KeyType"
|
|
57
|
+
},
|
|
58
|
+
"keyEncoding": {
|
|
59
|
+
"$ref": "#/components/schemas/KeyEncoding"
|
|
60
|
+
},
|
|
61
|
+
"opts": {
|
|
62
|
+
"type": "object",
|
|
63
|
+
"additionalProperties": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"description": "Additional configuration options as key-value pairs."
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"additionalProperties": false,
|
|
70
|
+
"description": "Information about a cryptographic key, providing metadata and configuration details necessary for cryptographic operations."
|
|
71
|
+
},
|
|
72
|
+
"Jwk": {
|
|
73
|
+
"type": "object",
|
|
74
|
+
"properties": {
|
|
75
|
+
"kty": {
|
|
76
|
+
"$ref": "#/components/schemas/JwkKeyType"
|
|
77
|
+
},
|
|
78
|
+
"kid": {
|
|
79
|
+
"type": "string",
|
|
80
|
+
"description": "Key identifier used to uniquely identify the key."
|
|
81
|
+
},
|
|
82
|
+
"alg": {
|
|
83
|
+
"type": "string",
|
|
84
|
+
"description": "The algorithm intended for use with the key (JWA algorithm name)."
|
|
85
|
+
},
|
|
86
|
+
"use": {
|
|
87
|
+
"$ref": "#/components/schemas/JwkUse"
|
|
88
|
+
},
|
|
89
|
+
"keyOps": {
|
|
90
|
+
"type": "array",
|
|
91
|
+
"items": {
|
|
92
|
+
"$ref": "#/components/schemas/KeyOperations"
|
|
93
|
+
},
|
|
94
|
+
"description": "The allowed cryptographic operations for the key."
|
|
95
|
+
},
|
|
96
|
+
"crv": {
|
|
97
|
+
"$ref": "#/components/schemas/Curve"
|
|
98
|
+
},
|
|
99
|
+
"x": {
|
|
100
|
+
"type": "string",
|
|
101
|
+
"description": "The x coordinate for elliptic curve keys (base64url-encoded)."
|
|
102
|
+
},
|
|
103
|
+
"y": {
|
|
104
|
+
"type": "string",
|
|
105
|
+
"description": "The y coordinate for elliptic curve keys (base64url-encoded)."
|
|
106
|
+
},
|
|
107
|
+
"d": {
|
|
108
|
+
"type": "string",
|
|
109
|
+
"description": "The private key parameter (base64url-encoded)."
|
|
110
|
+
},
|
|
111
|
+
"n": {
|
|
112
|
+
"type": "string",
|
|
113
|
+
"description": "The modulus value for RSA keys (base64url-encoded)."
|
|
114
|
+
},
|
|
115
|
+
"e": {
|
|
116
|
+
"type": "string",
|
|
117
|
+
"description": "The public exponent for RSA keys (base64url-encoded)."
|
|
118
|
+
},
|
|
119
|
+
"p": {
|
|
120
|
+
"type": "string",
|
|
121
|
+
"description": "The first prime factor for RSA private keys (base64url-encoded)."
|
|
122
|
+
},
|
|
123
|
+
"q": {
|
|
124
|
+
"type": "string",
|
|
125
|
+
"description": "The second prime factor for RSA private keys (base64url-encoded)."
|
|
126
|
+
},
|
|
127
|
+
"dp": {
|
|
128
|
+
"type": "string",
|
|
129
|
+
"description": "The first factor CRT exponent for RSA private keys (base64url-encoded)."
|
|
130
|
+
},
|
|
131
|
+
"dq": {
|
|
132
|
+
"type": "string",
|
|
133
|
+
"description": "The second factor CRT exponent for RSA private keys (base64url-encoded)."
|
|
134
|
+
},
|
|
135
|
+
"qi": {
|
|
136
|
+
"type": "string",
|
|
137
|
+
"description": "The first CRT coefficient for RSA private keys (base64url-encoded)."
|
|
138
|
+
},
|
|
139
|
+
"k": {
|
|
140
|
+
"type": "string",
|
|
141
|
+
"description": "The symmetric key value (base64url-encoded)."
|
|
142
|
+
},
|
|
143
|
+
"x5c": {
|
|
144
|
+
"type": "array",
|
|
145
|
+
"items": {
|
|
146
|
+
"type": "string"
|
|
147
|
+
},
|
|
148
|
+
"description": "X.509 certificate chain as base64-encoded DER certificates."
|
|
149
|
+
},
|
|
150
|
+
"x5t": {
|
|
151
|
+
"type": "string",
|
|
152
|
+
"description": "X.509 certificate SHA-1 thumbprint (base64url-encoded)."
|
|
153
|
+
},
|
|
154
|
+
"x5u": {
|
|
155
|
+
"type": "string",
|
|
156
|
+
"description": "URL pointing to X.509 certificate or certificate chain."
|
|
157
|
+
},
|
|
158
|
+
"x5tS256": {
|
|
159
|
+
"type": "string",
|
|
160
|
+
"description": "X.509 certificate SHA-256 thumbprint (base64url-encoded)."
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"required": [
|
|
164
|
+
"kty"
|
|
165
|
+
],
|
|
166
|
+
"additionalProperties": false,
|
|
167
|
+
"description": "Represents a JSON Web Key (JWK) as defined by the JSON Web Key specification."
|
|
168
|
+
},
|
|
169
|
+
"JwkKeyType": {
|
|
170
|
+
"type": "string",
|
|
171
|
+
"enum": [
|
|
172
|
+
"EC",
|
|
173
|
+
"RSA",
|
|
174
|
+
"OKP",
|
|
175
|
+
"oct"
|
|
176
|
+
],
|
|
177
|
+
"description": "JSON Web Key (JWK) key type parameter identifying the cryptographic algorithm family."
|
|
178
|
+
},
|
|
179
|
+
"JwkUse": {
|
|
180
|
+
"type": "string",
|
|
181
|
+
"enum": [
|
|
182
|
+
"sig",
|
|
183
|
+
"enc"
|
|
184
|
+
],
|
|
185
|
+
"description": "Intended use of the key (signing or encryption)."
|
|
186
|
+
},
|
|
187
|
+
"KeyOperations": {
|
|
188
|
+
"type": "string",
|
|
189
|
+
"enum": [
|
|
190
|
+
"sign",
|
|
191
|
+
"verify",
|
|
192
|
+
"encrypt",
|
|
193
|
+
"decrypt",
|
|
194
|
+
"wrapKey",
|
|
195
|
+
"unwrapKey",
|
|
196
|
+
"deriveKey",
|
|
197
|
+
"deriveBits"
|
|
198
|
+
],
|
|
199
|
+
"description": "Specific operations the key is intended for."
|
|
200
|
+
},
|
|
201
|
+
"Curve": {
|
|
202
|
+
"type": "string",
|
|
203
|
+
"enum": [
|
|
204
|
+
"P-256",
|
|
205
|
+
"P-384",
|
|
206
|
+
"P-521",
|
|
207
|
+
"secp256k1",
|
|
208
|
+
"Ed25519",
|
|
209
|
+
"Ed448",
|
|
210
|
+
"X25519",
|
|
211
|
+
"X448"
|
|
212
|
+
],
|
|
213
|
+
"description": "Elliptic curve identifier."
|
|
214
|
+
},
|
|
215
|
+
"SignatureAlgorithm": {
|
|
216
|
+
"type": "string",
|
|
217
|
+
"enum": [
|
|
218
|
+
"ED25519",
|
|
219
|
+
"ECDSA_SHA256",
|
|
220
|
+
"ECDSA_SHA384",
|
|
221
|
+
"ECDSA_SHA512",
|
|
222
|
+
"ES256K",
|
|
223
|
+
"ECKA_DH_SHA256",
|
|
224
|
+
"HMAC_SHA256",
|
|
225
|
+
"HMAC_SHA384",
|
|
226
|
+
"HMAC_SHA512",
|
|
227
|
+
"RSA_SSA_PSS_SHA256_MGF1",
|
|
228
|
+
"RSA_SSA_PSS_SHA384_MGF1",
|
|
229
|
+
"RSA_SSA_PSS_SHA512_MGF1"
|
|
230
|
+
],
|
|
231
|
+
"description": "Cryptographic signature algorithm identifier."
|
|
232
|
+
},
|
|
233
|
+
"KeyVisibility": {
|
|
234
|
+
"type": "string",
|
|
235
|
+
"enum": [
|
|
236
|
+
"PUBLIC",
|
|
237
|
+
"PRIVATE"
|
|
238
|
+
],
|
|
239
|
+
"description": "Indicates the visibility status of a cryptographic key."
|
|
240
|
+
},
|
|
241
|
+
"KeyType": {
|
|
242
|
+
"type": "string",
|
|
243
|
+
"enum": [
|
|
244
|
+
"OKP",
|
|
245
|
+
"EC",
|
|
246
|
+
"RSA"
|
|
247
|
+
],
|
|
248
|
+
"description": "Cryptographic key type identifier."
|
|
249
|
+
},
|
|
250
|
+
"KeyEncoding": {
|
|
251
|
+
"type": "string",
|
|
252
|
+
"enum": [
|
|
253
|
+
"COSE",
|
|
254
|
+
"JOSE"
|
|
255
|
+
],
|
|
256
|
+
"description": "The encoding format of the cryptographic key."
|
|
257
|
+
},
|
|
258
|
+
"CreateRawSignatureResponse": {
|
|
259
|
+
"type": "object",
|
|
260
|
+
"properties": {
|
|
261
|
+
"signature": {
|
|
262
|
+
"type": "string",
|
|
263
|
+
"description": "The created signature encoded as a base64 string."
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"required": [
|
|
267
|
+
"signature"
|
|
268
|
+
],
|
|
269
|
+
"additionalProperties": false,
|
|
270
|
+
"description": "Response body containing the created signature."
|
|
271
|
+
},
|
|
272
|
+
"KmsDeleteKeyArgs": {
|
|
273
|
+
"type": "object",
|
|
274
|
+
"properties": {
|
|
275
|
+
"baseUrl": {
|
|
276
|
+
"type": "string"
|
|
277
|
+
},
|
|
278
|
+
"aliasOrKid": {
|
|
279
|
+
"type": "string"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
"additionalProperties": false
|
|
283
|
+
},
|
|
284
|
+
"KmsGenerateKeyArgs": {
|
|
285
|
+
"type": "object",
|
|
286
|
+
"additionalProperties": false,
|
|
287
|
+
"properties": {
|
|
288
|
+
"alias": {
|
|
289
|
+
"type": "string",
|
|
290
|
+
"description": "Alias for the generated key."
|
|
291
|
+
},
|
|
292
|
+
"use": {
|
|
293
|
+
"$ref": "#/components/schemas/JwkUse"
|
|
294
|
+
},
|
|
295
|
+
"keyOperations": {
|
|
296
|
+
"type": "array",
|
|
297
|
+
"items": {
|
|
298
|
+
"$ref": "#/components/schemas/KeyOperations"
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"alg": {
|
|
302
|
+
"$ref": "#/components/schemas/SignatureAlgorithm"
|
|
303
|
+
},
|
|
304
|
+
"providerId": {
|
|
305
|
+
"type": "string",
|
|
306
|
+
"description": "Optional provider ID. If not specified, the default provider will be used."
|
|
307
|
+
},
|
|
308
|
+
"baseUrl": {
|
|
309
|
+
"type": "string"
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"ManagedKeyPair": {
|
|
314
|
+
"type": "object",
|
|
315
|
+
"properties": {
|
|
316
|
+
"kid": {
|
|
317
|
+
"type": "string",
|
|
318
|
+
"description": "Key identifier, may be null."
|
|
319
|
+
},
|
|
320
|
+
"providerId": {
|
|
321
|
+
"type": "string",
|
|
322
|
+
"description": "Key Management System identifier."
|
|
323
|
+
},
|
|
324
|
+
"alias": {
|
|
325
|
+
"type": "string",
|
|
326
|
+
"description": "Reference to the key in the KMS."
|
|
327
|
+
},
|
|
328
|
+
"cose": {
|
|
329
|
+
"$ref": "#/components/schemas/CoseKeyPair"
|
|
330
|
+
},
|
|
331
|
+
"jose": {
|
|
332
|
+
"$ref": "#/components/schemas/JoseKeyPair"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"required": [
|
|
336
|
+
"providerId",
|
|
337
|
+
"alias",
|
|
338
|
+
"cose",
|
|
339
|
+
"jose"
|
|
340
|
+
],
|
|
341
|
+
"additionalProperties": false,
|
|
342
|
+
"description": "Represents a key pair used by a crypto provider, encapsulating both JOSE and COSE key pairs."
|
|
343
|
+
},
|
|
344
|
+
"CoseKeyPair": {
|
|
345
|
+
"type": "object",
|
|
346
|
+
"properties": {
|
|
347
|
+
"privateCoseKey": {
|
|
348
|
+
"$ref": "#/components/schemas/CoseKey"
|
|
349
|
+
},
|
|
350
|
+
"publicCoseKey": {
|
|
351
|
+
"$ref": "#/components/schemas/CoseKey"
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
"required": [
|
|
355
|
+
"publicCoseKey"
|
|
356
|
+
],
|
|
357
|
+
"additionalProperties": false,
|
|
358
|
+
"description": "Represents a cryptographic key pair for COSE (CBOR Object Signing and Encryption) operations."
|
|
359
|
+
},
|
|
360
|
+
"CoseKey": {
|
|
361
|
+
"type": "object",
|
|
362
|
+
"properties": {
|
|
363
|
+
"kty": {
|
|
364
|
+
"$ref": "#/components/schemas/CoseKeyType"
|
|
365
|
+
},
|
|
366
|
+
"kid": {
|
|
367
|
+
"type": "string",
|
|
368
|
+
"description": "Key identifier (base64url-encoded byte string)."
|
|
369
|
+
},
|
|
370
|
+
"alg": {
|
|
371
|
+
"type": "number",
|
|
372
|
+
"description": "The COSE algorithm identifier (e.g., -7=ES256, -35=ES384, -36=ES512, -8=EdDSA)."
|
|
373
|
+
},
|
|
374
|
+
"keyOps": {
|
|
375
|
+
"type": "array",
|
|
376
|
+
"items": {
|
|
377
|
+
"type": "number"
|
|
378
|
+
},
|
|
379
|
+
"description": "The allowed COSE key operations (1=sign, 2=verify, 3=encrypt, 4=decrypt, etc.)."
|
|
380
|
+
},
|
|
381
|
+
"baseIV": {
|
|
382
|
+
"type": "string",
|
|
383
|
+
"description": "Base initialization vector (base64url-encoded)."
|
|
384
|
+
},
|
|
385
|
+
"crv": {
|
|
386
|
+
"type": "number",
|
|
387
|
+
"description": "The COSE curve identifier (1=P-256, 2=P-384, 3=P-521, 8=secp256k1, 6=Ed25519, etc.)."
|
|
388
|
+
},
|
|
389
|
+
"x": {
|
|
390
|
+
"type": "string",
|
|
391
|
+
"description": "The x coordinate (base64url-encoded byte string)."
|
|
392
|
+
},
|
|
393
|
+
"y": {
|
|
394
|
+
"type": "string",
|
|
395
|
+
"description": "The y coordinate (base64url-encoded byte string)."
|
|
396
|
+
},
|
|
397
|
+
"d": {
|
|
398
|
+
"type": "string",
|
|
399
|
+
"description": "The private key parameter (base64url-encoded byte string)."
|
|
400
|
+
},
|
|
401
|
+
"x5chain": {
|
|
402
|
+
"type": "array",
|
|
403
|
+
"items": {
|
|
404
|
+
"type": "string"
|
|
405
|
+
},
|
|
406
|
+
"description": "X.509 certificate chain as base64-encoded certificates."
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"required": [
|
|
410
|
+
"kty"
|
|
411
|
+
],
|
|
412
|
+
"additionalProperties": false,
|
|
413
|
+
"description": "Represents a COSE (CBOR Object Signing and Encryption) key in JSON format."
|
|
414
|
+
},
|
|
415
|
+
"CoseKeyType": {
|
|
416
|
+
"type": "number",
|
|
417
|
+
"enum": [
|
|
418
|
+
1,
|
|
419
|
+
2,
|
|
420
|
+
3,
|
|
421
|
+
4
|
|
422
|
+
],
|
|
423
|
+
"description": "COSE key type parameter. 1=OKP (Octet Key Pair), 2=EC2 (Elliptic Curve), 3=RSA, 4=Symmetric."
|
|
424
|
+
},
|
|
425
|
+
"JoseKeyPair": {
|
|
426
|
+
"type": "object",
|
|
427
|
+
"properties": {
|
|
428
|
+
"privateJwk": {
|
|
429
|
+
"$ref": "#/components/schemas/Jwk"
|
|
430
|
+
},
|
|
431
|
+
"publicJwk": {
|
|
432
|
+
"$ref": "#/components/schemas/Jwk"
|
|
433
|
+
}
|
|
434
|
+
},
|
|
435
|
+
"required": [
|
|
436
|
+
"publicJwk"
|
|
437
|
+
],
|
|
438
|
+
"additionalProperties": false,
|
|
439
|
+
"description": "Data class representing a cryptographic key pair used with JOSE (JSON Object Signing and Encryption)."
|
|
440
|
+
},
|
|
441
|
+
"KmsGetKeyArgs": {
|
|
442
|
+
"type": "object",
|
|
443
|
+
"properties": {
|
|
444
|
+
"baseUrl": {
|
|
445
|
+
"type": "string"
|
|
446
|
+
},
|
|
447
|
+
"aliasOrKid": {
|
|
448
|
+
"type": "string"
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
"required": [
|
|
452
|
+
"aliasOrKid"
|
|
453
|
+
],
|
|
454
|
+
"additionalProperties": false
|
|
455
|
+
},
|
|
456
|
+
"ManagedKeyInfo": {
|
|
457
|
+
"type": "object",
|
|
458
|
+
"properties": {
|
|
459
|
+
"kid": {
|
|
460
|
+
"type": "string",
|
|
461
|
+
"description": "Unique identifier for the cryptographic key. Can be null if the key identifier is not provided."
|
|
462
|
+
},
|
|
463
|
+
"key": {
|
|
464
|
+
"$ref": "#/components/schemas/Jwk"
|
|
465
|
+
},
|
|
466
|
+
"signatureAlgorithm": {
|
|
467
|
+
"$ref": "#/components/schemas/SignatureAlgorithm"
|
|
468
|
+
},
|
|
469
|
+
"keyVisibility": {
|
|
470
|
+
"$ref": "#/components/schemas/KeyVisibility"
|
|
471
|
+
},
|
|
472
|
+
"x5c": {
|
|
473
|
+
"type": "array",
|
|
474
|
+
"items": {
|
|
475
|
+
"type": "string"
|
|
476
|
+
},
|
|
477
|
+
"description": "X.509 certificate chain associated with the key."
|
|
478
|
+
},
|
|
479
|
+
"alias": {
|
|
480
|
+
"type": "string",
|
|
481
|
+
"description": "A reference or alias to the key in the Key Management Service (KMS)."
|
|
482
|
+
},
|
|
483
|
+
"providerId": {
|
|
484
|
+
"type": "string",
|
|
485
|
+
"description": "The Key Management System (KMS) identifier associated with the key."
|
|
486
|
+
},
|
|
487
|
+
"keyType": {
|
|
488
|
+
"$ref": "#/components/schemas/KeyType"
|
|
489
|
+
},
|
|
490
|
+
"keyEncoding": {
|
|
491
|
+
"$ref": "#/components/schemas/KeyEncoding"
|
|
492
|
+
},
|
|
493
|
+
"opts": {
|
|
494
|
+
"type": "object",
|
|
495
|
+
"additionalProperties": {
|
|
496
|
+
"type": "string"
|
|
497
|
+
},
|
|
498
|
+
"description": "Additional configuration options as key-value pairs."
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
"required": [
|
|
502
|
+
"key",
|
|
503
|
+
"alias",
|
|
504
|
+
"providerId"
|
|
505
|
+
],
|
|
506
|
+
"additionalProperties": false,
|
|
507
|
+
"description": "Represents a managed cryptographic key information that is guaranteed to be present and resolved, part of a KMS providing concrete access to the key."
|
|
508
|
+
},
|
|
509
|
+
"KmsGetKeyProviderArgs": {
|
|
510
|
+
"type": "object",
|
|
511
|
+
"properties": {
|
|
512
|
+
"baseUrl": {
|
|
513
|
+
"type": "string"
|
|
514
|
+
},
|
|
515
|
+
"providerId": {
|
|
516
|
+
"type": "string"
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
"additionalProperties": false
|
|
520
|
+
},
|
|
521
|
+
"KeyProviderResponse": {
|
|
522
|
+
"type": "object",
|
|
523
|
+
"properties": {
|
|
524
|
+
"providerId": {
|
|
525
|
+
"type": "string",
|
|
526
|
+
"description": "The unique identifier assigned to the Key Provider instance upon creation."
|
|
527
|
+
},
|
|
528
|
+
"type": {
|
|
529
|
+
"$ref": "#/components/schemas/KeyProviderType"
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
"required": [
|
|
533
|
+
"providerId",
|
|
534
|
+
"type"
|
|
535
|
+
],
|
|
536
|
+
"additionalProperties": false,
|
|
537
|
+
"description": "Response body containing the details of a Key Provider instance."
|
|
538
|
+
},
|
|
539
|
+
"KeyProviderType": {
|
|
540
|
+
"type": "string",
|
|
541
|
+
"enum": [
|
|
542
|
+
"SOFTWARE",
|
|
543
|
+
"AZURE_KEYVAULT",
|
|
544
|
+
"AWS_KMS"
|
|
545
|
+
],
|
|
546
|
+
"description": "The type of Key Provider. Determines the required configuration settings. - AZURE_KEYVAULT: Microsoft Azure Key Vault or Managed HSM. - AWS_KMS: Amazon Web Services Key Management Service."
|
|
547
|
+
},
|
|
548
|
+
"kmsGetResolverArgs": {
|
|
549
|
+
"type": "object",
|
|
550
|
+
"properties": {
|
|
551
|
+
"baseUrl": {
|
|
552
|
+
"type": "string"
|
|
553
|
+
},
|
|
554
|
+
"resolverId": {
|
|
555
|
+
"type": "string"
|
|
556
|
+
}
|
|
557
|
+
},
|
|
558
|
+
"required": [
|
|
559
|
+
"resolverId"
|
|
560
|
+
],
|
|
561
|
+
"additionalProperties": false
|
|
562
|
+
},
|
|
563
|
+
"Resolver": {
|
|
564
|
+
"type": "object",
|
|
565
|
+
"properties": {
|
|
566
|
+
"resolverId": {
|
|
567
|
+
"type": "string",
|
|
568
|
+
"description": "Unique identifier for the resolver."
|
|
569
|
+
},
|
|
570
|
+
"supportedIdentifierMethods": {
|
|
571
|
+
"type": "array",
|
|
572
|
+
"items": {
|
|
573
|
+
"$ref": "#/components/schemas/IdentifierMethod"
|
|
574
|
+
},
|
|
575
|
+
"description": "List of identifier methods supported by this resolver."
|
|
576
|
+
},
|
|
577
|
+
"supportedKeyTypes": {
|
|
578
|
+
"type": "array",
|
|
579
|
+
"items": {
|
|
580
|
+
"$ref": "#/components/schemas/KeyType"
|
|
581
|
+
},
|
|
582
|
+
"description": "List of key types supported by this resolver."
|
|
583
|
+
}
|
|
584
|
+
},
|
|
585
|
+
"required": [
|
|
586
|
+
"resolverId"
|
|
587
|
+
],
|
|
588
|
+
"additionalProperties": false,
|
|
589
|
+
"description": "Represents a key resolver configuration."
|
|
590
|
+
},
|
|
591
|
+
"IdentifierMethod": {
|
|
592
|
+
"type": "string",
|
|
593
|
+
"enum": [
|
|
594
|
+
"JWK",
|
|
595
|
+
"KID",
|
|
596
|
+
"COSE_KEY",
|
|
597
|
+
"X5C",
|
|
598
|
+
"DID"
|
|
599
|
+
],
|
|
600
|
+
"description": "Method used to identify cryptographic keys."
|
|
601
|
+
},
|
|
602
|
+
"KmsIsValidRawSignatureArgs": {
|
|
603
|
+
"type": "object",
|
|
604
|
+
"additionalProperties": false,
|
|
605
|
+
"properties": {
|
|
606
|
+
"keyInfo": {
|
|
607
|
+
"$ref": "#/components/schemas/KeyInfo"
|
|
608
|
+
},
|
|
609
|
+
"input": {
|
|
610
|
+
"type": "string"
|
|
611
|
+
},
|
|
612
|
+
"signature": {
|
|
613
|
+
"type": "string"
|
|
614
|
+
},
|
|
615
|
+
"baseUrl": {
|
|
616
|
+
"type": "string"
|
|
617
|
+
}
|
|
618
|
+
},
|
|
619
|
+
"required": [
|
|
620
|
+
"input",
|
|
621
|
+
"keyInfo",
|
|
622
|
+
"signature"
|
|
623
|
+
]
|
|
624
|
+
},
|
|
625
|
+
"VerifyRawSignatureResponse": {
|
|
626
|
+
"type": "object",
|
|
627
|
+
"properties": {
|
|
628
|
+
"isValid": {
|
|
629
|
+
"type": "boolean",
|
|
630
|
+
"description": "Indicates whether the signature is valid or not."
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
"required": [
|
|
634
|
+
"isValid"
|
|
635
|
+
],
|
|
636
|
+
"additionalProperties": false,
|
|
637
|
+
"description": "Response body containing the details of the signature verification."
|
|
638
|
+
},
|
|
639
|
+
"KmsListKeyProvidersArgs": {
|
|
640
|
+
"type": "object",
|
|
641
|
+
"properties": {
|
|
642
|
+
"baseUrl": {
|
|
643
|
+
"type": "string"
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
"additionalProperties": false
|
|
647
|
+
},
|
|
648
|
+
"ListKeyProvidersResponse": {
|
|
649
|
+
"type": "object",
|
|
650
|
+
"properties": {
|
|
651
|
+
"providers": {
|
|
652
|
+
"type": "array",
|
|
653
|
+
"items": {
|
|
654
|
+
"$ref": "#/components/schemas/KeyProvider"
|
|
655
|
+
}
|
|
656
|
+
}
|
|
657
|
+
},
|
|
658
|
+
"required": [
|
|
659
|
+
"providers"
|
|
660
|
+
],
|
|
661
|
+
"additionalProperties": false,
|
|
662
|
+
"description": "Response body containing the details of a Key Provider instance."
|
|
663
|
+
},
|
|
664
|
+
"KeyProvider": {
|
|
665
|
+
"type": "object",
|
|
666
|
+
"properties": {
|
|
667
|
+
"providerId": {
|
|
668
|
+
"type": "string",
|
|
669
|
+
"description": "The unique identifier assigned to the Key Provider instance upon creation."
|
|
670
|
+
},
|
|
671
|
+
"type": {
|
|
672
|
+
"$ref": "#/components/schemas/KeyProviderType"
|
|
673
|
+
}
|
|
674
|
+
},
|
|
675
|
+
"required": [
|
|
676
|
+
"providerId",
|
|
677
|
+
"type"
|
|
678
|
+
],
|
|
679
|
+
"additionalProperties": false,
|
|
680
|
+
"description": "Response body containing the details of a Key Provider instance."
|
|
681
|
+
},
|
|
682
|
+
"KmsListKeysArgs": {
|
|
683
|
+
"type": "object",
|
|
684
|
+
"properties": {
|
|
685
|
+
"baseUrl": {
|
|
686
|
+
"type": "string"
|
|
687
|
+
},
|
|
688
|
+
"providerId": {
|
|
689
|
+
"type": "string"
|
|
690
|
+
}
|
|
691
|
+
},
|
|
692
|
+
"additionalProperties": false
|
|
693
|
+
},
|
|
694
|
+
"ListKeysResponse": {
|
|
695
|
+
"type": "object",
|
|
696
|
+
"properties": {
|
|
697
|
+
"keyInfos": {
|
|
698
|
+
"type": "array",
|
|
699
|
+
"items": {
|
|
700
|
+
"$ref": "#/components/schemas/ManagedKeyInfo"
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
},
|
|
704
|
+
"required": [
|
|
705
|
+
"keyInfos"
|
|
706
|
+
],
|
|
707
|
+
"additionalProperties": false,
|
|
708
|
+
"description": "Response body containing all the managed keys."
|
|
709
|
+
},
|
|
710
|
+
"KmsListResolversArgs": {
|
|
711
|
+
"type": "object",
|
|
712
|
+
"properties": {
|
|
713
|
+
"baseUrl": {
|
|
714
|
+
"type": "string"
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
"additionalProperties": false
|
|
718
|
+
},
|
|
719
|
+
"ListResolversResponse": {
|
|
720
|
+
"type": "object",
|
|
721
|
+
"properties": {
|
|
722
|
+
"resolvers": {
|
|
723
|
+
"type": "array",
|
|
724
|
+
"items": {
|
|
725
|
+
"$ref": "#/components/schemas/Resolver"
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
},
|
|
729
|
+
"required": [
|
|
730
|
+
"resolvers"
|
|
731
|
+
],
|
|
732
|
+
"additionalProperties": false,
|
|
733
|
+
"description": "Response body containing all the resolvers."
|
|
734
|
+
},
|
|
735
|
+
"KmsProviderDeleteKeyArgs": {
|
|
736
|
+
"type": "object",
|
|
737
|
+
"properties": {
|
|
738
|
+
"baseUrl": {
|
|
739
|
+
"type": "string"
|
|
740
|
+
},
|
|
741
|
+
"providerId": {
|
|
742
|
+
"type": "string"
|
|
743
|
+
},
|
|
744
|
+
"aliasOrKid": {
|
|
745
|
+
"type": "string"
|
|
746
|
+
}
|
|
747
|
+
},
|
|
748
|
+
"required": [
|
|
749
|
+
"providerId",
|
|
750
|
+
"aliasOrKid"
|
|
751
|
+
],
|
|
752
|
+
"additionalProperties": false
|
|
753
|
+
},
|
|
754
|
+
"KmsProviderGenerateKey": {
|
|
755
|
+
"type": "object",
|
|
756
|
+
"additionalProperties": false,
|
|
757
|
+
"properties": {
|
|
758
|
+
"alias": {
|
|
759
|
+
"type": "string",
|
|
760
|
+
"description": "Alias for the generated key."
|
|
761
|
+
},
|
|
762
|
+
"use": {
|
|
763
|
+
"$ref": "#/components/schemas/JwkUse"
|
|
764
|
+
},
|
|
765
|
+
"keyOperations": {
|
|
766
|
+
"type": "array",
|
|
767
|
+
"items": {
|
|
768
|
+
"$ref": "#/components/schemas/KeyOperations"
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
"alg": {
|
|
772
|
+
"$ref": "#/components/schemas/SignatureAlgorithm"
|
|
773
|
+
},
|
|
774
|
+
"baseUrl": {
|
|
775
|
+
"type": "string"
|
|
776
|
+
},
|
|
777
|
+
"providerId": {
|
|
778
|
+
"type": "string"
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
"required": [
|
|
782
|
+
"providerId"
|
|
783
|
+
]
|
|
784
|
+
},
|
|
785
|
+
"KmsProviderGetKeyArgs": {
|
|
786
|
+
"type": "object",
|
|
787
|
+
"properties": {
|
|
788
|
+
"baseUrl": {
|
|
789
|
+
"type": "string"
|
|
790
|
+
},
|
|
791
|
+
"providerId": {
|
|
792
|
+
"type": "string"
|
|
793
|
+
},
|
|
794
|
+
"aliasOrKid": {
|
|
795
|
+
"type": "string"
|
|
796
|
+
}
|
|
797
|
+
},
|
|
798
|
+
"required": [
|
|
799
|
+
"providerId",
|
|
800
|
+
"aliasOrKid"
|
|
801
|
+
],
|
|
802
|
+
"additionalProperties": false
|
|
803
|
+
},
|
|
804
|
+
"KmsProviderListKeysArgs": {
|
|
805
|
+
"type": "object",
|
|
806
|
+
"properties": {
|
|
807
|
+
"baseUrl": {
|
|
808
|
+
"type": "string"
|
|
809
|
+
},
|
|
810
|
+
"providerId": {
|
|
811
|
+
"type": "string"
|
|
812
|
+
}
|
|
813
|
+
},
|
|
814
|
+
"required": [
|
|
815
|
+
"providerId"
|
|
816
|
+
],
|
|
817
|
+
"additionalProperties": false
|
|
818
|
+
},
|
|
819
|
+
"KmsProviderStoreKey": {
|
|
820
|
+
"type": "object",
|
|
821
|
+
"additionalProperties": false,
|
|
822
|
+
"properties": {
|
|
823
|
+
"keyInfo": {
|
|
824
|
+
"$ref": "#/components/schemas/ResolvedKeyInfo"
|
|
825
|
+
},
|
|
826
|
+
"certChain": {
|
|
827
|
+
"type": "array",
|
|
828
|
+
"items": {
|
|
829
|
+
"type": "string"
|
|
830
|
+
},
|
|
831
|
+
"description": "X.509 certificate chain as base64-encoded DER certificates."
|
|
832
|
+
},
|
|
833
|
+
"baseUrl": {
|
|
834
|
+
"type": "string"
|
|
835
|
+
},
|
|
836
|
+
"providerId": {
|
|
837
|
+
"type": "string"
|
|
838
|
+
}
|
|
839
|
+
},
|
|
840
|
+
"required": [
|
|
841
|
+
"keyInfo",
|
|
842
|
+
"providerId"
|
|
843
|
+
]
|
|
844
|
+
},
|
|
845
|
+
"ResolvedKeyInfo": {
|
|
846
|
+
"type": "object",
|
|
847
|
+
"properties": {
|
|
848
|
+
"kid": {
|
|
849
|
+
"type": "string",
|
|
850
|
+
"description": "Unique identifier for the cryptographic key. Can be null if the key identifier is not provided."
|
|
851
|
+
},
|
|
852
|
+
"key": {
|
|
853
|
+
"$ref": "#/components/schemas/Jwk"
|
|
854
|
+
},
|
|
855
|
+
"signatureAlgorithm": {
|
|
856
|
+
"$ref": "#/components/schemas/SignatureAlgorithm"
|
|
857
|
+
},
|
|
858
|
+
"keyVisibility": {
|
|
859
|
+
"$ref": "#/components/schemas/KeyVisibility"
|
|
860
|
+
},
|
|
861
|
+
"x5c": {
|
|
862
|
+
"type": "array",
|
|
863
|
+
"items": {
|
|
864
|
+
"type": "string"
|
|
865
|
+
},
|
|
866
|
+
"description": "X.509 certificate chain associated with the key."
|
|
867
|
+
},
|
|
868
|
+
"alias": {
|
|
869
|
+
"type": "string",
|
|
870
|
+
"description": "A reference or alias to the key in the Key Management Service (KMS)."
|
|
871
|
+
},
|
|
872
|
+
"providerId": {
|
|
873
|
+
"type": "string",
|
|
874
|
+
"description": "The Key Management System (KMS) identifier associated with the key."
|
|
875
|
+
},
|
|
876
|
+
"keyType": {
|
|
877
|
+
"$ref": "#/components/schemas/KeyType"
|
|
878
|
+
},
|
|
879
|
+
"keyEncoding": {
|
|
880
|
+
"$ref": "#/components/schemas/KeyEncoding"
|
|
881
|
+
},
|
|
882
|
+
"opts": {
|
|
883
|
+
"type": "object",
|
|
884
|
+
"additionalProperties": {
|
|
885
|
+
"type": "string"
|
|
886
|
+
},
|
|
887
|
+
"description": "Additional configuration options as key-value pairs."
|
|
888
|
+
}
|
|
889
|
+
},
|
|
890
|
+
"required": [
|
|
891
|
+
"key"
|
|
892
|
+
],
|
|
893
|
+
"additionalProperties": false,
|
|
894
|
+
"description": "Represents a resolved cryptographic key information where the key is guaranteed to be present and resolved, providing concrete access to the key."
|
|
895
|
+
},
|
|
896
|
+
"KmsResolveKeyArgs": {
|
|
897
|
+
"type": "object",
|
|
898
|
+
"additionalProperties": false,
|
|
899
|
+
"properties": {
|
|
900
|
+
"keyInfo": {
|
|
901
|
+
"$ref": "#/components/schemas/KeyInfo"
|
|
902
|
+
},
|
|
903
|
+
"identifierMethod": {
|
|
904
|
+
"$ref": "#/components/schemas/IdentifierMethod"
|
|
905
|
+
},
|
|
906
|
+
"trustedCerts": {
|
|
907
|
+
"type": "array",
|
|
908
|
+
"items": {
|
|
909
|
+
"type": "string"
|
|
910
|
+
},
|
|
911
|
+
"description": "Optional array of trusted certificates (base64-encoded) that may be used in the resolution process."
|
|
912
|
+
},
|
|
913
|
+
"verifyX509CertificateChain": {
|
|
914
|
+
"type": "boolean",
|
|
915
|
+
"description": "Optional boolean indicating whether the X.509 certificate chain should be verified."
|
|
916
|
+
},
|
|
917
|
+
"baseUrl": {
|
|
918
|
+
"type": "string"
|
|
919
|
+
},
|
|
920
|
+
"resolverId": {
|
|
921
|
+
"$ref": "#/components/schemas/String"
|
|
922
|
+
}
|
|
923
|
+
},
|
|
924
|
+
"required": [
|
|
925
|
+
"keyInfo",
|
|
926
|
+
"resolverId"
|
|
927
|
+
]
|
|
928
|
+
},
|
|
929
|
+
"String": {
|
|
930
|
+
"type": "object",
|
|
931
|
+
"properties": {
|
|
932
|
+
"length": {
|
|
933
|
+
"type": "number"
|
|
934
|
+
}
|
|
935
|
+
},
|
|
936
|
+
"required": [
|
|
937
|
+
"length"
|
|
938
|
+
],
|
|
939
|
+
"additionalProperties": {
|
|
940
|
+
"type": "string"
|
|
941
|
+
}
|
|
942
|
+
},
|
|
943
|
+
"KmsStoreKeyArgs": {
|
|
944
|
+
"type": "object",
|
|
945
|
+
"additionalProperties": false,
|
|
946
|
+
"properties": {
|
|
947
|
+
"keyInfo": {
|
|
948
|
+
"$ref": "#/components/schemas/ResolvedKeyInfo"
|
|
949
|
+
},
|
|
950
|
+
"certChain": {
|
|
951
|
+
"type": "array",
|
|
952
|
+
"items": {
|
|
953
|
+
"type": "string"
|
|
954
|
+
},
|
|
955
|
+
"description": "X.509 certificate chain as base64-encoded DER certificates."
|
|
956
|
+
},
|
|
957
|
+
"baseUrl": {
|
|
958
|
+
"type": "string"
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
"required": [
|
|
962
|
+
"keyInfo"
|
|
963
|
+
]
|
|
964
|
+
}
|
|
965
|
+
},
|
|
966
|
+
"methods": {
|
|
967
|
+
"kmsCreateRawSignature": {
|
|
968
|
+
"description": "",
|
|
969
|
+
"arguments": {
|
|
970
|
+
"$ref": "#/components/schemas/KmsCreateRawSignatureArgs"
|
|
971
|
+
},
|
|
972
|
+
"returnType": {
|
|
973
|
+
"$ref": "#/components/schemas/CreateRawSignatureResponse"
|
|
974
|
+
}
|
|
975
|
+
},
|
|
976
|
+
"kmsDeleteKey": {
|
|
977
|
+
"description": "",
|
|
978
|
+
"arguments": {
|
|
979
|
+
"$ref": "#/components/schemas/KmsDeleteKeyArgs"
|
|
980
|
+
},
|
|
981
|
+
"returnType": {
|
|
982
|
+
"type": "boolean"
|
|
983
|
+
}
|
|
984
|
+
},
|
|
985
|
+
"kmsGenerateKey": {
|
|
986
|
+
"description": "",
|
|
987
|
+
"arguments": {
|
|
988
|
+
"$ref": "#/components/schemas/KmsGenerateKeyArgs"
|
|
989
|
+
},
|
|
990
|
+
"returnType": {
|
|
991
|
+
"$ref": "#/components/schemas/ManagedKeyPair"
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
"kmsGetKey": {
|
|
995
|
+
"description": "",
|
|
996
|
+
"arguments": {
|
|
997
|
+
"$ref": "#/components/schemas/KmsGetKeyArgs"
|
|
998
|
+
},
|
|
999
|
+
"returnType": {
|
|
1000
|
+
"$ref": "#/components/schemas/ManagedKeyInfo"
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
"kmsGetKeyProvider": {
|
|
1004
|
+
"description": "",
|
|
1005
|
+
"arguments": {
|
|
1006
|
+
"$ref": "#/components/schemas/KmsGetKeyProviderArgs"
|
|
1007
|
+
},
|
|
1008
|
+
"returnType": {
|
|
1009
|
+
"$ref": "#/components/schemas/KeyProviderResponse"
|
|
1010
|
+
}
|
|
1011
|
+
},
|
|
1012
|
+
"kmsGetResolver": {
|
|
1013
|
+
"description": "",
|
|
1014
|
+
"arguments": {
|
|
1015
|
+
"$ref": "#/components/schemas/kmsGetResolverArgs"
|
|
1016
|
+
},
|
|
1017
|
+
"returnType": {
|
|
1018
|
+
"$ref": "#/components/schemas/Resolver"
|
|
1019
|
+
}
|
|
1020
|
+
},
|
|
1021
|
+
"kmsIsValidRawSignature": {
|
|
1022
|
+
"description": "",
|
|
1023
|
+
"arguments": {
|
|
1024
|
+
"$ref": "#/components/schemas/KmsIsValidRawSignatureArgs"
|
|
1025
|
+
},
|
|
1026
|
+
"returnType": {
|
|
1027
|
+
"$ref": "#/components/schemas/VerifyRawSignatureResponse"
|
|
1028
|
+
}
|
|
1029
|
+
},
|
|
1030
|
+
"kmsListKeyProviders": {
|
|
1031
|
+
"description": "",
|
|
1032
|
+
"arguments": {
|
|
1033
|
+
"$ref": "#/components/schemas/KmsListKeyProvidersArgs"
|
|
1034
|
+
},
|
|
1035
|
+
"returnType": {
|
|
1036
|
+
"$ref": "#/components/schemas/ListKeyProvidersResponse"
|
|
1037
|
+
}
|
|
1038
|
+
},
|
|
1039
|
+
"kmsListKeys": {
|
|
1040
|
+
"description": "",
|
|
1041
|
+
"arguments": {
|
|
1042
|
+
"$ref": "#/components/schemas/KmsListKeysArgs"
|
|
1043
|
+
},
|
|
1044
|
+
"returnType": {
|
|
1045
|
+
"$ref": "#/components/schemas/ListKeysResponse"
|
|
1046
|
+
}
|
|
1047
|
+
},
|
|
1048
|
+
"kmsListResolvers": {
|
|
1049
|
+
"description": "",
|
|
1050
|
+
"arguments": {
|
|
1051
|
+
"$ref": "#/components/schemas/KmsListResolversArgs"
|
|
1052
|
+
},
|
|
1053
|
+
"returnType": {
|
|
1054
|
+
"$ref": "#/components/schemas/ListResolversResponse"
|
|
1055
|
+
}
|
|
1056
|
+
},
|
|
1057
|
+
"kmsProviderDeleteKey": {
|
|
1058
|
+
"description": "",
|
|
1059
|
+
"arguments": {
|
|
1060
|
+
"$ref": "#/components/schemas/KmsProviderDeleteKeyArgs"
|
|
1061
|
+
},
|
|
1062
|
+
"returnType": {
|
|
1063
|
+
"type": "boolean"
|
|
1064
|
+
}
|
|
1065
|
+
},
|
|
1066
|
+
"kmsProviderGenerateKey": {
|
|
1067
|
+
"description": "",
|
|
1068
|
+
"arguments": {
|
|
1069
|
+
"$ref": "#/components/schemas/KmsProviderGenerateKey"
|
|
1070
|
+
},
|
|
1071
|
+
"returnType": {
|
|
1072
|
+
"$ref": "#/components/schemas/ManagedKeyPair"
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
"kmsProviderGetKey": {
|
|
1076
|
+
"description": "",
|
|
1077
|
+
"arguments": {
|
|
1078
|
+
"$ref": "#/components/schemas/KmsProviderGetKeyArgs"
|
|
1079
|
+
},
|
|
1080
|
+
"returnType": {
|
|
1081
|
+
"$ref": "#/components/schemas/ManagedKeyInfo"
|
|
1082
|
+
}
|
|
1083
|
+
},
|
|
1084
|
+
"kmsProviderListKeys": {
|
|
1085
|
+
"description": "",
|
|
1086
|
+
"arguments": {
|
|
1087
|
+
"$ref": "#/components/schemas/KmsProviderListKeysArgs"
|
|
1088
|
+
},
|
|
1089
|
+
"returnType": {
|
|
1090
|
+
"$ref": "#/components/schemas/ListKeysResponse"
|
|
1091
|
+
}
|
|
1092
|
+
},
|
|
1093
|
+
"kmsProviderStoreKey": {
|
|
1094
|
+
"description": "",
|
|
1095
|
+
"arguments": {
|
|
1096
|
+
"$ref": "#/components/schemas/KmsProviderStoreKey"
|
|
1097
|
+
},
|
|
1098
|
+
"returnType": {
|
|
1099
|
+
"$ref": "#/components/schemas/ManagedKeyInfo"
|
|
1100
|
+
}
|
|
1101
|
+
},
|
|
1102
|
+
"kmsResolveKey": {
|
|
1103
|
+
"description": "",
|
|
1104
|
+
"arguments": {
|
|
1105
|
+
"$ref": "#/components/schemas/KmsResolveKeyArgs"
|
|
1106
|
+
},
|
|
1107
|
+
"returnType": {
|
|
1108
|
+
"$ref": "#/components/schemas/ResolvedKeyInfo"
|
|
1109
|
+
}
|
|
1110
|
+
},
|
|
1111
|
+
"kmsStoreKey": {
|
|
1112
|
+
"description": "",
|
|
1113
|
+
"arguments": {
|
|
1114
|
+
"$ref": "#/components/schemas/KmsStoreKeyArgs"
|
|
1115
|
+
},
|
|
1116
|
+
"returnType": {
|
|
1117
|
+
"$ref": "#/components/schemas/ManagedKeyInfo"
|
|
1118
|
+
}
|
|
1119
|
+
}
|
|
1120
|
+
}
|
|
1121
|
+
}
|
|
1122
|
+
}
|
|
1123
|
+
}
|