@twin.org/node 0.0.3-next.33 → 0.0.3-next.35
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/dist/locales/en.json +236 -55
- package/docs/changelog.md +226 -197
- package/docs/deployment-ec2.md +1 -1
- package/docs/open-api/spec.json +1978 -1191
- package/docs/usage.md +6 -0
- package/package.json +4 -4
package/dist/locales/en.json
CHANGED
|
@@ -300,8 +300,9 @@
|
|
|
300
300
|
"invalidSignature": "The JSON Web token signature could not be verified"
|
|
301
301
|
},
|
|
302
302
|
"tenantProcessor": {
|
|
303
|
-
"
|
|
304
|
-
"apiKeyNotFound": "No node tenant found for API key \"{key}\"."
|
|
303
|
+
"missingApiKeyOrTenantToken": "API key \"{keyName}\" or tenant token is missing",
|
|
304
|
+
"apiKeyNotFound": "No node tenant found for API key \"{key}\".",
|
|
305
|
+
"tenantNotFound": "No node tenant found for the decrypted tenant token \"{tenantId}\"."
|
|
305
306
|
},
|
|
306
307
|
"tenantAdminService": {
|
|
307
308
|
"apiKeyAlreadyInUse": "The provided API key is already in use by another tenant.",
|
|
@@ -353,6 +354,15 @@
|
|
|
353
354
|
"entityStorageMissing": "Entity storage configuration missing for component \"{storageName}\"",
|
|
354
355
|
"connectorUnknownType": "Unknown connector type \"{type}\" specified for \"{connectorType}\""
|
|
355
356
|
},
|
|
357
|
+
"urlTransformerService": {
|
|
358
|
+
"encryptionUnavailable": "Encryption is unavailable because no nodeId is configured",
|
|
359
|
+
"decryptionUnavailable": "Decryption is unavailable because no nodeId is configured",
|
|
360
|
+
"encryptionFailed": "An error occurred during encryption",
|
|
361
|
+
"decryptionFailed": "An error occurred during decryption"
|
|
362
|
+
},
|
|
363
|
+
"healthService": {
|
|
364
|
+
"componentHealthCheckFailed": "Health check failed for component \"{className}\""
|
|
365
|
+
},
|
|
356
366
|
"nftAttestationConnector": {
|
|
357
367
|
"attestingFailed": "Attesting the data failed",
|
|
358
368
|
"verificationFailed": "Verifying the attestation failed",
|
|
@@ -454,41 +464,52 @@
|
|
|
454
464
|
},
|
|
455
465
|
"s3BlobStorageConnector": {
|
|
456
466
|
"bucketCreateFailed": "Creating bucket \"{bucket}\" failed",
|
|
467
|
+
"teardownFailed": "Failed to teardown S3 bucket \"{bucket}\"",
|
|
457
468
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the blob storage \"{namespace}\"",
|
|
458
469
|
"getBlobFailed": "Failed to get blob in S3",
|
|
459
470
|
"setBlobFailed": "Failed to set blob in S3",
|
|
460
|
-
"removeBlobFailed": "Failed to remove blob in S3"
|
|
471
|
+
"removeBlobFailed": "Failed to remove blob in S3",
|
|
472
|
+
"emptyFailed": "Failed to empty S3 bucket \"{bucketName}\""
|
|
461
473
|
},
|
|
462
474
|
"azureBlobStorageConnector": {
|
|
463
475
|
"containerCreateFailed": "Creating container \"{container}\" failed",
|
|
476
|
+
"teardownFailed": "Failed to teardown Azure blob storage container \"{container}\"",
|
|
464
477
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the blob storage \"{namespace}\"",
|
|
465
478
|
"getBlobFailed": "Failed to get blob in Azure",
|
|
466
479
|
"setBlobFailed": "Failed to set blob in Azure",
|
|
467
|
-
"removeBlobFailed": "Failed to remove blob in Azure"
|
|
480
|
+
"removeBlobFailed": "Failed to remove blob in Azure",
|
|
481
|
+
"emptyFailed": "Failed to empty Azure blob storage container \"{containerName}\""
|
|
468
482
|
},
|
|
469
483
|
"fileBlobStorageConnector": {
|
|
470
484
|
"directoryCreateFailed": "Creating directory \"{directory}\" failed",
|
|
471
485
|
"getBlobFailed": "Unable to get blob \"{id}\"",
|
|
472
486
|
"setBlobFailed": "Unable to set blob",
|
|
473
487
|
"removeBlobFailed": "Unable to remove blob",
|
|
488
|
+
"emptyFailed": "Failed to empty file blob storage directory \"{directory}\"",
|
|
489
|
+
"teardownFailed": "Failed to teardown file blob storage directory \"{directory}\"",
|
|
474
490
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the blob storage \"{namespace}\""
|
|
475
491
|
},
|
|
476
492
|
"gcpBlobStorageConnector": {
|
|
477
493
|
"bucketCreateFailed": "Creating bucket \"{bucket}\" failed",
|
|
494
|
+
"teardownFailed": "Failed to teardown GCP storage bucket \"{bucket}\"",
|
|
478
495
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the blob storage \"{namespace}\"",
|
|
479
496
|
"getBlobFailed": "Failed to get blob in GCP",
|
|
480
497
|
"setBlobFailed": "Failed to set blob in GCP",
|
|
481
|
-
"removeBlobFailed": "Failed to remove blob in GCP"
|
|
498
|
+
"removeBlobFailed": "Failed to remove blob in GCP",
|
|
499
|
+
"emptyFailed": "Failed to empty GCP storage bucket \"{bucketName}\""
|
|
482
500
|
},
|
|
483
501
|
"ipfsBlobStorageConnector": {
|
|
484
502
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the blob storage \"{namespace}\"",
|
|
485
503
|
"fetchFail": "Failure during IPFS request",
|
|
486
504
|
"setBlobFailed": "Failed to store blob in IPFS",
|
|
487
505
|
"getBlobFailed": "Failed to get blob from IPFS",
|
|
488
|
-
"removeBlobFailed": "Failed to remove blob from IPFS"
|
|
506
|
+
"removeBlobFailed": "Failed to remove blob from IPFS",
|
|
507
|
+
"emptyFailed": "Failed to empty IPFS blob storage",
|
|
508
|
+
"teardownFailed": "Failed to teardown IPFS blob storage"
|
|
489
509
|
},
|
|
490
510
|
"memoryBlobStorageConnector": {
|
|
491
|
-
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the blob storage \"{namespace}\""
|
|
511
|
+
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the blob storage \"{namespace}\"",
|
|
512
|
+
"emptyFailed": "Failed to empty memory blob storage"
|
|
492
513
|
},
|
|
493
514
|
"blobStorageService": {
|
|
494
515
|
"noConnectors": "There are no connectors registered with the blob storage factory",
|
|
@@ -496,6 +517,7 @@
|
|
|
496
517
|
"getFailed": "There was a problem getting the blob",
|
|
497
518
|
"updateFailed": "There was a problem updating the blob",
|
|
498
519
|
"removeFailed": "There was a problem removing the blob",
|
|
520
|
+
"emptyFailed": "There was a problem emptying the blob storage",
|
|
499
521
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the blob storage service \"{namespace}\"",
|
|
500
522
|
"vaultConnectorNotConfigured": "The vault connector is not configured, but encryption/decryption was requested.",
|
|
501
523
|
"blobNotFound": "The blob with id \"{notFoundId}\" was not found",
|
|
@@ -525,8 +547,6 @@
|
|
|
525
547
|
"dataspaceControlPlaneService": {
|
|
526
548
|
"transferProcessNotFound": "Transfer Process not found",
|
|
527
549
|
"pullTransfersNotSupported": "PULL transfers are not supported. Configure dataPlanePath in service configuration to enable PULL transfers.",
|
|
528
|
-
"datasetRegistrationFailed": "Failed to register dataset {datasetId} from app {appName}",
|
|
529
|
-
"appDatasetsRetrievalFailed": "Failed to retrieve datasets from app {appName}",
|
|
530
550
|
"transferProcessTerminated": "Transfer Process \"{consumerPid}\" is terminated and cannot be used",
|
|
531
551
|
"transferProcessTerminatedProvider": "Transfer Process \"{providerPid}\" is terminated and cannot be used",
|
|
532
552
|
"invalidTransferRequest": "Transfer Request does not conform to Dataspace Protocol specification",
|
|
@@ -564,7 +584,12 @@
|
|
|
564
584
|
"callerNotAuthorizedAsConsumer": "The caller's verified identity does not match the consumer for this transfer process",
|
|
565
585
|
"callerNotAuthorizedAsProvider": "The caller's verified identity does not match the provider for this transfer process",
|
|
566
586
|
"callerNotAuthorizedForTransfer": "The caller's verified identity does not match the consumer or provider for this transfer process",
|
|
567
|
-
"multipleAssignersNotSupported": "Multiple assigners found in agreement, which is not supported. Only single assigner agreements are supported."
|
|
587
|
+
"multipleAssignersNotSupported": "Multiple assigners found in agreement, which is not supported. Only single assigner agreements are supported.",
|
|
588
|
+
"datasetPublishFailed": "Failed to publish dataset {datasetRecordId} for app {appId} (tenant: {tenantId})",
|
|
589
|
+
"datasetNodeContextRequired": "A node context is required to register a dataset.",
|
|
590
|
+
"datasetAlreadyExists": "A dataset with id \"{id}\" already exists.",
|
|
591
|
+
"datasetNotFound": "Dataset not found",
|
|
592
|
+
"datasetWrongTenant": "The calling tenant does not own this dataset."
|
|
568
593
|
},
|
|
569
594
|
"dataspaceControlPlanePolicyRequester": {},
|
|
570
595
|
"odrlPolicyHelper": {
|
|
@@ -624,7 +649,12 @@
|
|
|
624
649
|
"sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
|
|
625
650
|
"containerCreateFailed": "The container couldn't be created \"{containerId}\"",
|
|
626
651
|
"databaseCreateFailed": "Unable to create database \"{databaseId}\"",
|
|
627
|
-
"containerDoesNotExist": "Container \"{containerId}\" does not exist"
|
|
652
|
+
"containerDoesNotExist": "Container \"{containerId}\" does not exist",
|
|
653
|
+
"setBatchFailed": "Unable to set batch of entities",
|
|
654
|
+
"countFailed": "Unable to count entities",
|
|
655
|
+
"emptyFailed": "Unable to empty entity storage",
|
|
656
|
+
"removeBatchFailed": "Unable to remove batch of entities",
|
|
657
|
+
"teardownFailed": "Unable to teardown entity storage"
|
|
628
658
|
},
|
|
629
659
|
"dynamoDbEntityStorageConnector": {
|
|
630
660
|
"tableCreateFailed": "Creating table \"{tableName}\" failed",
|
|
@@ -637,10 +667,18 @@
|
|
|
637
667
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
638
668
|
"sortSingle": "You can only sort by a single property",
|
|
639
669
|
"sortNotIndexed": "The property \"{property}\" is not indexed and cannot be used for sorting",
|
|
640
|
-
"propertyNotFound": "The property \"{property}\" was not found on the entity schema"
|
|
670
|
+
"propertyNotFound": "The property \"{property}\" was not found on the entity schema",
|
|
671
|
+
"setBatchFailed": "Unable to set batch of entities",
|
|
672
|
+
"removeBatchFailed": "Unable to remove batch of entities",
|
|
673
|
+
"emptyFailed": "Unable to empty entity storage",
|
|
674
|
+
"countFailed": "Unable to count entities",
|
|
675
|
+
"teardownFailed": "Unable to teardown entity storage"
|
|
641
676
|
},
|
|
642
677
|
"fileEntityStorageConnector": {
|
|
643
|
-
"directoryCreateFailed": "Creating directory \"{directory}\" failed"
|
|
678
|
+
"directoryCreateFailed": "Creating directory \"{directory}\" failed",
|
|
679
|
+
"emptyFailed": "Unable to empty entity storage",
|
|
680
|
+
"removeBatchFailed": "Unable to remove batch of entities",
|
|
681
|
+
"teardownFailed": "Unable to teardown entity storage"
|
|
644
682
|
},
|
|
645
683
|
"firestoreEntityStorageConnector": {
|
|
646
684
|
"firestoreCreationFailed": "Failed to connect to Firestore",
|
|
@@ -648,15 +686,24 @@
|
|
|
648
686
|
"getEntityFailed": "Failed to get entity \"{id}\"",
|
|
649
687
|
"removeEntityFailed": "Failed to remove entity \"{id}\"",
|
|
650
688
|
"queryFailed": "The query failed when issuing the following command \"{queryDescription}\"",
|
|
651
|
-
"
|
|
652
|
-
"
|
|
689
|
+
"unsupportedComparisonOperator": "Comparison operator \"{comparison}\" is not supported",
|
|
690
|
+
"setBatchFailed": "Failed to set batch of entities",
|
|
691
|
+
"countFailed": "Unable to count entities",
|
|
692
|
+
"emptyFailed": "Failed to empty entity storage",
|
|
693
|
+
"removeBatchFailed": "Unable to remove batch of entities",
|
|
694
|
+
"teardownFailed": "Unable to teardown entity storage"
|
|
653
695
|
},
|
|
654
696
|
"mongoDbEntityStorageConnector": {
|
|
655
697
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
656
698
|
"getFailed": "Unable to get entity \"{id}\"",
|
|
657
699
|
"removeFailed": "Unable to remove entity \"{id}\"",
|
|
658
700
|
"databaseCreateFailed": "The database creation failed for \"{databaseName}\"",
|
|
659
|
-
"unsupportedComparisonOperator": "Comparison operator \"{comparison}\" is not supported"
|
|
701
|
+
"unsupportedComparisonOperator": "Comparison operator \"{comparison}\" is not supported",
|
|
702
|
+
"setBatchFailed": "Unable to set batch of entities",
|
|
703
|
+
"removeBatchFailed": "Unable to remove batch of entities",
|
|
704
|
+
"emptyFailed": "Unable to empty entity storage",
|
|
705
|
+
"countFailed": "Unable to count entities",
|
|
706
|
+
"teardownFailed": "Unable to teardown entity storage"
|
|
660
707
|
},
|
|
661
708
|
"mySqlEntityStorageConnector": {
|
|
662
709
|
"setFailed": "Unable to set entity \"{id}\"",
|
|
@@ -666,7 +713,12 @@
|
|
|
666
713
|
"comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
|
|
667
714
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
668
715
|
"entitySchemaPropertiesUndefined": "The entity schema properties are undefined",
|
|
669
|
-
"databaseCreateFailed": "Unable to create database \"{databaseName}\""
|
|
716
|
+
"databaseCreateFailed": "Unable to create database \"{databaseName}\"",
|
|
717
|
+
"setBatchFailed": "Unable to set batch of entities",
|
|
718
|
+
"countFailed": "Unable to count entities",
|
|
719
|
+
"emptyFailed": "Unable to empty entity storage",
|
|
720
|
+
"removeBatchFailed": "Unable to remove batch of entities",
|
|
721
|
+
"teardownFailed": "Unable to teardown entity storage"
|
|
670
722
|
},
|
|
671
723
|
"postgreSqlEntityStorageConnector": {
|
|
672
724
|
"databaseCreateFailed": "Unable to create database \"{databaseName}\"",
|
|
@@ -676,14 +728,21 @@
|
|
|
676
728
|
"queryFailed": "The query failed",
|
|
677
729
|
"comparisonNotSupported": "Comparison operator \"{comparison}\" is not supported",
|
|
678
730
|
"conditionalNotSupported": "Conditional operator \"{operator}\" is not supported",
|
|
679
|
-
"entitySchemaPropertiesUndefined": "The entity schema properties are undefined"
|
|
731
|
+
"entitySchemaPropertiesUndefined": "The entity schema properties are undefined",
|
|
732
|
+
"setBatchFailed": "Unable to set batch of entities",
|
|
733
|
+
"countFailed": "Unable to count entities",
|
|
734
|
+
"emptyFailed": "Unable to empty entity storage",
|
|
735
|
+
"removeBatchFailed": "Unable to remove batch of entities",
|
|
736
|
+
"teardownFailed": "Unable to teardown entity storage"
|
|
680
737
|
},
|
|
681
738
|
"scyllaDBTableConnector": {
|
|
682
739
|
"tableCreateFailed": "Creating table \"{table}\" failed",
|
|
683
|
-
"dropTableFailed": " \"{table}\" cannot be dropped",
|
|
684
|
-
"truncateTableFailed": " \"{table}\" cannot be dropped",
|
|
685
740
|
"removeFailed": "Removing item with \"{id}\" failed",
|
|
686
|
-
"setFailed": "Setting item with \"{id}\" failed"
|
|
741
|
+
"setFailed": "Setting item with \"{id}\" failed",
|
|
742
|
+
"setBatchFailed": "Setting batch of items failed",
|
|
743
|
+
"emptyFailed": "Emptying entity storage failed",
|
|
744
|
+
"removeBatchFailed": "Remove batch of entities failed",
|
|
745
|
+
"teardownFailed": "Teardown entity storage failed"
|
|
687
746
|
},
|
|
688
747
|
"scyllaDBViewConnector": {
|
|
689
748
|
"viewCreateFailed": "Creating view \"{view}\" failed",
|
|
@@ -693,15 +752,13 @@
|
|
|
693
752
|
"getFailed": "Getting item with \"{id}\" failed",
|
|
694
753
|
"findFailed": "Error while querying data on \"{table}\"",
|
|
695
754
|
"parseJSONFailed": "Parsing JSON failed for field \"{name}\" with value \"{value}\"",
|
|
696
|
-
"comparisonNotSupported": "Dot-notation nested property path \"{property}\" is not supported in CQL queries"
|
|
755
|
+
"comparisonNotSupported": "Dot-notation nested property path \"{property}\" is not supported in CQL queries",
|
|
756
|
+
"countFailed": "Unable to count entities"
|
|
697
757
|
},
|
|
698
758
|
"synchronisedEntityStorageConnector": {
|
|
699
759
|
"missingRequiredProperty": "The property \"{requiredProperty}\" is required when using the Synchronised Entity Storage Connector.",
|
|
700
760
|
"missingRequiredPropertySort": "The property \"{requiredProperty}\" requires sorting attributes for the Synchronised Entity Storage Connector."
|
|
701
761
|
},
|
|
702
|
-
"entityStorageService": {
|
|
703
|
-
"entityNotFound": "Could not find entity with id \"{notFoundId}\""
|
|
704
|
-
},
|
|
705
762
|
"localEventBusConnector": {
|
|
706
763
|
"callback": "The callback failed during publish topic \"{topic}\" for subscriptionId \"{subscriptionId}\""
|
|
707
764
|
},
|
|
@@ -727,6 +784,7 @@
|
|
|
727
784
|
"resolveDocumentFailed": "Resolving the document failed"
|
|
728
785
|
},
|
|
729
786
|
"entityStorageIdentityConnector": {
|
|
787
|
+
"addAlsoKnownAsFailed": "Adding to the alsoKnownAs property failed",
|
|
730
788
|
"addServiceFailed": "Adding the service failed",
|
|
731
789
|
"addVerificationMethodFailed": "Adding the verification method failed",
|
|
732
790
|
"algorithmKeyTypeMismatch": "Algorithm \"{algorithm}\" requires key type \"{expectedKeyType}\", but key \"{keyId}\" has type \"{actualKeyType}\"",
|
|
@@ -737,11 +795,13 @@
|
|
|
737
795
|
"createVerifiableCredentialFailed": "Creating the verifiable credential failed",
|
|
738
796
|
"createVerifiablePresentationFailed": "Creating the verifiable presentation failed",
|
|
739
797
|
"documentNotFound": "The document could not be found \"{notFoundId}\"",
|
|
798
|
+
"invalidAlias": "The alias is invalid it must be a Url or Urn, it is \"{alias}\"",
|
|
740
799
|
"jwkSignatureFailed": "The signature on the JWK failed verification",
|
|
741
800
|
"methodMissing": "The verification method specified does not exist \"{method}\"",
|
|
742
801
|
"missingDid": "The full id including DID is required",
|
|
743
802
|
"privateKeyMissing": "The private key could not be found for key \"{keyId}\"",
|
|
744
803
|
"publicKeyJwkMissing": "The verification method contains no publicKeyJwk in method \"{method}\"",
|
|
804
|
+
"removeAlsoKnownAsFailed": "Removing from the alsoKnownAs property failed",
|
|
745
805
|
"removeDocumentFailed": "Removing the document failed",
|
|
746
806
|
"removeServiceFailed": "Removing the service failed",
|
|
747
807
|
"removeVerificationMethodFailed": "Removing the verification method failed",
|
|
@@ -767,6 +827,7 @@
|
|
|
767
827
|
"resolveDocumentFailed": "Resolving the document failed \"{documentId}\""
|
|
768
828
|
},
|
|
769
829
|
"iotaIdentityConnector": {
|
|
830
|
+
"addAlsoKnownAsFailed": "Adding to the alsoKnownAs property failed",
|
|
770
831
|
"addServiceFailed": "Adding the service failed",
|
|
771
832
|
"addVerificationMethodFailed": "Adding the verification method failed",
|
|
772
833
|
"algorithmKeyTypeMismatch": "Algorithm \"{algorithm}\" requires key type \"{expectedKeyType}\", but key \"{keyId}\" has type \"{actualKeyType}\"",
|
|
@@ -780,6 +841,7 @@
|
|
|
780
841
|
"documentNotFound": "The document could not be found",
|
|
781
842
|
"gasStationTransactionBuildFailed": "Building the gas station transaction failed",
|
|
782
843
|
"identityNotFound": "The identity could not be found \"{notFoundId}\"",
|
|
844
|
+
"invalidAlias": "The alias is invalid it must be a Url or Urn, it is \"{alias}\"",
|
|
783
845
|
"invalidSubjectId": "The subject id format is invalid it must be a Url or Urn, it is \"{subjectId}\"",
|
|
784
846
|
"methodMissing": "The verification method specified does not exist \"{method}\"",
|
|
785
847
|
"missingControllerToken": "The controller token is missing",
|
|
@@ -787,6 +849,7 @@
|
|
|
787
849
|
"privateKeyMissing": "The verification method contains no privateKey \"{keyId}\"",
|
|
788
850
|
"publicKeyJwkMethodMissing": "The verification method contains no publicKeyJwk in method \"{method}\"",
|
|
789
851
|
"publicKeyJwkMissing": "The verification method contains no publicKeyJwk in JWK \"{jwk}\"",
|
|
852
|
+
"removeAlsoKnownAsFailed": "Removing from the alsoKnownAs property failed",
|
|
790
853
|
"removeDocumentFailed": "Removing the document failed",
|
|
791
854
|
"removeServiceFailed": "Removing the service failed",
|
|
792
855
|
"removeVerificationMethodFailed": "Removing the verification method failed",
|
|
@@ -847,6 +910,8 @@
|
|
|
847
910
|
"verificationMethodRemoveFailed": "Removing the verification method failed \"{verificationMethodId}\"",
|
|
848
911
|
"serviceCreateFailed": "Creating the service failed for identity \"{identity}\", service \"{serviceId}\"",
|
|
849
912
|
"serviceRemoveFailed": "Removing the service failed \"{serviceId}\"",
|
|
913
|
+
"alsoKnownAsAddFailed": "Adding to the alsoKnownAs property failed for identity \"{identity}\"",
|
|
914
|
+
"alsoKnownAsRemoveFailed": "Removing from the alsoKnownAs property failed for identity \"{identity}\"",
|
|
850
915
|
"verifiableCredentialCreateFailed": "Creating the verifiable credential failed for method \"{verificationMethodId}\"",
|
|
851
916
|
"verifiableCredentialVerifyFailed": "Verifying the verifiable credential failed",
|
|
852
917
|
"verifiableCredentialRevokeFailed": "Revoking the verifiable credential failed for document \"{issuerIdentity}\" with index \"{credentialIndex}\"",
|
|
@@ -1022,9 +1087,7 @@
|
|
|
1022
1087
|
"offerNotFound": "Offer not found with id: \"{notFoundId}\"",
|
|
1023
1088
|
"offerTypeMismatch": "The policy with id: \"{offerId}\" is not of type Offer, it is of type: \"{type}\".",
|
|
1024
1089
|
"setNotFound": "Set not found with id: \"{notFoundId}\"",
|
|
1025
|
-
"setTypeMismatch": "The policy with id: \"{setId}\" is not of type Set, it is of type: \"{type}\"."
|
|
1026
|
-
"ecosystemPolicyNotFound": "Ecosystem policy not found with id: \"{notFoundId}\"",
|
|
1027
|
-
"ecosystemPolicyTypeMismatch": "The policy with id: \"{ecosystemPolicyId}\" is not of type EcosystemPolicy, it is of type: \"{type}\"."
|
|
1090
|
+
"setTypeMismatch": "The policy with id: \"{setId}\" is not of type Set, it is of type: \"{type}\"."
|
|
1028
1091
|
},
|
|
1029
1092
|
"policyDecisionPointService": {
|
|
1030
1093
|
"decidingFailed": "Deciding on policies for policy id \"{policyId}\" failed in arbiter with id: \"{arbiterId}\"",
|
|
@@ -1048,7 +1111,7 @@
|
|
|
1048
1111
|
"circularInheritanceDetected": "Circular inheritance detected: policy \"{policyId}\" inherits from \"{inheritFromId}\" which creates a cycle.",
|
|
1049
1112
|
"logicalConstraintOperandNotUnique": "Logical constraint operand is not unique within the policy, each operand must be unique.",
|
|
1050
1113
|
"inheritedPolicyNotFound": "The inherited policy with id \"{inheritFromId}\" could not be found in the Policy Administration Point.",
|
|
1051
|
-
"assetCollectionSourceNotSupported": "AssetCollection source \"{source}\" is not supported. It must be a twin:
|
|
1114
|
+
"assetCollectionSourceNotSupported": "AssetCollection source \"{source}\" is not supported. It must be a twin:jsonPath target.",
|
|
1052
1115
|
"partyCollectionSourceNotSupported": "PartyCollection source \"{source}\" is not supported.",
|
|
1053
1116
|
"assetHasPolicyNotSupported": "Asset hasPolicy is not supported. Policies must be referenced through the agreement directly.",
|
|
1054
1117
|
"assetPartOfNotSupported": "Asset partOf is not supported. AssetCollection membership is resolved through the agreement directly.",
|
|
@@ -1061,6 +1124,7 @@
|
|
|
1061
1124
|
"constraintDataTypeNotSupported": "Constraint dataType is not supported. Value coercion based on dataType is not implemented.",
|
|
1062
1125
|
"constraintUnitNotSupported": "Constraint unit is not supported. Unit-aware comparison is not implemented.",
|
|
1063
1126
|
"constraintStatusNotSupported": "Constraint status is not supported. State-based evaluation is not implemented.",
|
|
1127
|
+
"jsonPathExpressionMissing": "Canonical JSONPath expression is missing for \"{operand}\". Provide twin:jsonPathExpression.",
|
|
1064
1128
|
"policyProfileNotSupported": "Policy \"{policyId}\" declares unsupported profile \"{unsupportedProfile}\". Only known profiles are supported.",
|
|
1065
1129
|
"inheritedPolicyProfileNotSupported": "Inherited policy \"{policyId}\" declares an unsupported profile. All policies in the inheritFrom chain must declare only supported profiles."
|
|
1066
1130
|
},
|
|
@@ -1082,8 +1146,7 @@
|
|
|
1082
1146
|
"noAgreementCreated": "No agreement was created for offer with id: \"{offerId}\"",
|
|
1083
1147
|
"assignerNotIdentity": "The assigner in the offer is not a single identity",
|
|
1084
1148
|
"providerInitiatedNotSupported": "Provider initiated negotiations are currently not supported as the consumer identity is required to be set as the trust identity in the negotiation",
|
|
1085
|
-
"callerNotAuthorizedForNegotiation": "The caller's verified identity does not match any authorized party in this negotiation"
|
|
1086
|
-
"ecosystemPolicyNotNegotiable": "EcosystemPolicy with id: \"{offerId}\" cannot be submitted to DSP contract negotiation — it is applied directly by the rights-management engine"
|
|
1149
|
+
"callerNotAuthorizedForNegotiation": "The caller's verified identity does not match any authorized party in this negotiation"
|
|
1087
1150
|
},
|
|
1088
1151
|
"policyNegotiationAdminPointService": {
|
|
1089
1152
|
"policyNotFound": "Policy with id: \"{notFoundId}\" not found",
|
|
@@ -1116,7 +1179,8 @@
|
|
|
1116
1179
|
"metricAlreadyExists": "The metric already exists \"{existingId}\"",
|
|
1117
1180
|
"counterIncOnly": "A counter metric can only be incremented, or added to with an integer",
|
|
1118
1181
|
"upDownCounterIncOrDecOnly": "An up/down counter metric can only be incremented, decremented or adjusted with an integer",
|
|
1119
|
-
"gaugeNoIncDec": "A gauge can not be incremented or decremented"
|
|
1182
|
+
"gaugeNoIncDec": "A gauge can not be incremented or decremented",
|
|
1183
|
+
"maxHistoryMustBePositiveInteger": "The maxHistory option must be a positive integer"
|
|
1120
1184
|
},
|
|
1121
1185
|
"silentTelemetryConnector": {
|
|
1122
1186
|
"notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
|
|
@@ -1245,9 +1309,6 @@
|
|
|
1245
1309
|
},
|
|
1246
1310
|
"loggingProcessor": {
|
|
1247
1311
|
"responseMessage": "<=== {statusCode} {method} {requestUrl} duration: {elapsedMicroSeconds}µs"
|
|
1248
|
-
},
|
|
1249
|
-
"informationRestClient": {
|
|
1250
|
-
"notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
|
|
1251
1312
|
}
|
|
1252
1313
|
},
|
|
1253
1314
|
"node": {
|
|
@@ -1300,7 +1361,8 @@
|
|
|
1300
1361
|
"attestationMethodCreate": "Creating attestation method for organisation identity",
|
|
1301
1362
|
"immutableProofMethodCreate": "Creating immutable proof method for organisation identity",
|
|
1302
1363
|
"adminIdentityCreate": "Creating admin user identity",
|
|
1303
|
-
"adminUserCreate": "Creating admin user"
|
|
1364
|
+
"adminUserCreate": "Creating admin user",
|
|
1365
|
+
"urlTransformParamKeyAdd": "Adding URL transform parameter encryption key"
|
|
1304
1366
|
}
|
|
1305
1367
|
},
|
|
1306
1368
|
"identity-create": {
|
|
@@ -1822,9 +1884,6 @@
|
|
|
1822
1884
|
"validation": {
|
|
1823
1885
|
"defaultFieldName": "The field"
|
|
1824
1886
|
},
|
|
1825
|
-
"errorMessages": {
|
|
1826
|
-
"fetch": "Fetch"
|
|
1827
|
-
},
|
|
1828
1887
|
"warn": {
|
|
1829
1888
|
"common": {
|
|
1830
1889
|
"devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
|
|
@@ -1926,6 +1985,10 @@
|
|
|
1926
1985
|
"engineTypes": {
|
|
1927
1986
|
"configuringEntityStorage": "Configuring {element} with name \"{storageName}\" using \"{storageType}\" connector"
|
|
1928
1987
|
},
|
|
1988
|
+
"memoryEntityStorageConnector": {
|
|
1989
|
+
"storeTearingDown": "Tearing down entity storage",
|
|
1990
|
+
"storeTornDown": "Entity storage torn down"
|
|
1991
|
+
},
|
|
1929
1992
|
"fetchAction": {
|
|
1930
1993
|
"fetch": "Fetch \"{url}\" with method \"{method}\""
|
|
1931
1994
|
},
|
|
@@ -1946,19 +2009,35 @@
|
|
|
1946
2009
|
},
|
|
1947
2010
|
"s3BlobStorageConnector": {
|
|
1948
2011
|
"bucketCreating": "Creating bucket \"{bucket}\"",
|
|
1949
|
-
"bucketExists": "Skipping create bucket \"{bucket}\" as it already exists"
|
|
2012
|
+
"bucketExists": "Skipping create bucket \"{bucket}\" as it already exists",
|
|
2013
|
+
"bucketDeleting": "Deleting bucket \"{bucket}\"",
|
|
2014
|
+
"bucketDeleted": "Bucket \"{bucket}\" deleted"
|
|
1950
2015
|
},
|
|
1951
2016
|
"azureBlobStorageConnector": {
|
|
1952
2017
|
"containerCreating": "Creating container \"{container}\"",
|
|
1953
|
-
"containerExists": "Skipping create container \"{container}\" as it already exists"
|
|
2018
|
+
"containerExists": "Skipping create container \"{container}\" as it already exists",
|
|
2019
|
+
"containerDeleting": "Deleting container \"{container}\"",
|
|
2020
|
+
"containerDeleted": "Container \"{container}\" deleted"
|
|
1954
2021
|
},
|
|
1955
2022
|
"fileBlobStorageConnector": {
|
|
1956
2023
|
"directoryCreating": "Creating directory \"{directory}\"",
|
|
1957
|
-
"directoryExists": "Skipping create directory \"{directory}\" as it already exists"
|
|
2024
|
+
"directoryExists": "Skipping create directory \"{directory}\" as it already exists",
|
|
2025
|
+
"directoryRemoving": "Removing directory \"{directory}\"",
|
|
2026
|
+
"directoryRemoved": "Directory \"{directory}\" removed"
|
|
1958
2027
|
},
|
|
1959
2028
|
"gcpBlobStorageConnector": {
|
|
1960
2029
|
"bucketCreating": "Creating bucket \"{bucket}\"",
|
|
1961
|
-
"bucketExists": "Skipping create bucket \"{bucket}\" as it already exists"
|
|
2030
|
+
"bucketExists": "Skipping create bucket \"{bucket}\" as it already exists",
|
|
2031
|
+
"bucketDeleting": "Deleting bucket \"{bucket}\"",
|
|
2032
|
+
"bucketDeleted": "Bucket \"{bucket}\" deleted"
|
|
2033
|
+
},
|
|
2034
|
+
"ipfsBlobStorageConnector": {
|
|
2035
|
+
"storeTearingDown": "Tearing down IPFS blob storage",
|
|
2036
|
+
"storeTornDown": "IPFS blob storage torn down"
|
|
2037
|
+
},
|
|
2038
|
+
"memoryBlobStorageConnector": {
|
|
2039
|
+
"storeTearingDown": "Tearing down memory blob storage",
|
|
2040
|
+
"storeTornDown": "Memory blob storage torn down"
|
|
1962
2041
|
},
|
|
1963
2042
|
"dataspaceControlPlaneService": {
|
|
1964
2043
|
"transferProcessInitiated": "Transfer Process initiated",
|
|
@@ -1972,8 +2051,8 @@
|
|
|
1972
2051
|
"resolvedProviderPid": "Resolved providerPid to Transfer Context",
|
|
1973
2052
|
"catalogDatasetFound": "Dataset validated in Federated Catalogue",
|
|
1974
2053
|
"agreementMatchedOffer": "Agreement matched Catalog Offer",
|
|
1975
|
-
"populatingFederatedCatalogue": "Populating Federated Catalogue with
|
|
1976
|
-
"federatedCataloguePopulated": "Federated Catalogue population completed (registered: {registeredCount}, errors: {errorCount},
|
|
2054
|
+
"populatingFederatedCatalogue": "Populating Federated Catalogue with stored app datasets",
|
|
2055
|
+
"federatedCataloguePopulated": "Federated Catalogue population completed (registered: {registeredCount}, errors: {errorCount}, datasets: {totalDatasets})",
|
|
1977
2056
|
"startingContractNegotiation": "Starting contract negotiation with provider",
|
|
1978
2057
|
"offerFoundInCatalog": "Offer found in Federated Catalogue and validated",
|
|
1979
2058
|
"negotiationInitiated": "Contract negotiation initiated successfully",
|
|
@@ -2002,38 +2081,52 @@
|
|
|
2002
2081
|
"databaseCreating": "Database \"{databaseId}\" creating",
|
|
2003
2082
|
"databaseExists": "Database \"{databaseId}\" created or it already exists",
|
|
2004
2083
|
"containerCreating": "Container \"{containerId}\" creating",
|
|
2005
|
-
"containerExists": "Container \"{containerId}\" created or it already exists"
|
|
2084
|
+
"containerExists": "Container \"{containerId}\" created or it already exists",
|
|
2085
|
+
"containerDeleting": "Deleting container \"{containerId}\"",
|
|
2086
|
+
"containerDeleted": "Container \"{containerId}\" deleted"
|
|
2006
2087
|
},
|
|
2007
2088
|
"dynamoDbEntityStorageConnector": {
|
|
2008
2089
|
"tableCreating": "Creating table \"{tableName}\"",
|
|
2009
2090
|
"tableCreated": "Created table \"{tableName}\"",
|
|
2010
|
-
"tableExists": "Skipping create table \"{tableName}\" as it already exists"
|
|
2091
|
+
"tableExists": "Skipping create table \"{tableName}\" as it already exists",
|
|
2092
|
+
"tableDeleting": "Deleting table \"{tableName}\"",
|
|
2093
|
+
"tableDeleted": "Table \"{tableName}\" deleted"
|
|
2011
2094
|
},
|
|
2012
2095
|
"fileEntityStorageConnector": {
|
|
2013
2096
|
"directoryCreating": "Creating directory \"{directory}\"",
|
|
2014
2097
|
"directoryCreated": "Created directory \"{directory}\"",
|
|
2015
|
-
"directoryExists": "Skipping create directory \"{directory}\" as it already exists"
|
|
2098
|
+
"directoryExists": "Skipping create directory \"{directory}\" as it already exists",
|
|
2099
|
+
"storeTearingDown": "Tearing down entity storage",
|
|
2100
|
+
"storeTornDown": "Entity storage torn down"
|
|
2016
2101
|
},
|
|
2017
2102
|
"firestoreEntityStorageConnector": {
|
|
2018
2103
|
"firestoreCreating": "Creating Firestore",
|
|
2019
|
-
"firestoreCreated": "Created Firestore"
|
|
2104
|
+
"firestoreCreated": "Created Firestore",
|
|
2105
|
+
"storeTearingDown": "Tearing down entity storage",
|
|
2106
|
+
"storeTornDown": "Entity storage torn down"
|
|
2020
2107
|
},
|
|
2021
2108
|
"mongoDbEntityStorageConnector": {
|
|
2022
2109
|
"databaseCreating": "Database \"{databaseName}\" creating",
|
|
2023
2110
|
"databaseExists": "Database \"{databaseName}\" created or it already exists",
|
|
2024
|
-
"collectionExists": "Database \"{collectionName}\" created or it already exists"
|
|
2111
|
+
"collectionExists": "Database \"{collectionName}\" created or it already exists",
|
|
2112
|
+
"collectionDropping": "Dropping collection \"{collection}\"",
|
|
2113
|
+
"collectionDropped": "Collection \"{collection}\" dropped"
|
|
2025
2114
|
},
|
|
2026
2115
|
"mySqlEntityStorageConnector": {
|
|
2027
2116
|
"databaseCreating": "Database \"{databaseName}\" creating",
|
|
2028
2117
|
"databaseExists": "Database \"{databaseName}\" created or it already exists",
|
|
2029
2118
|
"tableCreating": "Table \"{tableName}\" creating",
|
|
2030
|
-
"tableExists": "Table \"{tableName}\" created or it already exists"
|
|
2119
|
+
"tableExists": "Table \"{tableName}\" created or it already exists",
|
|
2120
|
+
"tableDropping": "Dropping table \"{tableName}\"",
|
|
2121
|
+
"tableDropped": "Table \"{tableName}\" dropped"
|
|
2031
2122
|
},
|
|
2032
2123
|
"postgreSqlEntityStorageConnector": {
|
|
2033
2124
|
"databaseCreating": "Database \"{databaseName}\" creating",
|
|
2034
2125
|
"databaseExists": "Database \"{databaseName}\" created or it already exists",
|
|
2035
2126
|
"tableCreating": "Table \"{tableName}\" creating",
|
|
2036
|
-
"tableExists": "Table \"{tableName}\" created or it already exists"
|
|
2127
|
+
"tableExists": "Table \"{tableName}\" created or it already exists",
|
|
2128
|
+
"tableDropping": "Dropping table \"{tableName}\"",
|
|
2129
|
+
"tableDropped": "Table \"{tableName}\" dropped"
|
|
2037
2130
|
},
|
|
2038
2131
|
"scyllaDBTableConnector": {
|
|
2039
2132
|
"keyspaceCreating": "Creating keyspace \"{keyspace}\"",
|
|
@@ -2041,7 +2134,9 @@
|
|
|
2041
2134
|
"tableCreating": "Creating table \"{table}\"",
|
|
2042
2135
|
"tableExists": "Skipping create table \"{table}\" as it already exists",
|
|
2043
2136
|
"typeCreating": "Creating type \"{typeName}\"",
|
|
2044
|
-
"sql": "SQL: \"{sql}\""
|
|
2137
|
+
"sql": "SQL: \"{sql}\"",
|
|
2138
|
+
"tableDropping": "Dropping table \"{table}\"",
|
|
2139
|
+
"tableDropped": "Table \"{table}\" dropped"
|
|
2045
2140
|
},
|
|
2046
2141
|
"scyllaDBViewConnector": {
|
|
2047
2142
|
"viewCreating": "Creating view \"{view}\"",
|
|
@@ -2250,12 +2345,98 @@
|
|
|
2250
2345
|
"revoked": "The proof of the attestation has been revoked"
|
|
2251
2346
|
}
|
|
2252
2347
|
},
|
|
2348
|
+
"health": {
|
|
2349
|
+
"memoryEntityStorageConnector": {
|
|
2350
|
+
"healthDescription": "Memory entity storage for \"{entityType}\" is always available"
|
|
2351
|
+
},
|
|
2352
|
+
"s3BlobStorageConnector": {
|
|
2353
|
+
"healthDescription": "S3 blob storage connector is healthy, bucket \"{bucketName}\" in region \"{region}\"",
|
|
2354
|
+
"healthCheckFailed": "Failed to connect to S3 bucket \"{bucketName}\" in region \"{region}\""
|
|
2355
|
+
},
|
|
2356
|
+
"azureBlobStorageConnector": {
|
|
2357
|
+
"healthDescription": "Azure blob storage connector is healthy, container \"{containerName}\" in account \"{accountName}\"",
|
|
2358
|
+
"healthCheckFailed": "Failed to connect to Azure blob storage container \"{containerName}\" in account \"{accountName}\""
|
|
2359
|
+
},
|
|
2360
|
+
"fileBlobStorageConnector": {
|
|
2361
|
+
"healthDescription": "File blob storage connector is healthy, directory \"{directory}\"",
|
|
2362
|
+
"healthCheckFailed": "Failed to access the storage directory \"{directory}\""
|
|
2363
|
+
},
|
|
2364
|
+
"gcpBlobStorageConnector": {
|
|
2365
|
+
"healthDescription": "GCP blob storage connector is healthy, bucket \"{bucketName}\" in project \"{projectId}\"",
|
|
2366
|
+
"healthCheckFailed": "Failed to connect to GCP storage bucket \"{bucketName}\" in project \"{projectId}\""
|
|
2367
|
+
},
|
|
2368
|
+
"ipfsBlobStorageConnector": {
|
|
2369
|
+
"healthDescription": "IPFS blob storage connector is healthy, connected to \"{apiUrl}\"",
|
|
2370
|
+
"healthCheckFailed": "Failed to connect to IPFS node at \"{apiUrl}\""
|
|
2371
|
+
},
|
|
2372
|
+
"memoryBlobStorageConnector": {
|
|
2373
|
+
"healthDescription": "Memory blob storage connector is healthy, storing \"{storedItemCount}\" items"
|
|
2374
|
+
},
|
|
2375
|
+
"cosmosDbEntityStorageConnector": {
|
|
2376
|
+
"healthDescription": "Checks if the Cosmos DB container \"{containerId}\" in database \"{databaseId}\" is available",
|
|
2377
|
+
"connectionFailed": "Failed to connect to Cosmos DB container \"{containerId}\" in database \"{databaseId}\""
|
|
2378
|
+
},
|
|
2379
|
+
"dynamoDbEntityStorageConnector": {
|
|
2380
|
+
"healthDescription": "Checks if the DynamoDB table \"{tableName}\" is available",
|
|
2381
|
+
"connectionFailed": "Failed to connect to DynamoDB table \"{tableName}\""
|
|
2382
|
+
},
|
|
2383
|
+
"fileEntityStorageConnector": {
|
|
2384
|
+
"healthDescription": "Checks if there is sufficient disk space in directory \"{directory}\" for the file entity storage connector to operate properly",
|
|
2385
|
+
"diskSpaceError": "Disk space critically low in directory \"{directory}\", {freeBytes} bytes free, threshold is {thresholdBytes} bytes",
|
|
2386
|
+
"diskSpaceCheckFailed": "Failed to check disk space in directory \"{directory}\"",
|
|
2387
|
+
"diskSpaceWarning": "Disk space low in directory \"{directory}\", {freeBytes} bytes free, threshold is {thresholdBytes} bytes"
|
|
2388
|
+
},
|
|
2389
|
+
"firestoreEntityStorageConnector": {
|
|
2390
|
+
"healthDescription": "Checks if the Firestore collection \"{collectionName}\" in project \"{projectId}\" is available",
|
|
2391
|
+
"connectionFailed": "Failed to connect to Firestore collection \"{collectionName}\" in project \"{projectId}\""
|
|
2392
|
+
},
|
|
2393
|
+
"mongoDbEntityStorageConnector": {
|
|
2394
|
+
"healthDescription": "Checks if the MongoDB collection \"{collection}\" in database \"{database}\" is available",
|
|
2395
|
+
"connectionFailed": "Failed to connect to MongoDB collection \"{collection}\" in database \"{database}\""
|
|
2396
|
+
},
|
|
2397
|
+
"mySqlEntityStorageConnector": {
|
|
2398
|
+
"healthDescription": "Checks if the MySQL table \"{tableName}\" in database \"{database}\" is available",
|
|
2399
|
+
"connectionFailed": "Failed to connect to MySQL table \"{tableName}\" in database \"{database}\""
|
|
2400
|
+
},
|
|
2401
|
+
"postgreSqlEntityStorageConnector": {
|
|
2402
|
+
"healthDescription": "Checks if the PostgreSQL table \"{tableName}\" is available",
|
|
2403
|
+
"connectionFailed": "Failed to connect to PostgreSQL table \"{tableName}\""
|
|
2404
|
+
},
|
|
2405
|
+
"scyllaDBTableConnector": {
|
|
2406
|
+
"healthDescription": "Checks if the ScyllaDB table \"{table}\" is available",
|
|
2407
|
+
"connectionFailed": "Failed to connect to ScyllaDB table \"{table}\""
|
|
2408
|
+
},
|
|
2409
|
+
"iotaIdentityConnector": {
|
|
2410
|
+
"healthDescription": "Connectivity and availability of the IOTA node \"{endpoint}\"",
|
|
2411
|
+
"nodeHealthCheckFailed": "Failed to check IOTA node health status \"{endpoint}\""
|
|
2412
|
+
},
|
|
2413
|
+
"iotaIdentityConnectorGasStation": {
|
|
2414
|
+
"healthDescription": "Connectivity and availability of the IOTA gas station \"{endpoint}\"",
|
|
2415
|
+
"healthCheckFailed": "Failed to check gas station health status \"{endpoint}\""
|
|
2416
|
+
},
|
|
2417
|
+
"iotaIdentityResolverConnector": {
|
|
2418
|
+
"healthDescription": "Connectivity and availability of the IOTA resolver node \"{endpoint}\"",
|
|
2419
|
+
"nodeHealthCheckFailed": "Failed to check IOTA node health status \"{endpoint}\""
|
|
2420
|
+
},
|
|
2421
|
+
"universalResolverConnector": {
|
|
2422
|
+
"healthDescription": "Connectivity and availability of the universal resolver \"{endpoint}\"",
|
|
2423
|
+
"resolverHealthCheckFailed": "Failed to check universal resolver health status \"{endpoint}\""
|
|
2424
|
+
},
|
|
2425
|
+
"hashicorpVaultConnector": {
|
|
2426
|
+
"healthDescription": "Connectivity and availability of the Hashicorp Vault server \"{endpoint}\"",
|
|
2427
|
+
"vaultHealthCheckFailed": "Failed to check Vault health status \"{endpoint}\""
|
|
2428
|
+
},
|
|
2429
|
+
"fastifyWebServer": {
|
|
2430
|
+
"description": "Checks if the Web Server is reachable",
|
|
2431
|
+
"reachable": "The Web Server is reachable",
|
|
2432
|
+
"unreachable": "The Web Server is unreachable"
|
|
2433
|
+
}
|
|
2434
|
+
},
|
|
2253
2435
|
"auditableItemGraphService": {},
|
|
2254
2436
|
"debug": {
|
|
2255
2437
|
"dataspaceControlPlaneService": {
|
|
2256
2438
|
"engineCloneStart": "Skipping Federated Catalogue population (engine clone or no engine)",
|
|
2257
|
-
"
|
|
2258
|
-
"datasetRegistered": "Dataset {datasetId} registered from app {appName}"
|
|
2439
|
+
"datasetRegistered": "Dataset {datasetId} registered for app {appId} (tenant: {tenantId})"
|
|
2259
2440
|
},
|
|
2260
2441
|
"dataspaceDataPlaneService": {
|
|
2261
2442
|
"newActivity": "New Activity of type \"{activityType}\" notified by \"{generator}\"",
|