@@ -622,6 +622,14 @@ components:
622622 format : uuid
623623 required :
624624 - kind
625+ NodeVerifier_Get :
626+ type : object
627+ properties :
628+ uuid :
629+ type : string
630+ example : 00000000-0000-0000-0000-000000000000
631+ format : uuid
632+ readOnly : true
625633 NodeEncryptionKey_Get :
626634 type : object
627635 properties :
@@ -920,6 +928,15 @@ components:
920928 example : 00000000-0000-0000-0000-000000000000
921929 format : uuid
922930 required : true
931+ NodeVerifierUuid :
932+ name : NodeVerifierUuid
933+ in : path
934+ schema :
935+ type : string
936+ example : 00000000-0000-0000-0000-000000000000
937+ format : uuid
938+ readOnly : true
939+ required : true
923940 NodeEncryptionKeyUuid :
924941 name : NodeEncryptionKeyUuid
925942 in : path
@@ -1343,6 +1360,53 @@ paths:
13431360 default :
13441361 $ref : ' #/components/responses/Error'
13451362 operationId : Delete_v1_kind_KindModelKind_resources_ResourceRes_uuid
1363+ /v1/node_verifiers/{NodeVerifierUuid} :
1364+ get :
1365+ summary : Get NodeVerifier
1366+ tags :
1367+ - NodeVerifier
1368+ parameters :
1369+ - name : NodeVerifierUuid
1370+ in : path
1371+ schema :
1372+ type : string
1373+ example : 00000000-0000-0000-0000-000000000000
1374+ format : uuid
1375+ readOnly : true
1376+ required : true
1377+ responses :
1378+ ' 200 ' :
1379+ description : NodeVerifier_Get
1380+ content :
1381+ application/json :
1382+ schema :
1383+ $ref : ' #/components/schemas/NodeVerifier_Get'
1384+ default :
1385+ $ref : ' #/components/responses/Error'
1386+ operationId : Get_v1_node_verifiers_NodeVerifierUuid
1387+ /v1/node_verifiers/{NodeVerifierUuid}/actions/verify :
1388+ get :
1389+ summary : Verify NodeVerifier
1390+ tags :
1391+ - NodeVerifier
1392+ parameters :
1393+ - name : NodeVerifierUuid
1394+ in : path
1395+ schema :
1396+ type : string
1397+ example : 00000000-0000-0000-0000-000000000000
1398+ format : uuid
1399+ readOnly : true
1400+ required : true
1401+ responses :
1402+ ' 200 ' :
1403+ description : Get nested urls
1404+ content :
1405+ application/json :
1406+ schema : {}
1407+ default :
1408+ $ref : ' #/components/responses/Error'
1409+ operationId : Verify_v1_node_verifiers_NodeVerifierUuid_actions_verify
13461410 /v1/nodes/{NodeEncryptionKeyUuid} :
13471411 get :
13481412 summary : Get NodeEncryptionKey
@@ -1408,5 +1472,7 @@ tags:
14081472 description : ' '
14091473 - name : KindModel
14101474 description : ' '
1475+ - name : NodeVerifier
1476+ description : ' '
14111477 - name : NodeEncryptionKey
14121478 description : ' '
0 commit comments