@twin.org/node-core 0.0.3-next.6 → 0.0.3-next.60
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/README.md +3 -1
- package/dist/es/builders/engineEnvBuilder.js +538 -213
- package/dist/es/builders/engineEnvBuilder.js.map +1 -1
- package/dist/es/builders/engineServerEnvBuilder.js +86 -39
- package/dist/es/builders/engineServerEnvBuilder.js.map +1 -1
- package/dist/es/builders/extensionsBuilder.js +3 -3
- package/dist/es/builders/extensionsBuilder.js.map +1 -1
- package/dist/es/cli.js +254 -0
- package/dist/es/cli.js.map +1 -0
- package/dist/es/commands/bootstrapLegacy.js +311 -0
- package/dist/es/commands/bootstrapLegacy.js.map +1 -0
- package/dist/es/commands/help.js +86 -0
- package/dist/es/commands/help.js.map +1 -0
- package/dist/es/commands/identityCreate.js +377 -0
- package/dist/es/commands/identityCreate.js.map +1 -0
- package/dist/es/commands/identityImports.js +83 -0
- package/dist/es/commands/identityImports.js.map +1 -0
- package/dist/es/commands/identityVerifiableCredentialCreate.js +146 -0
- package/dist/es/commands/identityVerifiableCredentialCreate.js.map +1 -0
- package/dist/es/commands/identityVerificationMethodCreate.js +230 -0
- package/dist/es/commands/identityVerificationMethodCreate.js.map +1 -0
- package/dist/es/commands/identityVerificationMethodImport.js +127 -0
- package/dist/es/commands/identityVerificationMethodImport.js.map +1 -0
- package/dist/es/commands/nodeSetIdentity.js +69 -0
- package/dist/es/commands/nodeSetIdentity.js.map +1 -0
- package/dist/es/commands/removeTenantOrgAlias.js +83 -0
- package/dist/es/commands/removeTenantOrgAlias.js.map +1 -0
- package/dist/es/commands/setNodeOrgId.js +62 -0
- package/dist/es/commands/setNodeOrgId.js.map +1 -0
- package/dist/es/commands/setTenantOrgId.js +99 -0
- package/dist/es/commands/setTenantOrgId.js.map +1 -0
- package/dist/es/commands/tenantCreate.js +165 -0
- package/dist/es/commands/tenantCreate.js.map +1 -0
- package/dist/es/commands/tenantImport.js +108 -0
- package/dist/es/commands/tenantImport.js.map +1 -0
- package/dist/es/commands/tenantUpdate.js +108 -0
- package/dist/es/commands/tenantUpdate.js.map +1 -0
- package/dist/es/commands/userCreate.js +239 -0
- package/dist/es/commands/userCreate.js.map +1 -0
- package/dist/es/commands/userUpdate.js +154 -0
- package/dist/es/commands/userUpdate.js.map +1 -0
- package/dist/es/commands/vaultKeyCreate.js +191 -0
- package/dist/es/commands/vaultKeyCreate.js.map +1 -0
- package/dist/es/commands/vaultKeyImport.js +105 -0
- package/dist/es/commands/vaultKeyImport.js.map +1 -0
- package/dist/es/defaults.js +37 -2
- package/dist/es/defaults.js.map +1 -1
- package/dist/es/index.js +11 -4
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/ICliArgs.js +4 -0
- package/dist/es/models/ICliArgs.js.map +1 -0
- package/dist/es/models/ICliCommand.js +2 -0
- package/dist/es/models/ICliCommand.js.map +1 -0
- package/dist/es/models/ICliCommandDefinition.js +2 -0
- package/dist/es/models/ICliCommandDefinition.js.map +1 -0
- package/dist/es/models/ICliCommandDefinitionParam.js +2 -0
- package/dist/es/models/ICliCommandDefinitionParam.js.map +1 -0
- package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
- package/dist/es/models/IEngineServerEnvironmentVariables.js.map +1 -1
- package/dist/es/models/INodeEngineState.js.map +1 -1
- package/dist/es/models/INodeEnvironmentVariables.js.map +1 -1
- package/dist/es/models/INodeOptions.js.map +1 -1
- package/dist/es/models/cliCommandParamType.js +4 -0
- package/dist/es/models/cliCommandParamType.js.map +1 -0
- package/dist/es/models/nodeExtensionInitialiseEngineMethod.js +2 -0
- package/dist/es/models/nodeExtensionInitialiseEngineMethod.js.map +1 -0
- package/dist/es/models/nodeExtensionInitialiseEngineServerMethod.js +2 -0
- package/dist/es/models/nodeExtensionInitialiseEngineServerMethod.js.map +1 -0
- package/dist/es/models/nodeExtensionInitialiseMethod.js +2 -0
- package/dist/es/models/nodeExtensionInitialiseMethod.js.map +1 -0
- package/dist/es/models/nodeExtensionShutdownMethod.js +4 -0
- package/dist/es/models/nodeExtensionShutdownMethod.js.map +1 -0
- package/dist/es/node.js +87 -40
- package/dist/es/node.js.map +1 -1
- package/dist/es/start.js +189 -0
- package/dist/es/start.js.map +1 -0
- package/dist/es/utils.js +24 -27
- package/dist/es/utils.js.map +1 -1
- package/dist/types/builders/engineEnvBuilder.d.ts +60 -5
- package/dist/types/builders/engineServerEnvBuilder.d.ts +11 -2
- package/dist/types/builders/extensionsBuilder.d.ts +3 -3
- package/dist/types/cli.d.ts +56 -0
- package/dist/types/commands/bootstrapLegacy.d.ts +67 -0
- package/dist/types/commands/help.d.ts +24 -0
- package/dist/types/commands/identityCreate.d.ts +45 -0
- package/dist/types/commands/identityImports.d.ts +25 -0
- package/dist/types/commands/identityVerifiableCredentialCreate.d.ts +43 -0
- package/dist/types/commands/identityVerificationMethodCreate.d.ts +47 -0
- package/dist/types/commands/identityVerificationMethodImport.d.ts +32 -0
- package/dist/types/commands/nodeSetIdentity.d.ts +23 -0
- package/dist/types/commands/removeTenantOrgAlias.d.ts +24 -0
- package/dist/types/commands/setNodeOrgId.d.ts +24 -0
- package/dist/types/commands/setTenantOrgId.d.ts +38 -0
- package/dist/types/commands/tenantCreate.d.ts +41 -0
- package/dist/types/commands/tenantImport.d.ts +29 -0
- package/dist/types/commands/tenantUpdate.d.ts +29 -0
- package/dist/types/commands/userCreate.d.ts +51 -0
- package/dist/types/commands/userUpdate.d.ts +40 -0
- package/dist/types/commands/vaultKeyCreate.d.ts +43 -0
- package/dist/types/commands/vaultKeyImport.d.ts +29 -0
- package/dist/types/defaults.d.ts +30 -2
- package/dist/types/index.d.ts +11 -4
- package/dist/types/models/ICliArgs.d.ts +20 -0
- package/dist/types/models/ICliCommand.d.ts +17 -0
- package/dist/types/models/ICliCommandDefinition.d.ts +46 -0
- package/dist/types/models/ICliCommandDefinitionParam.d.ts +35 -0
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +168 -95
- package/dist/types/models/IEngineServerEnvironmentVariables.d.ts +8 -0
- package/dist/types/models/INodeEngineState.d.ts +2 -9
- package/dist/types/models/INodeEnvironmentVariables.d.ts +0 -38
- package/dist/types/models/INodeOptions.d.ts +6 -2
- package/dist/types/models/cliCommandParamType.d.ts +4 -0
- package/dist/types/models/nodeExtensionInitialiseEngineMethod.d.ts +8 -0
- package/dist/types/models/nodeExtensionInitialiseEngineServerMethod.d.ts +9 -0
- package/dist/types/models/nodeExtensionInitialiseMethod.d.ts +9 -0
- package/dist/types/models/nodeExtensionShutdownMethod.d.ts +6 -0
- package/dist/types/node.d.ts +5 -4
- package/dist/types/{server.d.ts → start.d.ts} +4 -2
- package/dist/types/utils.d.ts +9 -10
- package/docs/changelog.md +675 -180
- package/docs/examples.md +99 -1
- package/docs/reference/functions/buildConfiguration.md +1 -1
- package/docs/reference/functions/buildEngineConfiguration.md +1 -7
- package/docs/reference/functions/buildEngineServerConfiguration.md +1 -1
- package/docs/reference/functions/constructCliCommand.md +27 -0
- package/docs/reference/functions/executeCommand.md +29 -0
- package/docs/reference/functions/extensionsInitialiseEngine.md +1 -1
- package/docs/reference/functions/extensionsInitialiseEngineServer.md +1 -1
- package/docs/reference/functions/getEnvDefaults.md +19 -0
- package/docs/reference/functions/getScriptDirectory.md +19 -0
- package/docs/reference/functions/initialiseLocales.md +2 -0
- package/docs/reference/functions/isAuthEntityStorageRequired.md +20 -0
- package/docs/reference/functions/isAutomationRequired.md +20 -0
- package/docs/reference/functions/isBackgroundTasksRequired.md +20 -0
- package/docs/reference/functions/isFederatedCatalogueRequired.md +20 -0
- package/docs/reference/functions/isImmutableProofRequired.md +20 -0
- package/docs/reference/functions/isRightsManagementRequired.md +23 -0
- package/docs/reference/functions/isTaskSchedulerRequired.md +20 -0
- package/docs/reference/functions/isTelemetryRequired.md +20 -0
- package/docs/reference/functions/isTrustRequired.md +20 -0
- package/docs/reference/functions/loadJsonFile.md +1 -1
- package/docs/reference/functions/loadTextFile.md +1 -1
- package/docs/reference/functions/parseCommandLineArgs.md +19 -0
- package/docs/reference/functions/processEnvOptions.md +27 -0
- package/docs/reference/functions/registerCommands.md +9 -0
- package/docs/reference/functions/resolvePackageEntryPoint.md +2 -2
- package/docs/reference/functions/run.md +8 -2
- package/docs/reference/functions/shutdownExtensions.md +1 -1
- package/docs/reference/functions/start.md +9 -3
- package/docs/reference/functions/substituteEnvOptions.md +25 -0
- package/docs/reference/index.md +24 -14
- package/docs/reference/interfaces/ICacheMetadata.md +3 -3
- package/docs/reference/interfaces/ICliArgs.md +35 -0
- package/docs/reference/interfaces/ICliCommand.md +23 -0
- package/docs/reference/interfaces/ICliCommandDefinition.md +101 -0
- package/docs/reference/interfaces/ICliCommandDefinitionParam.md +65 -0
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +488 -359
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +652 -431
- package/docs/reference/interfaces/IModuleProtocol.md +3 -3
- package/docs/reference/interfaces/INodeEngineState.md +6 -21
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +661 -516
- package/docs/reference/interfaces/INodeOptions.md +44 -36
- package/docs/reference/interfaces/IProtocolHandlerResult.md +2 -2
- package/docs/reference/type-aliases/CliCommandParamType.md +5 -0
- package/docs/reference/type-aliases/NodeExtensionInitialiseEngineMethod.md +3 -1
- package/docs/reference/type-aliases/NodeExtensionInitialiseEngineServerMethod.md +3 -1
- package/docs/reference/type-aliases/NodeExtensionInitialiseMethod.md +3 -1
- package/docs/reference/type-aliases/NodeExtensionShutdownMethod.md +3 -1
- package/docs/reference/variables/ATTESTATION_VERIFICATION_METHOD_ID.md +2 -0
- package/docs/reference/variables/AUTH_SIGNING_KEY_ID.md +2 -0
- package/docs/reference/variables/BLOB_STORAGE_ENCRYPTION_KEY_ID.md +2 -0
- package/docs/reference/variables/CONTEXT_ID_HANDLER_FEATURE_DID.md +2 -0
- package/docs/reference/variables/CONTEXT_ID_HANDLER_FEATURE_TENANT.md +2 -0
- package/docs/reference/variables/IMMUTABLE_PROOF_VERIFICATION_METHOD_ID.md +2 -0
- package/docs/reference/variables/ModuleProtocol.md +5 -5
- package/docs/reference/variables/TRUST_VERIFICATION_METHOD_ID.md +5 -0
- package/locales/en.json +674 -30
- package/package.json +10 -6
- package/dist/es/bootstrap.js +0 -366
- package/dist/es/bootstrap.js.map +0 -1
- package/dist/es/identity.js +0 -182
- package/dist/es/identity.js.map +0 -1
- package/dist/es/models/nodeExtensionMethods.js +0 -2
- package/dist/es/models/nodeExtensionMethods.js.map +0 -1
- package/dist/es/models/nodeFeatures.js +0 -21
- package/dist/es/models/nodeFeatures.js.map +0 -1
- package/dist/es/server.js +0 -81
- package/dist/es/server.js.map +0 -1
- package/dist/types/bootstrap.d.ts +0 -68
- package/dist/types/identity.d.ts +0 -14
- package/dist/types/models/nodeExtensionMethods.d.ts +0 -27
- package/dist/types/models/nodeFeatures.d.ts +0 -21
- package/docs/detailed-guide.md +0 -129
- package/docs/reference/functions/bootstrap.md +0 -29
- package/docs/reference/functions/bootstrapAuth.md +0 -35
- package/docs/reference/functions/bootstrapBlobEncryption.md +0 -35
- package/docs/reference/functions/bootstrapImmutableProofMethod.md +0 -35
- package/docs/reference/functions/bootstrapNodeAdminUser.md +0 -35
- package/docs/reference/functions/bootstrapNodeId.md +0 -35
- package/docs/reference/functions/bootstrapSynchronisedStorage.md +0 -35
- package/docs/reference/functions/bootstrapTenantId.md +0 -35
- package/docs/reference/functions/getFeatures.md +0 -19
- package/docs/reference/type-aliases/NodeFeatures.md +0 -5
- package/docs/reference/variables/NodeFeatures.md +0 -25
- package/docs/reference/variables/SYNCHRONISED_STORAGE_BLOB_STORAGE_ENCRYPTION_KEY_ID.md +0 -3
- package/docs/reference/variables/VC_AUTHENTICATION_VERIFICATION_METHOD_ID.md +0 -3
|
@@ -8,1131 +8,1260 @@ The engine core environment variables.
|
|
|
8
8
|
|
|
9
9
|
## Properties
|
|
10
10
|
|
|
11
|
-
### debug?
|
|
11
|
+
### debug? {#debug}
|
|
12
12
|
|
|
13
|
-
> `optional` **debug
|
|
13
|
+
> `optional` **debug?**: `string`
|
|
14
14
|
|
|
15
15
|
Start the engine in debug mode.
|
|
16
16
|
|
|
17
17
|
***
|
|
18
18
|
|
|
19
|
-
###
|
|
19
|
+
### silent? {#silent}
|
|
20
20
|
|
|
21
|
-
> `optional` **
|
|
21
|
+
> `optional` **silent?**: `string`
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
***
|
|
26
|
-
|
|
27
|
-
### stateFilename?
|
|
28
|
-
|
|
29
|
-
> `optional` **stateFilename**: `string`
|
|
30
|
-
|
|
31
|
-
The name of the state file.
|
|
23
|
+
Start the engine in silent mode.
|
|
32
24
|
|
|
33
25
|
***
|
|
34
26
|
|
|
35
|
-
###
|
|
27
|
+
### storageFileRoot? {#storagefileroot}
|
|
36
28
|
|
|
37
|
-
> `optional` **
|
|
29
|
+
> `optional` **storageFileRoot?**: `string`
|
|
38
30
|
|
|
39
|
-
|
|
31
|
+
The root directory for storing items like state file.
|
|
40
32
|
|
|
41
33
|
***
|
|
42
34
|
|
|
43
|
-
###
|
|
35
|
+
### stateFilename? {#statefilename}
|
|
44
36
|
|
|
45
|
-
> `optional` **
|
|
37
|
+
> `optional` **stateFilename?**: `string`
|
|
46
38
|
|
|
47
|
-
|
|
39
|
+
The name of the state file.
|
|
48
40
|
|
|
49
41
|
***
|
|
50
42
|
|
|
51
|
-
###
|
|
43
|
+
### tenantEnabled? {#tenantenabled}
|
|
52
44
|
|
|
53
|
-
> `optional` **
|
|
45
|
+
> `optional` **tenantEnabled?**: `string`
|
|
54
46
|
|
|
55
|
-
|
|
47
|
+
Is multi-tenant support enabled, defaults to false.
|
|
56
48
|
|
|
57
49
|
***
|
|
58
50
|
|
|
59
|
-
### entityStorageConnectorType?
|
|
51
|
+
### entityStorageConnectorType? {#entitystorageconnectortype}
|
|
60
52
|
|
|
61
|
-
> `optional` **entityStorageConnectorType
|
|
53
|
+
> `optional` **entityStorageConnectorType?**: `string`
|
|
62
54
|
|
|
63
55
|
The type of the entity storage to create, comma separate for more than one connector.
|
|
64
56
|
values: file, memory, aws-dynamodb, azure-cosmosdb, gcp-firestoredb, scylladb, mysql, mongodb, postgresql
|
|
65
57
|
|
|
66
58
|
***
|
|
67
59
|
|
|
68
|
-
### entityStorageConnectorDefault?
|
|
60
|
+
### entityStorageConnectorDefault? {#entitystorageconnectordefault}
|
|
69
61
|
|
|
70
|
-
> `optional` **entityStorageConnectorDefault
|
|
62
|
+
> `optional` **entityStorageConnectorDefault?**: `string`
|
|
71
63
|
|
|
72
64
|
The default entity storage connector to use, defaults to the first one in the list.
|
|
73
65
|
|
|
74
66
|
***
|
|
75
67
|
|
|
76
|
-
### entityStorageTablePrefix?
|
|
68
|
+
### entityStorageTablePrefix? {#entitystoragetableprefix}
|
|
77
69
|
|
|
78
|
-
> `optional` **entityStorageTablePrefix
|
|
70
|
+
> `optional` **entityStorageTablePrefix?**: `string`
|
|
79
71
|
|
|
80
72
|
A prefix for all the table in entity-storage, can be empty.
|
|
81
73
|
|
|
82
74
|
***
|
|
83
75
|
|
|
84
|
-
### awsDynamodbAuthMode?
|
|
76
|
+
### awsDynamodbAuthMode? {#awsdynamodbauthmode}
|
|
85
77
|
|
|
86
|
-
> `optional` **awsDynamodbAuthMode
|
|
78
|
+
> `optional` **awsDynamodbAuthMode?**: `string`
|
|
87
79
|
|
|
88
80
|
AWS DynamoDB auth mode, either credentials or pod.
|
|
89
81
|
|
|
90
82
|
***
|
|
91
83
|
|
|
92
|
-
### awsDynamodbAccessKeyId?
|
|
84
|
+
### awsDynamodbAccessKeyId? {#awsdynamodbaccesskeyid}
|
|
93
85
|
|
|
94
|
-
> `optional` **awsDynamodbAccessKeyId
|
|
86
|
+
> `optional` **awsDynamodbAccessKeyId?**: `string`
|
|
95
87
|
|
|
96
88
|
AWS Dynamo DB access key id.
|
|
97
89
|
|
|
98
90
|
***
|
|
99
91
|
|
|
100
|
-
### awsDynamodbEndpoint?
|
|
92
|
+
### awsDynamodbEndpoint? {#awsdynamodbendpoint}
|
|
101
93
|
|
|
102
|
-
> `optional` **awsDynamodbEndpoint
|
|
94
|
+
> `optional` **awsDynamodbEndpoint?**: `string`
|
|
103
95
|
|
|
104
96
|
AWS Dynamo DB Endpoint if running local instance.
|
|
105
97
|
|
|
106
98
|
***
|
|
107
99
|
|
|
108
|
-
### awsDynamodbRegion?
|
|
100
|
+
### awsDynamodbRegion? {#awsdynamodbregion}
|
|
109
101
|
|
|
110
|
-
> `optional` **awsDynamodbRegion
|
|
102
|
+
> `optional` **awsDynamodbRegion?**: `string`
|
|
111
103
|
|
|
112
104
|
AWS Dynamo DB region.
|
|
113
105
|
|
|
114
106
|
***
|
|
115
107
|
|
|
116
|
-
### awsDynamodbSecretAccessKey?
|
|
108
|
+
### awsDynamodbSecretAccessKey? {#awsdynamodbsecretaccesskey}
|
|
117
109
|
|
|
118
|
-
> `optional` **awsDynamodbSecretAccessKey
|
|
110
|
+
> `optional` **awsDynamodbSecretAccessKey?**: `string`
|
|
119
111
|
|
|
120
112
|
AWS Dynamo DB secret access key.
|
|
121
113
|
|
|
122
114
|
***
|
|
123
115
|
|
|
124
|
-
### awsDynamodbConnectionTimeoutMs?
|
|
116
|
+
### awsDynamodbConnectionTimeoutMs? {#awsdynamodbconnectiontimeoutms}
|
|
125
117
|
|
|
126
|
-
> `optional` **awsDynamodbConnectionTimeoutMs
|
|
118
|
+
> `optional` **awsDynamodbConnectionTimeoutMs?**: `string`
|
|
127
119
|
|
|
128
120
|
AWS Dynamo DB connection timeout.
|
|
129
121
|
|
|
130
122
|
***
|
|
131
123
|
|
|
132
|
-
### azureCosmosdbKey?
|
|
124
|
+
### azureCosmosdbKey? {#azurecosmosdbkey}
|
|
133
125
|
|
|
134
|
-
> `optional` **azureCosmosdbKey
|
|
126
|
+
> `optional` **azureCosmosdbKey?**: `string`
|
|
135
127
|
|
|
136
128
|
Azure Cosmos DB key.
|
|
137
129
|
|
|
138
130
|
***
|
|
139
131
|
|
|
140
|
-
### azureCosmosdbContainerId?
|
|
132
|
+
### azureCosmosdbContainerId? {#azurecosmosdbcontainerid}
|
|
141
133
|
|
|
142
|
-
> `optional` **azureCosmosdbContainerId
|
|
134
|
+
> `optional` **azureCosmosdbContainerId?**: `string`
|
|
143
135
|
|
|
144
136
|
Azure Cosmos DB container id.
|
|
145
137
|
|
|
146
138
|
***
|
|
147
139
|
|
|
148
|
-
### azureCosmosdbDatabaseId?
|
|
140
|
+
### azureCosmosdbDatabaseId? {#azurecosmosdbdatabaseid}
|
|
149
141
|
|
|
150
|
-
> `optional` **azureCosmosdbDatabaseId
|
|
142
|
+
> `optional` **azureCosmosdbDatabaseId?**: `string`
|
|
151
143
|
|
|
152
144
|
Azure Cosmos DB database id.
|
|
153
145
|
|
|
154
146
|
***
|
|
155
147
|
|
|
156
|
-
### azureCosmosdbEndpoint?
|
|
148
|
+
### azureCosmosdbEndpoint? {#azurecosmosdbendpoint}
|
|
157
149
|
|
|
158
|
-
> `optional` **azureCosmosdbEndpoint
|
|
150
|
+
> `optional` **azureCosmosdbEndpoint?**: `string`
|
|
159
151
|
|
|
160
152
|
Azure Cosmos DB endpoint.
|
|
161
153
|
|
|
162
154
|
***
|
|
163
155
|
|
|
164
|
-
### gcpFirestoreCollectionName?
|
|
156
|
+
### gcpFirestoreCollectionName? {#gcpfirestorecollectionname}
|
|
165
157
|
|
|
166
|
-
> `optional` **gcpFirestoreCollectionName
|
|
158
|
+
> `optional` **gcpFirestoreCollectionName?**: `string`
|
|
167
159
|
|
|
168
160
|
GCP Firestore collection name.
|
|
169
161
|
|
|
170
162
|
***
|
|
171
163
|
|
|
172
|
-
### gcpFirestoreCredentials?
|
|
164
|
+
### gcpFirestoreCredentials? {#gcpfirestorecredentials}
|
|
173
165
|
|
|
174
|
-
> `optional` **gcpFirestoreCredentials
|
|
166
|
+
> `optional` **gcpFirestoreCredentials?**: `string`
|
|
175
167
|
|
|
176
168
|
GCP Firestore credentials.
|
|
177
169
|
|
|
178
170
|
***
|
|
179
171
|
|
|
180
|
-
### gcpFirestoreDatabaseId?
|
|
172
|
+
### gcpFirestoreDatabaseId? {#gcpfirestoredatabaseid}
|
|
181
173
|
|
|
182
|
-
> `optional` **gcpFirestoreDatabaseId
|
|
174
|
+
> `optional` **gcpFirestoreDatabaseId?**: `string`
|
|
183
175
|
|
|
184
176
|
GCP Firestore database id.
|
|
185
177
|
|
|
186
178
|
***
|
|
187
179
|
|
|
188
|
-
###
|
|
180
|
+
### gcpFirestoreEndpoint? {#gcpfirestoreendpoint}
|
|
189
181
|
|
|
190
|
-
> `optional` **
|
|
182
|
+
> `optional` **gcpFirestoreEndpoint?**: `string`
|
|
191
183
|
|
|
192
184
|
GCP Firestore endpoint.
|
|
193
185
|
|
|
194
186
|
***
|
|
195
187
|
|
|
196
|
-
### gcpFirestoreProjectId?
|
|
188
|
+
### gcpFirestoreProjectId? {#gcpfirestoreprojectid}
|
|
197
189
|
|
|
198
|
-
> `optional` **gcpFirestoreProjectId
|
|
190
|
+
> `optional` **gcpFirestoreProjectId?**: `string`
|
|
199
191
|
|
|
200
192
|
GCP Firestore project id.
|
|
201
193
|
|
|
202
194
|
***
|
|
203
195
|
|
|
204
|
-
### scylladbHosts?
|
|
196
|
+
### scylladbHosts? {#scylladbhosts}
|
|
205
197
|
|
|
206
|
-
> `optional` **scylladbHosts
|
|
198
|
+
> `optional` **scylladbHosts?**: `string`
|
|
207
199
|
|
|
208
200
|
ScyllaDB hosts as comma separated string.
|
|
209
201
|
|
|
210
202
|
***
|
|
211
203
|
|
|
212
|
-
### scylladbKeyspace?
|
|
204
|
+
### scylladbKeyspace? {#scylladbkeyspace}
|
|
213
205
|
|
|
214
|
-
> `optional` **scylladbKeyspace
|
|
206
|
+
> `optional` **scylladbKeyspace?**: `string`
|
|
215
207
|
|
|
216
208
|
ScyllaDB keyspace.
|
|
217
209
|
|
|
218
210
|
***
|
|
219
211
|
|
|
220
|
-
### scylladbLocalDataCenter?
|
|
212
|
+
### scylladbLocalDataCenter? {#scylladblocaldatacenter}
|
|
221
213
|
|
|
222
|
-
> `optional` **scylladbLocalDataCenter
|
|
214
|
+
> `optional` **scylladbLocalDataCenter?**: `string`
|
|
223
215
|
|
|
224
216
|
ScyllaDB local data center.
|
|
225
217
|
|
|
226
218
|
***
|
|
227
219
|
|
|
228
|
-
### scylladbPort?
|
|
220
|
+
### scylladbPort? {#scylladbport}
|
|
229
221
|
|
|
230
|
-
> `optional` **scylladbPort
|
|
222
|
+
> `optional` **scylladbPort?**: `string`
|
|
231
223
|
|
|
232
224
|
ScyllaDB port.
|
|
233
225
|
|
|
234
226
|
***
|
|
235
227
|
|
|
236
|
-
### mySqlHost?
|
|
228
|
+
### mySqlHost? {#mysqlhost}
|
|
237
229
|
|
|
238
|
-
> `optional` **mySqlHost
|
|
230
|
+
> `optional` **mySqlHost?**: `string`
|
|
239
231
|
|
|
240
232
|
MySQL host.
|
|
241
233
|
|
|
242
234
|
***
|
|
243
235
|
|
|
244
|
-
### mySqlPort?
|
|
236
|
+
### mySqlPort? {#mysqlport}
|
|
245
237
|
|
|
246
|
-
> `optional` **mySqlPort
|
|
238
|
+
> `optional` **mySqlPort?**: `number`
|
|
247
239
|
|
|
248
240
|
MySQL port.
|
|
249
241
|
|
|
250
242
|
***
|
|
251
243
|
|
|
252
|
-
### mySqlUser?
|
|
244
|
+
### mySqlUser? {#mysqluser}
|
|
253
245
|
|
|
254
|
-
> `optional` **mySqlUser
|
|
246
|
+
> `optional` **mySqlUser?**: `string`
|
|
255
247
|
|
|
256
248
|
MySQL username.
|
|
257
249
|
|
|
258
250
|
***
|
|
259
251
|
|
|
260
|
-
### mySqlPassword?
|
|
252
|
+
### mySqlPassword? {#mysqlpassword}
|
|
261
253
|
|
|
262
|
-
> `optional` **mySqlPassword
|
|
254
|
+
> `optional` **mySqlPassword?**: `string`
|
|
263
255
|
|
|
264
256
|
MySQL password.
|
|
265
257
|
|
|
266
258
|
***
|
|
267
259
|
|
|
268
|
-
### mySqlDatabase?
|
|
260
|
+
### mySqlDatabase? {#mysqldatabase}
|
|
269
261
|
|
|
270
|
-
> `optional` **mySqlDatabase
|
|
262
|
+
> `optional` **mySqlDatabase?**: `string`
|
|
271
263
|
|
|
272
264
|
MySQL Database.
|
|
273
265
|
|
|
274
266
|
***
|
|
275
267
|
|
|
276
|
-
### mongoDbHost?
|
|
268
|
+
### mongoDbHost? {#mongodbhost}
|
|
277
269
|
|
|
278
|
-
> `optional` **mongoDbHost
|
|
270
|
+
> `optional` **mongoDbHost?**: `string`
|
|
279
271
|
|
|
280
272
|
MongoDB host.
|
|
281
273
|
|
|
282
274
|
***
|
|
283
275
|
|
|
284
|
-
### mongoDbPort?
|
|
276
|
+
### mongoDbPort? {#mongodbport}
|
|
285
277
|
|
|
286
|
-
> `optional` **mongoDbPort
|
|
278
|
+
> `optional` **mongoDbPort?**: `number`
|
|
287
279
|
|
|
288
280
|
MongoDB port.
|
|
289
281
|
|
|
290
282
|
***
|
|
291
283
|
|
|
292
|
-
### mongoDbUser?
|
|
284
|
+
### mongoDbUser? {#mongodbuser}
|
|
293
285
|
|
|
294
|
-
> `optional` **mongoDbUser
|
|
286
|
+
> `optional` **mongoDbUser?**: `string`
|
|
295
287
|
|
|
296
288
|
MongoDB username.
|
|
297
289
|
|
|
298
290
|
***
|
|
299
291
|
|
|
300
|
-
### mongoDbPassword?
|
|
292
|
+
### mongoDbPassword? {#mongodbpassword}
|
|
301
293
|
|
|
302
|
-
> `optional` **mongoDbPassword
|
|
294
|
+
> `optional` **mongoDbPassword?**: `string`
|
|
303
295
|
|
|
304
296
|
MongoDB password.
|
|
305
297
|
|
|
306
298
|
***
|
|
307
299
|
|
|
308
|
-
### mongoDbDatabase?
|
|
300
|
+
### mongoDbDatabase? {#mongodbdatabase}
|
|
309
301
|
|
|
310
|
-
> `optional` **mongoDbDatabase
|
|
302
|
+
> `optional` **mongoDbDatabase?**: `string`
|
|
311
303
|
|
|
312
304
|
MongoDB Database.
|
|
313
305
|
|
|
314
306
|
***
|
|
315
307
|
|
|
316
|
-
### postgreSqlHost?
|
|
308
|
+
### postgreSqlHost? {#postgresqlhost}
|
|
317
309
|
|
|
318
|
-
> `optional` **postgreSqlHost
|
|
310
|
+
> `optional` **postgreSqlHost?**: `string`
|
|
319
311
|
|
|
320
312
|
PostgreSQl host.
|
|
321
313
|
|
|
322
314
|
***
|
|
323
315
|
|
|
324
|
-
### postgreSqlPort?
|
|
316
|
+
### postgreSqlPort? {#postgresqlport}
|
|
325
317
|
|
|
326
|
-
> `optional` **postgreSqlPort
|
|
318
|
+
> `optional` **postgreSqlPort?**: `number`
|
|
327
319
|
|
|
328
320
|
PostgreSQl port.
|
|
329
321
|
|
|
330
322
|
***
|
|
331
323
|
|
|
332
|
-
### postgreSqlUser?
|
|
324
|
+
### postgreSqlUser? {#postgresqluser}
|
|
333
325
|
|
|
334
|
-
> `optional` **postgreSqlUser
|
|
326
|
+
> `optional` **postgreSqlUser?**: `string`
|
|
335
327
|
|
|
336
328
|
PostgreSQl username.
|
|
337
329
|
|
|
338
330
|
***
|
|
339
331
|
|
|
340
|
-
### postgreSqlPassword?
|
|
332
|
+
### postgreSqlPassword? {#postgresqlpassword}
|
|
341
333
|
|
|
342
|
-
> `optional` **postgreSqlPassword
|
|
334
|
+
> `optional` **postgreSqlPassword?**: `string`
|
|
343
335
|
|
|
344
336
|
PostgreSQl password.
|
|
345
337
|
|
|
346
338
|
***
|
|
347
339
|
|
|
348
|
-
### postgreSqlDatabase?
|
|
340
|
+
### postgreSqlDatabase? {#postgresqldatabase}
|
|
349
341
|
|
|
350
|
-
> `optional` **postgreSqlDatabase
|
|
342
|
+
> `optional` **postgreSqlDatabase?**: `string`
|
|
351
343
|
|
|
352
344
|
PostgreSQl Database.
|
|
353
345
|
|
|
354
346
|
***
|
|
355
347
|
|
|
356
|
-
### ipfsBearerToken?
|
|
348
|
+
### ipfsBearerToken? {#ipfsbearertoken}
|
|
357
349
|
|
|
358
|
-
> `optional` **ipfsBearerToken
|
|
350
|
+
> `optional` **ipfsBearerToken?**: `string`
|
|
359
351
|
|
|
360
352
|
The security token for accessing IPFS API.
|
|
361
353
|
|
|
362
354
|
***
|
|
363
355
|
|
|
364
|
-
### ipfsApiUrl?
|
|
356
|
+
### ipfsApiUrl? {#ipfsapiurl}
|
|
365
357
|
|
|
366
|
-
> `optional` **ipfsApiUrl
|
|
358
|
+
> `optional` **ipfsApiUrl?**: `string`
|
|
367
359
|
|
|
368
360
|
The url for accessing IPFS API.
|
|
369
361
|
|
|
370
362
|
***
|
|
371
363
|
|
|
372
|
-
### blobStorageConnectorType?
|
|
364
|
+
### blobStorageConnectorType? {#blobstorageconnectortype}
|
|
373
365
|
|
|
374
|
-
> `optional` **blobStorageConnectorType
|
|
366
|
+
> `optional` **blobStorageConnectorType?**: `string`
|
|
375
367
|
|
|
376
368
|
The type of the entity storage to create, comma separate for more than one connector.
|
|
377
369
|
values: memory, file, ipfs, aws-s3, azure-storage, gcp-storage.
|
|
378
370
|
|
|
379
371
|
***
|
|
380
372
|
|
|
381
|
-
### blobStorageConnectorDefault?
|
|
373
|
+
### blobStorageConnectorDefault? {#blobstorageconnectordefault}
|
|
382
374
|
|
|
383
|
-
> `optional` **blobStorageConnectorDefault
|
|
375
|
+
> `optional` **blobStorageConnectorDefault?**: `string`
|
|
384
376
|
|
|
385
377
|
The default blob storage connector to use, defaults to the first one in the list.
|
|
386
378
|
|
|
387
379
|
***
|
|
388
380
|
|
|
389
|
-
###
|
|
390
|
-
|
|
391
|
-
> `optional` **blobStorageConnectorPublic**: `string`
|
|
392
|
-
|
|
393
|
-
Blog storage connector which has public access.
|
|
394
|
-
|
|
395
|
-
***
|
|
396
|
-
|
|
397
|
-
### blobStorageEnableEncryption?
|
|
381
|
+
### blobStorageEnableEncryption? {#blobstorageenableencryption}
|
|
398
382
|
|
|
399
|
-
> `optional` **blobStorageEnableEncryption
|
|
383
|
+
> `optional` **blobStorageEnableEncryption?**: `string`
|
|
400
384
|
|
|
401
385
|
Enable encryption for the blob storage.
|
|
402
386
|
|
|
403
387
|
***
|
|
404
388
|
|
|
405
|
-
### blobStorageEncryptionKeyId?
|
|
389
|
+
### blobStorageEncryptionKeyId? {#blobstorageencryptionkeyid}
|
|
406
390
|
|
|
407
|
-
> `optional` **blobStorageEncryptionKeyId
|
|
391
|
+
> `optional` **blobStorageEncryptionKeyId?**: `string`
|
|
408
392
|
|
|
409
393
|
The id of the encryption key for the blob storage.
|
|
410
394
|
|
|
411
395
|
***
|
|
412
396
|
|
|
413
|
-
###
|
|
414
|
-
|
|
415
|
-
> `optional` **blobStorageSymmetricEncryptionKey**: `string`
|
|
416
|
-
|
|
417
|
-
A symmetric encryption key for the blob storage, should be ChaCha20Poly1305 in base64 format.
|
|
418
|
-
If encryption is enabled but a key is not provided one will be generated.
|
|
419
|
-
|
|
420
|
-
***
|
|
421
|
-
|
|
422
|
-
### blobStoragePrefix?
|
|
397
|
+
### blobStoragePrefix? {#blobstorageprefix}
|
|
423
398
|
|
|
424
|
-
> `optional` **blobStoragePrefix
|
|
399
|
+
> `optional` **blobStoragePrefix?**: `string`
|
|
425
400
|
|
|
426
401
|
A prefix for all the blobs in blob-storage, can be empty.
|
|
427
402
|
|
|
428
403
|
***
|
|
429
404
|
|
|
430
|
-
### awsS3Region?
|
|
405
|
+
### awsS3Region? {#awss3region}
|
|
431
406
|
|
|
432
|
-
> `optional` **awsS3Region
|
|
407
|
+
> `optional` **awsS3Region?**: `string`
|
|
433
408
|
|
|
434
409
|
AWS S3 region.
|
|
435
410
|
|
|
436
411
|
***
|
|
437
412
|
|
|
438
|
-
### awsS3BucketName?
|
|
413
|
+
### awsS3BucketName? {#awss3bucketname}
|
|
439
414
|
|
|
440
|
-
> `optional` **awsS3BucketName
|
|
415
|
+
> `optional` **awsS3BucketName?**: `string`
|
|
441
416
|
|
|
442
417
|
AWS S3 bucket name.
|
|
443
418
|
|
|
444
419
|
***
|
|
445
420
|
|
|
446
|
-
### awsS3AuthMode?
|
|
421
|
+
### awsS3AuthMode? {#awss3authmode}
|
|
447
422
|
|
|
448
|
-
> `optional` **awsS3AuthMode
|
|
423
|
+
> `optional` **awsS3AuthMode?**: `string`
|
|
449
424
|
|
|
450
425
|
AWS S3 auth mode, either credentials or pod, defaults to credentials.
|
|
451
426
|
|
|
452
427
|
***
|
|
453
428
|
|
|
454
|
-
### awsS3AccessKeyId?
|
|
429
|
+
### awsS3AccessKeyId? {#awss3accesskeyid}
|
|
455
430
|
|
|
456
|
-
> `optional` **awsS3AccessKeyId
|
|
431
|
+
> `optional` **awsS3AccessKeyId?**: `string`
|
|
457
432
|
|
|
458
433
|
AWS S3 access key id.
|
|
459
434
|
|
|
460
435
|
***
|
|
461
436
|
|
|
462
|
-
### awsS3SecretAccessKey?
|
|
437
|
+
### awsS3SecretAccessKey? {#awss3secretaccesskey}
|
|
463
438
|
|
|
464
|
-
> `optional` **awsS3SecretAccessKey
|
|
439
|
+
> `optional` **awsS3SecretAccessKey?**: `string`
|
|
465
440
|
|
|
466
441
|
AWS S3 secret access key.
|
|
467
442
|
|
|
468
443
|
***
|
|
469
444
|
|
|
470
|
-
### awsS3Endpoint?
|
|
445
|
+
### awsS3Endpoint? {#awss3endpoint}
|
|
471
446
|
|
|
472
|
-
> `optional` **awsS3Endpoint
|
|
447
|
+
> `optional` **awsS3Endpoint?**: `string`
|
|
473
448
|
|
|
474
449
|
AWS S3 endpoint.
|
|
475
450
|
|
|
476
451
|
***
|
|
477
452
|
|
|
478
|
-
### azureStorageAccountKey?
|
|
453
|
+
### azureStorageAccountKey? {#azurestorageaccountkey}
|
|
479
454
|
|
|
480
|
-
> `optional` **azureStorageAccountKey
|
|
455
|
+
> `optional` **azureStorageAccountKey?**: `string`
|
|
481
456
|
|
|
482
457
|
Azure Storage account key.
|
|
483
458
|
|
|
484
459
|
***
|
|
485
460
|
|
|
486
|
-
### azureStorageAccountName?
|
|
461
|
+
### azureStorageAccountName? {#azurestorageaccountname}
|
|
487
462
|
|
|
488
|
-
> `optional` **azureStorageAccountName
|
|
463
|
+
> `optional` **azureStorageAccountName?**: `string`
|
|
489
464
|
|
|
490
465
|
Azure Storage account name.
|
|
491
466
|
|
|
492
467
|
***
|
|
493
468
|
|
|
494
|
-
### azureStorageContainerName?
|
|
469
|
+
### azureStorageContainerName? {#azurestoragecontainername}
|
|
495
470
|
|
|
496
|
-
> `optional` **azureStorageContainerName
|
|
471
|
+
> `optional` **azureStorageContainerName?**: `string`
|
|
497
472
|
|
|
498
473
|
Azure Storage container.
|
|
499
474
|
|
|
500
475
|
***
|
|
501
476
|
|
|
502
|
-
### azureStorageEndpoint?
|
|
477
|
+
### azureStorageEndpoint? {#azurestorageendpoint}
|
|
503
478
|
|
|
504
|
-
> `optional` **azureStorageEndpoint
|
|
479
|
+
> `optional` **azureStorageEndpoint?**: `string`
|
|
505
480
|
|
|
506
481
|
Azure Storage endpoint.
|
|
507
482
|
|
|
508
483
|
***
|
|
509
484
|
|
|
510
|
-
### gcpStorageBucketName?
|
|
485
|
+
### gcpStorageBucketName? {#gcpstoragebucketname}
|
|
511
486
|
|
|
512
|
-
> `optional` **gcpStorageBucketName
|
|
487
|
+
> `optional` **gcpStorageBucketName?**: `string`
|
|
513
488
|
|
|
514
489
|
GCP Storage bucket.
|
|
515
490
|
|
|
516
491
|
***
|
|
517
492
|
|
|
518
|
-
### gcpStorageCredentials?
|
|
493
|
+
### gcpStorageCredentials? {#gcpstoragecredentials}
|
|
519
494
|
|
|
520
|
-
> `optional` **gcpStorageCredentials
|
|
495
|
+
> `optional` **gcpStorageCredentials?**: `string`
|
|
521
496
|
|
|
522
497
|
GCP Storage credentials.
|
|
523
498
|
|
|
524
499
|
***
|
|
525
500
|
|
|
526
|
-
### gcpStorageEndpoint?
|
|
501
|
+
### gcpStorageEndpoint? {#gcpstorageendpoint}
|
|
527
502
|
|
|
528
|
-
> `optional` **gcpStorageEndpoint
|
|
503
|
+
> `optional` **gcpStorageEndpoint?**: `string`
|
|
529
504
|
|
|
530
505
|
GCP Storage endpoint.
|
|
531
506
|
|
|
532
507
|
***
|
|
533
508
|
|
|
534
|
-
### gcpStorageProjectId?
|
|
509
|
+
### gcpStorageProjectId? {#gcpstorageprojectid}
|
|
535
510
|
|
|
536
|
-
> `optional` **gcpStorageProjectId
|
|
511
|
+
> `optional` **gcpStorageProjectId?**: `string`
|
|
537
512
|
|
|
538
513
|
GCP Storage project id.
|
|
539
514
|
|
|
540
515
|
***
|
|
541
516
|
|
|
542
|
-
### vaultConnector?
|
|
517
|
+
### vaultConnector? {#vaultconnector}
|
|
543
518
|
|
|
544
|
-
> `optional` **vaultConnector
|
|
519
|
+
> `optional` **vaultConnector?**: `string`
|
|
545
520
|
|
|
546
521
|
The type of the default vault connector: entity-storage, hashicorp.
|
|
547
522
|
|
|
548
523
|
***
|
|
549
524
|
|
|
550
|
-
###
|
|
525
|
+
### vaultPrefix? {#vaultprefix}
|
|
526
|
+
|
|
527
|
+
> `optional` **vaultPrefix?**: `string`
|
|
528
|
+
|
|
529
|
+
Prefix to prepend to entries in the vault.
|
|
530
|
+
|
|
531
|
+
***
|
|
532
|
+
|
|
533
|
+
### hashicorpVaultToken? {#hashicorpvaulttoken}
|
|
551
534
|
|
|
552
|
-
> `optional` **hashicorpVaultToken
|
|
535
|
+
> `optional` **hashicorpVaultToken?**: `string`
|
|
553
536
|
|
|
554
537
|
Hashicorp Vault token.
|
|
555
538
|
|
|
556
539
|
***
|
|
557
540
|
|
|
558
|
-
### hashicorpVaultEndpoint?
|
|
541
|
+
### hashicorpVaultEndpoint? {#hashicorpvaultendpoint}
|
|
559
542
|
|
|
560
|
-
> `optional` **hashicorpVaultEndpoint
|
|
543
|
+
> `optional` **hashicorpVaultEndpoint?**: `string`
|
|
561
544
|
|
|
562
545
|
Hashicorp Vault endpoint.
|
|
563
546
|
|
|
564
547
|
***
|
|
565
548
|
|
|
566
|
-
### loggingConnector?
|
|
549
|
+
### loggingConnector? {#loggingconnector}
|
|
567
550
|
|
|
568
|
-
> `optional` **loggingConnector
|
|
551
|
+
> `optional` **loggingConnector?**: `string`
|
|
569
552
|
|
|
570
553
|
The type of logging task connector, can be a comma separated list: console, entity-storage.
|
|
571
554
|
|
|
572
555
|
***
|
|
573
556
|
|
|
574
|
-
###
|
|
557
|
+
### loggingBatchSize? {#loggingbatchsize}
|
|
558
|
+
|
|
559
|
+
> `optional` **loggingBatchSize?**: `string`
|
|
560
|
+
|
|
561
|
+
The batch size for the logging task, set to 1 for no batching.
|
|
562
|
+
|
|
563
|
+
***
|
|
564
|
+
|
|
565
|
+
### loggingBatchFlushIntervalSeconds? {#loggingbatchflushintervalseconds}
|
|
566
|
+
|
|
567
|
+
> `optional` **loggingBatchFlushIntervalSeconds?**: `string`
|
|
568
|
+
|
|
569
|
+
The batch flush interval in seconds for the logging task, how often to flush the logs when using batching, defaults to 5 seconds.
|
|
570
|
+
|
|
571
|
+
***
|
|
572
|
+
|
|
573
|
+
### loggingSilentComponents? {#loggingsilentcomponents}
|
|
574
|
+
|
|
575
|
+
> `optional` **loggingSilentComponents?**: `string`
|
|
576
|
+
|
|
577
|
+
A list of components to exclude from logging, can be a comma separated list of component Class names e.g. "ComponentA,ComponentB".
|
|
578
|
+
|
|
579
|
+
***
|
|
580
|
+
|
|
581
|
+
### eventBusConnector? {#eventbusconnector}
|
|
575
582
|
|
|
576
|
-
> `optional` **eventBusConnector
|
|
583
|
+
> `optional` **eventBusConnector?**: `string`
|
|
577
584
|
|
|
578
585
|
The type of event bus connector: local.
|
|
579
586
|
|
|
580
587
|
***
|
|
581
588
|
|
|
582
|
-
### eventBusComponent?
|
|
589
|
+
### eventBusComponent? {#eventbuscomponent}
|
|
583
590
|
|
|
584
|
-
> `optional` **eventBusComponent
|
|
591
|
+
> `optional` **eventBusComponent?**: `string`
|
|
585
592
|
|
|
586
593
|
The type of event bus component: service.
|
|
587
594
|
|
|
588
595
|
***
|
|
589
596
|
|
|
590
|
-
### messagingEnabled?
|
|
597
|
+
### messagingEnabled? {#messagingenabled}
|
|
591
598
|
|
|
592
|
-
> `optional` **messagingEnabled
|
|
599
|
+
> `optional` **messagingEnabled?**: `string`
|
|
593
600
|
|
|
594
601
|
Are the messaging components enabled, defaults to false.
|
|
595
602
|
|
|
596
603
|
***
|
|
597
604
|
|
|
598
|
-
### awsSesRegion?
|
|
605
|
+
### awsSesRegion? {#awssesregion}
|
|
599
606
|
|
|
600
|
-
> `optional` **awsSesRegion
|
|
607
|
+
> `optional` **awsSesRegion?**: `string`
|
|
601
608
|
|
|
602
609
|
AWS SES region.
|
|
603
610
|
|
|
604
611
|
***
|
|
605
612
|
|
|
606
|
-
### awsSesAuthMode?
|
|
613
|
+
### awsSesAuthMode? {#awssesauthmode}
|
|
607
614
|
|
|
608
|
-
> `optional` **awsSesAuthMode
|
|
615
|
+
> `optional` **awsSesAuthMode?**: `string`
|
|
609
616
|
|
|
610
617
|
AWS SES auth mode, either credentials or pod, defaults to credentials.
|
|
611
618
|
|
|
612
619
|
***
|
|
613
620
|
|
|
614
|
-
### awsSesSecretAccessKey?
|
|
621
|
+
### awsSesSecretAccessKey? {#awssessecretaccesskey}
|
|
615
622
|
|
|
616
|
-
> `optional` **awsSesSecretAccessKey
|
|
623
|
+
> `optional` **awsSesSecretAccessKey?**: `string`
|
|
617
624
|
|
|
618
625
|
AWS SES secret access key.
|
|
619
626
|
|
|
620
627
|
***
|
|
621
628
|
|
|
622
|
-
### awsSesAccessKeyId?
|
|
629
|
+
### awsSesAccessKeyId? {#awssesaccesskeyid}
|
|
623
630
|
|
|
624
|
-
> `optional` **awsSesAccessKeyId
|
|
631
|
+
> `optional` **awsSesAccessKeyId?**: `string`
|
|
625
632
|
|
|
626
633
|
AWS SES access key id.
|
|
627
634
|
|
|
628
635
|
***
|
|
629
636
|
|
|
630
|
-
### awsSesEndpoint?
|
|
637
|
+
### awsSesEndpoint? {#awssesendpoint}
|
|
631
638
|
|
|
632
|
-
> `optional` **awsSesEndpoint
|
|
639
|
+
> `optional` **awsSesEndpoint?**: `string`
|
|
633
640
|
|
|
634
641
|
AWS SES endpoint.
|
|
635
642
|
|
|
636
643
|
***
|
|
637
644
|
|
|
638
|
-
### awsMessagingPushNotificationApplications?
|
|
645
|
+
### awsMessagingPushNotificationApplications? {#awsmessagingpushnotificationapplications}
|
|
639
646
|
|
|
640
|
-
> `optional` **awsMessagingPushNotificationApplications
|
|
647
|
+
> `optional` **awsMessagingPushNotificationApplications?**: `string`
|
|
641
648
|
|
|
642
|
-
The applications for the push notifications
|
|
649
|
+
The applications for the push notifications reference a separate json with @json: prefix.
|
|
643
650
|
|
|
644
651
|
***
|
|
645
652
|
|
|
646
|
-
### messagingEmailConnector?
|
|
653
|
+
### messagingEmailConnector? {#messagingemailconnector}
|
|
647
654
|
|
|
648
|
-
> `optional` **messagingEmailConnector
|
|
655
|
+
> `optional` **messagingEmailConnector?**: `string`
|
|
649
656
|
|
|
650
657
|
The type of messaging email connector: entity-storage, aws.
|
|
651
658
|
|
|
652
659
|
***
|
|
653
660
|
|
|
654
|
-
### messagingSmsConnector?
|
|
661
|
+
### messagingSmsConnector? {#messagingsmsconnector}
|
|
655
662
|
|
|
656
|
-
> `optional` **messagingSmsConnector
|
|
663
|
+
> `optional` **messagingSmsConnector?**: `string`
|
|
657
664
|
|
|
658
665
|
The type of messaging sms connector: entity-storage, aws.
|
|
659
666
|
|
|
660
667
|
***
|
|
661
668
|
|
|
662
|
-
### messagingPushNotificationConnector?
|
|
669
|
+
### messagingPushNotificationConnector? {#messagingpushnotificationconnector}
|
|
663
670
|
|
|
664
|
-
> `optional` **messagingPushNotificationConnector
|
|
671
|
+
> `optional` **messagingPushNotificationConnector?**: `string`
|
|
665
672
|
|
|
666
673
|
The type of messaging push notification connector: entity-storage, aws.
|
|
667
674
|
|
|
668
675
|
***
|
|
669
676
|
|
|
670
|
-
### telemetryConnector?
|
|
677
|
+
### telemetryConnector? {#telemetryconnector}
|
|
671
678
|
|
|
672
|
-
> `optional` **telemetryConnector
|
|
679
|
+
> `optional` **telemetryConnector?**: `string`
|
|
673
680
|
|
|
674
681
|
The type of telemetry connector: entity-storage.
|
|
675
682
|
|
|
676
683
|
***
|
|
677
684
|
|
|
678
|
-
###
|
|
685
|
+
### openTelemetryMeterName? {#opentelemetrymetername}
|
|
686
|
+
|
|
687
|
+
> `optional` **openTelemetryMeterName?**: `string`
|
|
688
|
+
|
|
689
|
+
The name of the Open Telemetry meter to use, only required if using open-telemetry as telemetry connector, defaults to twin-node.
|
|
690
|
+
|
|
691
|
+
***
|
|
692
|
+
|
|
693
|
+
### openTelemetryMeterVersion? {#opentelemetrymeterversion}
|
|
694
|
+
|
|
695
|
+
> `optional` **openTelemetryMeterVersion?**: `string`
|
|
696
|
+
|
|
697
|
+
The version of the Open Telemetry metrics specification to use, only required if using open-telemetry as telemetry connector, defaults to 1.0.0.
|
|
698
|
+
|
|
699
|
+
***
|
|
700
|
+
|
|
701
|
+
### openTelemetryReader? {#opentelemetryreader}
|
|
702
|
+
|
|
703
|
+
> `optional` **openTelemetryReader?**: `string`
|
|
704
|
+
|
|
705
|
+
The type of Open Telemetry metric reader to use, only required if using open-telemetry as telemetry connector, values: prometheus.
|
|
706
|
+
|
|
707
|
+
***
|
|
708
|
+
|
|
709
|
+
### openTelemetryPrometheusPort? {#opentelemetryprometheusport}
|
|
710
|
+
|
|
711
|
+
> `optional` **openTelemetryPrometheusPort?**: `string`
|
|
712
|
+
|
|
713
|
+
The port to use for the Open Telemetry Prometheus metrics server, only required if using open-telemetry as telemetry connector and prometheus as reader, defaults to 9464.
|
|
714
|
+
|
|
715
|
+
***
|
|
716
|
+
|
|
717
|
+
### telemetryMetricsCollectorIntervalSeconds? {#telemetrymetricscollectorintervalseconds}
|
|
718
|
+
|
|
719
|
+
> `optional` **telemetryMetricsCollectorIntervalSeconds?**: `string`
|
|
720
|
+
|
|
721
|
+
Polling interval in seconds for the telemetry metrics collector. Defaults to 60.
|
|
722
|
+
|
|
723
|
+
***
|
|
724
|
+
|
|
725
|
+
### telemetryMetricsProducers? {#telemetrymetricsproducers}
|
|
726
|
+
|
|
727
|
+
> `optional` **telemetryMetricsProducers?**: `string`
|
|
728
|
+
|
|
729
|
+
The type of telemetry metrics producers, can be a comma separated list: system, process.
|
|
730
|
+
|
|
731
|
+
***
|
|
732
|
+
|
|
733
|
+
### telemetryMetricsProducerMaxHistory? {#telemetrymetricsproducermaxhistory}
|
|
734
|
+
|
|
735
|
+
> `optional` **telemetryMetricsProducerMaxHistory?**: `string`
|
|
736
|
+
|
|
737
|
+
Maximum number of values retained per telemetry metric (count-based history cap). Defaults to 1440.
|
|
738
|
+
|
|
739
|
+
***
|
|
740
|
+
|
|
741
|
+
### faucetConnector? {#faucetconnector}
|
|
679
742
|
|
|
680
|
-
> `optional` **faucetConnector
|
|
743
|
+
> `optional` **faucetConnector?**: `string`
|
|
681
744
|
|
|
682
745
|
The type of faucet connector: entity-storage, iota.
|
|
683
746
|
|
|
684
747
|
***
|
|
685
748
|
|
|
686
|
-
### walletConnector?
|
|
749
|
+
### walletConnector? {#walletconnector}
|
|
687
750
|
|
|
688
|
-
> `optional` **walletConnector
|
|
751
|
+
> `optional` **walletConnector?**: `string`
|
|
689
752
|
|
|
690
753
|
The type of wallet connector: entity-storage, iota.
|
|
691
754
|
|
|
692
755
|
***
|
|
693
756
|
|
|
694
|
-
### nftConnector?
|
|
757
|
+
### nftConnector? {#nftconnector}
|
|
695
758
|
|
|
696
|
-
> `optional` **nftConnector
|
|
759
|
+
> `optional` **nftConnector?**: `string`
|
|
697
760
|
|
|
698
761
|
The type of NFT connector: entity-storage, iota.
|
|
699
762
|
|
|
700
763
|
***
|
|
701
764
|
|
|
702
|
-
###
|
|
765
|
+
### nftPackageId? {#nftpackageid}
|
|
766
|
+
|
|
767
|
+
> `optional` **nftPackageId?**: `string`
|
|
768
|
+
|
|
769
|
+
The NFT deployed package id, for custom deployments.
|
|
770
|
+
|
|
771
|
+
***
|
|
772
|
+
|
|
773
|
+
### notarizationConnector? {#notarizationconnector}
|
|
774
|
+
|
|
775
|
+
> `optional` **notarizationConnector?**: `string`
|
|
776
|
+
|
|
777
|
+
The type of notarization connector: entity-storage, iota.
|
|
778
|
+
|
|
779
|
+
***
|
|
780
|
+
|
|
781
|
+
### identityConnector? {#identityconnector}
|
|
703
782
|
|
|
704
|
-
> `optional` **identityConnector
|
|
783
|
+
> `optional` **identityConnector?**: `string`
|
|
705
784
|
|
|
706
785
|
The type of identity connector: entity-storage, iota.
|
|
707
786
|
|
|
708
787
|
***
|
|
709
788
|
|
|
710
|
-
###
|
|
789
|
+
### identityWalletAddressIndex? {#identitywalletaddressindex}
|
|
711
790
|
|
|
712
|
-
> `optional` **
|
|
791
|
+
> `optional` **identityWalletAddressIndex?**: `string`
|
|
713
792
|
|
|
714
|
-
The
|
|
793
|
+
The index of the wallet address to use, defaults to 0.
|
|
715
794
|
|
|
716
795
|
***
|
|
717
796
|
|
|
718
|
-
###
|
|
797
|
+
### identityResolverConnector? {#identityresolverconnector}
|
|
719
798
|
|
|
720
|
-
> `optional` **
|
|
799
|
+
> `optional` **identityResolverConnector?**: `string`
|
|
721
800
|
|
|
722
|
-
The type of
|
|
801
|
+
The type of identity resolver connector: entity-storage, iota.
|
|
723
802
|
|
|
724
803
|
***
|
|
725
804
|
|
|
726
|
-
### iotaFaucetEndpoint?
|
|
805
|
+
### iotaFaucetEndpoint? {#iotafaucetendpoint}
|
|
727
806
|
|
|
728
|
-
> `optional` **iotaFaucetEndpoint
|
|
807
|
+
> `optional` **iotaFaucetEndpoint?**: `string`
|
|
729
808
|
|
|
730
809
|
IOTA Faucet Endpoint.
|
|
731
810
|
|
|
732
811
|
***
|
|
733
812
|
|
|
734
|
-
### iotaNodeEndpoint?
|
|
813
|
+
### iotaNodeEndpoint? {#iotanodeendpoint}
|
|
735
814
|
|
|
736
|
-
> `optional` **iotaNodeEndpoint
|
|
815
|
+
> `optional` **iotaNodeEndpoint?**: `string`
|
|
737
816
|
|
|
738
817
|
IOTA Node Endpoint.
|
|
739
818
|
|
|
740
819
|
***
|
|
741
820
|
|
|
742
|
-
### iotaNetwork?
|
|
821
|
+
### iotaNetwork? {#iotanetwork}
|
|
743
822
|
|
|
744
|
-
> `optional` **iotaNetwork
|
|
823
|
+
> `optional` **iotaNetwork?**: `string`
|
|
745
824
|
|
|
746
825
|
IOTA network.
|
|
747
826
|
|
|
748
827
|
***
|
|
749
828
|
|
|
750
|
-
### iotaCoinType?
|
|
829
|
+
### iotaCoinType? {#iotacointype}
|
|
751
830
|
|
|
752
|
-
> `optional` **iotaCoinType
|
|
831
|
+
> `optional` **iotaCoinType?**: `string`
|
|
753
832
|
|
|
754
833
|
IOTA coin type.
|
|
755
834
|
|
|
756
835
|
***
|
|
757
836
|
|
|
758
|
-
### iotaExplorerEndpoint?
|
|
837
|
+
### iotaExplorerEndpoint? {#iotaexplorerendpoint}
|
|
759
838
|
|
|
760
|
-
> `optional` **iotaExplorerEndpoint
|
|
839
|
+
> `optional` **iotaExplorerEndpoint?**: `string`
|
|
761
840
|
|
|
762
841
|
IOTA Explorer Endpoint.
|
|
763
842
|
|
|
764
843
|
***
|
|
765
844
|
|
|
766
|
-
### iotaGasStationEndpoint?
|
|
845
|
+
### iotaGasStationEndpoint? {#iotagasstationendpoint}
|
|
767
846
|
|
|
768
|
-
> `optional` **iotaGasStationEndpoint
|
|
847
|
+
> `optional` **iotaGasStationEndpoint?**: `string`
|
|
769
848
|
|
|
770
849
|
IOTA Gas Station Endpoint.
|
|
771
850
|
|
|
772
851
|
***
|
|
773
852
|
|
|
774
|
-
### iotaGasStationAuthToken?
|
|
853
|
+
### iotaGasStationAuthToken? {#iotagasstationauthtoken}
|
|
775
854
|
|
|
776
|
-
> `optional` **iotaGasStationAuthToken
|
|
855
|
+
> `optional` **iotaGasStationAuthToken?**: `string`
|
|
777
856
|
|
|
778
857
|
IOTA Gas Station Authentication Token.
|
|
779
858
|
|
|
780
859
|
***
|
|
781
860
|
|
|
782
|
-
###
|
|
861
|
+
### iotaIdentityPackageId? {#iotaidentitypackageid}
|
|
862
|
+
|
|
863
|
+
> `optional` **iotaIdentityPackageId?**: `string`
|
|
864
|
+
|
|
865
|
+
The IOTA Identity deployed package id, for custom deployments.
|
|
866
|
+
|
|
867
|
+
***
|
|
868
|
+
|
|
869
|
+
### universalResolverEndpoint? {#universalresolverendpoint}
|
|
783
870
|
|
|
784
|
-
> `optional` **universalResolverEndpoint
|
|
871
|
+
> `optional` **universalResolverEndpoint?**: `string`
|
|
785
872
|
|
|
786
873
|
Universal Resolver Endpoint.
|
|
787
874
|
|
|
788
875
|
***
|
|
789
876
|
|
|
790
|
-
### identityProfileConnector?
|
|
877
|
+
### identityProfileConnector? {#identityprofileconnector}
|
|
791
878
|
|
|
792
|
-
> `optional` **identityProfileConnector
|
|
879
|
+
> `optional` **identityProfileConnector?**: `string`
|
|
793
880
|
|
|
794
881
|
The type of identity profile connector: entity-storage.
|
|
795
882
|
|
|
796
883
|
***
|
|
797
884
|
|
|
798
|
-
### immutableProofVerificationMethodId?
|
|
885
|
+
### immutableProofVerificationMethodId? {#immutableproofverificationmethodid}
|
|
799
886
|
|
|
800
|
-
> `optional` **immutableProofVerificationMethodId
|
|
887
|
+
> `optional` **immutableProofVerificationMethodId?**: `string`
|
|
801
888
|
|
|
802
889
|
The identity verification method id to use with immutable proofs.
|
|
803
890
|
|
|
804
891
|
***
|
|
805
892
|
|
|
806
|
-
### attestationConnector?
|
|
893
|
+
### attestationConnector? {#attestationconnector}
|
|
807
894
|
|
|
808
|
-
> `optional` **attestationConnector
|
|
895
|
+
> `optional` **attestationConnector?**: `string`
|
|
809
896
|
|
|
810
897
|
The type of attestation connector: entity-storage, iota.
|
|
811
898
|
|
|
812
899
|
***
|
|
813
900
|
|
|
814
|
-
### attestationVerificationMethodId?
|
|
901
|
+
### attestationVerificationMethodId? {#attestationverificationmethodid}
|
|
815
902
|
|
|
816
|
-
> `optional` **attestationVerificationMethodId
|
|
903
|
+
> `optional` **attestationVerificationMethodId?**: `string`
|
|
817
904
|
|
|
818
905
|
The identity verification method id to use with attestation.
|
|
819
906
|
|
|
820
907
|
***
|
|
821
908
|
|
|
822
|
-
### dataProcessingEnabled?
|
|
909
|
+
### dataProcessingEnabled? {#dataprocessingenabled}
|
|
823
910
|
|
|
824
|
-
> `optional` **dataProcessingEnabled
|
|
911
|
+
> `optional` **dataProcessingEnabled?**: `string`
|
|
825
912
|
|
|
826
913
|
Is the data processing enabled, defaults to false.
|
|
827
914
|
|
|
828
915
|
***
|
|
829
916
|
|
|
830
|
-
### dataConverterConnectors?
|
|
917
|
+
### dataConverterConnectors? {#dataconverterconnectors}
|
|
831
918
|
|
|
832
|
-
> `optional` **dataConverterConnectors
|
|
919
|
+
> `optional` **dataConverterConnectors?**: `string`
|
|
833
920
|
|
|
834
921
|
The type of the default data converters, can be a comma separated list: json, xml.
|
|
835
922
|
|
|
836
923
|
***
|
|
837
924
|
|
|
838
|
-
### dataExtractorConnectors?
|
|
925
|
+
### dataExtractorConnectors? {#dataextractorconnectors}
|
|
839
926
|
|
|
840
|
-
> `optional` **dataExtractorConnectors
|
|
927
|
+
> `optional` **dataExtractorConnectors?**: `string`
|
|
841
928
|
|
|
842
929
|
The type of the default data extractor, can be a comma separated list: json-path.
|
|
843
930
|
|
|
844
931
|
***
|
|
845
932
|
|
|
846
|
-
###
|
|
933
|
+
### taskSchedulerEnabled? {#taskschedulerenabled}
|
|
934
|
+
|
|
935
|
+
> `optional` **taskSchedulerEnabled?**: `string`
|
|
936
|
+
|
|
937
|
+
Enable the task scheduler regardless of which other components are active, defaults to false.
|
|
938
|
+
|
|
939
|
+
***
|
|
940
|
+
|
|
941
|
+
### auditableItemGraphEnabled? {#auditableitemgraphenabled}
|
|
847
942
|
|
|
848
|
-
> `optional` **auditableItemGraphEnabled
|
|
943
|
+
> `optional` **auditableItemGraphEnabled?**: `string`
|
|
849
944
|
|
|
850
945
|
Is the auditable item graph enabled, defaults to false.
|
|
851
946
|
|
|
852
947
|
***
|
|
853
948
|
|
|
854
|
-
### auditableItemStreamEnabled?
|
|
949
|
+
### auditableItemStreamEnabled? {#auditableitemstreamenabled}
|
|
855
950
|
|
|
856
|
-
> `optional` **auditableItemStreamEnabled
|
|
951
|
+
> `optional` **auditableItemStreamEnabled?**: `string`
|
|
857
952
|
|
|
858
953
|
Is the auditable item stream enabled, defaults to false.
|
|
859
954
|
|
|
860
955
|
***
|
|
861
956
|
|
|
862
|
-
### documentManagementEnabled?
|
|
957
|
+
### documentManagementEnabled? {#documentmanagementenabled}
|
|
863
958
|
|
|
864
|
-
> `optional` **documentManagementEnabled
|
|
959
|
+
> `optional` **documentManagementEnabled?**: `string`
|
|
865
960
|
|
|
866
961
|
Is the document management enabled, defaults to false.
|
|
867
962
|
|
|
868
963
|
***
|
|
869
964
|
|
|
870
|
-
###
|
|
965
|
+
### federatedCatalogueEnabled? {#federatedcatalogueenabled}
|
|
871
966
|
|
|
872
|
-
> `optional` **
|
|
967
|
+
> `optional` **federatedCatalogueEnabled?**: `string`
|
|
873
968
|
|
|
874
|
-
|
|
969
|
+
Enable the federated catalogue, defaults to false, automatically enabled if remote endpoint, filters or dataspace is enabled.
|
|
875
970
|
|
|
876
971
|
***
|
|
877
972
|
|
|
878
|
-
###
|
|
973
|
+
### federatedCatalogueFilters? {#federatedcataloguefilters}
|
|
879
974
|
|
|
880
|
-
> `optional` **
|
|
975
|
+
> `optional` **federatedCatalogueFilters?**: `string`
|
|
881
976
|
|
|
882
|
-
|
|
977
|
+
Federated catalog filters, command separated list of filters to add.
|
|
883
978
|
|
|
884
979
|
***
|
|
885
980
|
|
|
886
|
-
###
|
|
981
|
+
### federatedCatalogueRemoteEndpoint? {#federatedcatalogueremoteendpoint}
|
|
887
982
|
|
|
888
|
-
> `optional` **
|
|
983
|
+
> `optional` **federatedCatalogueRemoteEndpoint?**: `string`
|
|
889
984
|
|
|
890
|
-
|
|
891
|
-
This only required if using a custom verifiable storage item, otherwise it will default to the network name.
|
|
985
|
+
Federated catalog remote endpoint, if set will use a REST client instead of local service.
|
|
892
986
|
|
|
893
987
|
***
|
|
894
988
|
|
|
895
|
-
###
|
|
989
|
+
### trustGenerators? {#trustgenerators}
|
|
896
990
|
|
|
897
|
-
> `optional` **
|
|
991
|
+
> `optional` **trustGenerators?**: `string`
|
|
898
992
|
|
|
899
|
-
The
|
|
900
|
-
Only required for trusted nodes, as regular nodes will request from the trusted nodes.
|
|
901
|
-
Defaults to synchronised-storage-blob-encryption
|
|
993
|
+
The trust generators to add to the factory, comma separated list.
|
|
902
994
|
|
|
903
995
|
***
|
|
904
996
|
|
|
905
|
-
###
|
|
997
|
+
### trustVerifiers? {#trustverifiers}
|
|
906
998
|
|
|
907
|
-
> `optional` **
|
|
999
|
+
> `optional` **trustVerifiers?**: `string`
|
|
908
1000
|
|
|
909
|
-
The
|
|
910
|
-
Only required for trusted nodes, as regular nodes will not write encrypted data.
|
|
1001
|
+
The trust verifiers to add to the factory, comma separated list.
|
|
911
1002
|
|
|
912
1003
|
***
|
|
913
1004
|
|
|
914
|
-
###
|
|
1005
|
+
### trustVerificationMethodId? {#trustverificationmethodid}
|
|
915
1006
|
|
|
916
|
-
> `optional` **
|
|
1007
|
+
> `optional` **trustVerificationMethodId?**: `string`
|
|
917
1008
|
|
|
918
|
-
|
|
1009
|
+
The verification method to use for trust identities.
|
|
1010
|
+
Defaults to trust-assertion.
|
|
919
1011
|
|
|
920
|
-
|
|
1012
|
+
***
|
|
921
1013
|
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
1014
|
+
### trustJwtTtlSeconds? {#trustjwtttlseconds}
|
|
1015
|
+
|
|
1016
|
+
> `optional` **trustJwtTtlSeconds?**: `string`
|
|
1017
|
+
|
|
1018
|
+
The trust time to live for generating JWTs.
|
|
1019
|
+
Defaults to undefined for never expiring.
|
|
925
1020
|
|
|
926
1021
|
***
|
|
927
1022
|
|
|
928
|
-
###
|
|
1023
|
+
### trustIdentitiesAllow? {#trustidentitiesallow}
|
|
929
1024
|
|
|
930
|
-
> `optional` **
|
|
1025
|
+
> `optional` **trustIdentitiesAllow?**: `string`
|
|
931
1026
|
|
|
932
|
-
|
|
1027
|
+
The allow lists for the trust identity verifier, comma separated list of identities.
|
|
933
1028
|
|
|
934
|
-
|
|
1029
|
+
***
|
|
935
1030
|
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
1031
|
+
### trustIdentitiesDeny? {#trustidentitiesdeny}
|
|
1032
|
+
|
|
1033
|
+
> `optional` **trustIdentitiesDeny?**: `string`
|
|
1034
|
+
|
|
1035
|
+
The deny lists for the trust identity verifier, comma separated list of identities.
|
|
939
1036
|
|
|
940
1037
|
***
|
|
941
1038
|
|
|
942
|
-
###
|
|
1039
|
+
### rightsManagementCallbackPath? {#rightsmanagementcallbackpath}
|
|
943
1040
|
|
|
944
|
-
> `optional` **
|
|
1041
|
+
> `optional` **rightsManagementCallbackPath?**: `string`
|
|
945
1042
|
|
|
946
|
-
|
|
1043
|
+
Path under which the rights management service is mounted (single source
|
|
1044
|
+
of truth). The same value drives:
|
|
1045
|
+
- the server route mount (via engine config)
|
|
1046
|
+
- the PNP service's callback URL builder (`buildCallbackUrl`)
|
|
1047
|
+
- the PNP rest-client's pathPrefix (consumer side)
|
|
1048
|
+
Defaults to `rights-management`. Set when deploying behind a reverse proxy
|
|
1049
|
+
with path rewriting, K8s ingress with path-based routing, or any custom
|
|
1050
|
+
mount point.
|
|
947
1051
|
|
|
948
|
-
|
|
1052
|
+
***
|
|
949
1053
|
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
1054
|
+
### rightsManagementPolicyInformationSources? {#rightsmanagementpolicyinformationsources}
|
|
1055
|
+
|
|
1056
|
+
> `optional` **rightsManagementPolicyInformationSources?**: `string`
|
|
1057
|
+
|
|
1058
|
+
The rights management policy information sources to add to the factory.
|
|
953
1059
|
|
|
954
1060
|
***
|
|
955
1061
|
|
|
956
|
-
###
|
|
1062
|
+
### rightsManagementPolicyNegotiators? {#rightsmanagementpolicynegotiators}
|
|
957
1063
|
|
|
958
|
-
> `optional` **
|
|
1064
|
+
> `optional` **rightsManagementPolicyNegotiators?**: `string`
|
|
959
1065
|
|
|
960
|
-
The
|
|
1066
|
+
The rights management policy negotiators sources to add to the factory.
|
|
961
1067
|
|
|
962
|
-
|
|
1068
|
+
***
|
|
963
1069
|
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
1070
|
+
### rightsManagementPolicyRequesters? {#rightsmanagementpolicyrequesters}
|
|
1071
|
+
|
|
1072
|
+
> `optional` **rightsManagementPolicyRequesters?**: `string`
|
|
1073
|
+
|
|
1074
|
+
The rights management policy requesters to add to the factory.
|
|
967
1075
|
|
|
968
1076
|
***
|
|
969
1077
|
|
|
970
|
-
###
|
|
1078
|
+
### rightsManagementPolicyExecutionActions? {#rightsmanagementpolicyexecutionactions}
|
|
971
1079
|
|
|
972
|
-
> `optional` **
|
|
1080
|
+
> `optional` **rightsManagementPolicyExecutionActions?**: `string`
|
|
973
1081
|
|
|
974
|
-
|
|
1082
|
+
The rights management policy execution actions to add to the factory.
|
|
975
1083
|
|
|
976
1084
|
***
|
|
977
1085
|
|
|
978
|
-
###
|
|
1086
|
+
### rightsManagementPolicyEnforcementProcessors? {#rightsmanagementpolicyenforcementprocessors}
|
|
979
1087
|
|
|
980
|
-
> `optional` **
|
|
1088
|
+
> `optional` **rightsManagementPolicyEnforcementProcessors?**: `string`
|
|
981
1089
|
|
|
982
|
-
|
|
1090
|
+
The rights management policy enforcement processors to add to the factory.
|
|
983
1091
|
|
|
984
1092
|
***
|
|
985
1093
|
|
|
986
|
-
###
|
|
1094
|
+
### rightsManagementPolicyArbiters? {#rightsmanagementpolicyarbiters}
|
|
987
1095
|
|
|
988
|
-
> `optional` **
|
|
1096
|
+
> `optional` **rightsManagementPolicyArbiters?**: `string`
|
|
989
1097
|
|
|
990
|
-
|
|
1098
|
+
The rights management policy arbiters to add to the factory.
|
|
991
1099
|
|
|
992
1100
|
***
|
|
993
1101
|
|
|
994
|
-
###
|
|
1102
|
+
### rightsManagementPolicyObligationEnforcers? {#rightsmanagementpolicyobligationenforcers}
|
|
995
1103
|
|
|
996
|
-
> `optional` **
|
|
1104
|
+
> `optional` **rightsManagementPolicyObligationEnforcers?**: `string`
|
|
997
1105
|
|
|
998
|
-
|
|
1106
|
+
The rights management policy obligation enforcers to add to the factory.
|
|
999
1107
|
|
|
1000
1108
|
***
|
|
1001
1109
|
|
|
1002
|
-
###
|
|
1110
|
+
### dataspaceEnabled? {#dataspaceenabled}
|
|
1003
1111
|
|
|
1004
|
-
> `optional` **
|
|
1112
|
+
> `optional` **dataspaceEnabled?**: `string`
|
|
1005
1113
|
|
|
1006
|
-
|
|
1007
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1114
|
+
Is the dataspace enabled, defaults to false.
|
|
1008
1115
|
|
|
1009
1116
|
***
|
|
1010
1117
|
|
|
1011
|
-
###
|
|
1118
|
+
### dataspaceRetainActivityLogsFor? {#dataspaceretainactivitylogsfor}
|
|
1012
1119
|
|
|
1013
|
-
> `optional` **
|
|
1120
|
+
> `optional` **dataspaceRetainActivityLogsFor?**: `string`
|
|
1014
1121
|
|
|
1015
|
-
The
|
|
1016
|
-
|
|
1122
|
+
The length of time to retain the activity logs for in minutes, set to -1 to keep forever.
|
|
1123
|
+
|
|
1124
|
+
#### Default
|
|
1125
|
+
|
|
1126
|
+
```ts
|
|
1127
|
+
10
|
|
1128
|
+
```
|
|
1017
1129
|
|
|
1018
1130
|
***
|
|
1019
1131
|
|
|
1020
|
-
###
|
|
1132
|
+
### dataspaceActivityLogsCleanupInterval? {#dataspaceactivitylogscleanupinterval}
|
|
1133
|
+
|
|
1134
|
+
> `optional` **dataspaceActivityLogsCleanupInterval?**: `string`
|
|
1135
|
+
|
|
1136
|
+
The interval for cleaning up the activity logs.
|
|
1021
1137
|
|
|
1022
|
-
|
|
1138
|
+
#### Default
|
|
1023
1139
|
|
|
1024
|
-
|
|
1025
|
-
|
|
1140
|
+
```ts
|
|
1141
|
+
60
|
|
1142
|
+
```
|
|
1026
1143
|
|
|
1027
1144
|
***
|
|
1028
1145
|
|
|
1029
|
-
###
|
|
1146
|
+
### dataspaceDataPlanePath? {#dataspacedataplanepath}
|
|
1030
1147
|
|
|
1031
|
-
> `optional` **
|
|
1148
|
+
> `optional` **dataspaceDataPlanePath?**: `string`
|
|
1032
1149
|
|
|
1033
|
-
The
|
|
1034
|
-
|
|
1150
|
+
The data plane path for PULL transfers (path only, not full URL).
|
|
1151
|
+
Will be combined with public origin.
|
|
1152
|
+
Required if PULL transfers should be supported.
|
|
1153
|
+
Example: "dataspace/entities"
|
|
1035
1154
|
|
|
1036
1155
|
***
|
|
1037
1156
|
|
|
1038
|
-
###
|
|
1157
|
+
### healthEnabled? {#healthenabled}
|
|
1039
1158
|
|
|
1040
|
-
> `optional` **
|
|
1159
|
+
> `optional` **healthEnabled?**: `string`
|
|
1041
1160
|
|
|
1042
|
-
|
|
1043
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1161
|
+
Are the health components enabled, defaults to false.
|
|
1044
1162
|
|
|
1045
1163
|
***
|
|
1046
1164
|
|
|
1047
|
-
###
|
|
1165
|
+
### healthIntervalSeconds? {#healthintervalseconds}
|
|
1048
1166
|
|
|
1049
|
-
> `optional` **
|
|
1167
|
+
> `optional` **healthIntervalSeconds?**: `string`
|
|
1050
1168
|
|
|
1051
|
-
The
|
|
1052
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1169
|
+
The interval in seconds for performing health checks, defaults to 60.
|
|
1053
1170
|
|
|
1054
1171
|
***
|
|
1055
1172
|
|
|
1056
|
-
###
|
|
1173
|
+
### healthStartupIntervalSeconds? {#healthstartupintervalseconds}
|
|
1057
1174
|
|
|
1058
|
-
> `optional` **
|
|
1175
|
+
> `optional` **healthStartupIntervalSeconds?**: `string`
|
|
1059
1176
|
|
|
1060
|
-
The
|
|
1061
|
-
|
|
1177
|
+
The interval in seconds for performing health checks at startup, defaults to 2.
|
|
1178
|
+
This allows components that take a long time to initialize to be healthy before the first health check is performed.
|
|
1062
1179
|
|
|
1063
1180
|
***
|
|
1064
1181
|
|
|
1065
|
-
###
|
|
1182
|
+
### automationActionTypes? {#automationactiontypes}
|
|
1066
1183
|
|
|
1067
|
-
> `optional` **
|
|
1184
|
+
> `optional` **automationActionTypes?**: `string`
|
|
1068
1185
|
|
|
1069
|
-
|
|
1186
|
+
The type of the automation action to create, comma separate for more than one connector.
|
|
1187
|
+
values: fetch
|
|
1070
1188
|
|
|
1071
1189
|
***
|
|
1072
1190
|
|
|
1073
|
-
###
|
|
1191
|
+
### mutexTimeoutMsDefault? {#mutextimeoutmsdefault}
|
|
1074
1192
|
|
|
1075
|
-
> `optional` **
|
|
1193
|
+
> `optional` **mutexTimeoutMsDefault?**: `string`
|
|
1076
1194
|
|
|
1077
|
-
|
|
1195
|
+
The default mutex timeout in milliseconds, used when no component-specific timeout is set, defaults to 5000.
|
|
1078
1196
|
|
|
1079
1197
|
***
|
|
1080
1198
|
|
|
1081
|
-
###
|
|
1199
|
+
### auditableItemGraphMutexTimeoutMs? {#auditableitemgraphmutextimeoutms}
|
|
1082
1200
|
|
|
1083
|
-
> `optional` **
|
|
1201
|
+
> `optional` **auditableItemGraphMutexTimeoutMs?**: `string`
|
|
1084
1202
|
|
|
1085
|
-
|
|
1203
|
+
The mutex timeout in milliseconds for the auditable item graph component.
|
|
1086
1204
|
|
|
1087
1205
|
***
|
|
1088
1206
|
|
|
1089
|
-
###
|
|
1207
|
+
### auditableItemStreamMutexTimeoutMs? {#auditableitemstreammutextimeoutms}
|
|
1090
1208
|
|
|
1091
|
-
> `optional` **
|
|
1209
|
+
> `optional` **auditableItemStreamMutexTimeoutMs?**: `string`
|
|
1092
1210
|
|
|
1093
|
-
The
|
|
1211
|
+
The mutex timeout in milliseconds for the auditable item stream component.
|
|
1094
1212
|
|
|
1095
|
-
|
|
1213
|
+
***
|
|
1096
1214
|
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1215
|
+
### federatedCatalogueMutexTimeoutMs? {#federatedcataloguemutextimeoutms}
|
|
1216
|
+
|
|
1217
|
+
> `optional` **federatedCatalogueMutexTimeoutMs?**: `string`
|
|
1218
|
+
|
|
1219
|
+
The mutex timeout in milliseconds for the federated catalogue component.
|
|
1100
1220
|
|
|
1101
1221
|
***
|
|
1102
1222
|
|
|
1103
|
-
###
|
|
1223
|
+
### documentManagementMutexTimeoutMs? {#documentmanagementmutextimeoutms}
|
|
1104
1224
|
|
|
1105
|
-
> `optional` **
|
|
1225
|
+
> `optional` **documentManagementMutexTimeoutMs?**: `string`
|
|
1106
1226
|
|
|
1107
|
-
The
|
|
1227
|
+
The mutex timeout in milliseconds for the document management component.
|
|
1108
1228
|
|
|
1109
|
-
|
|
1229
|
+
***
|
|
1110
1230
|
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1231
|
+
### loggingMutexTimeoutMs? {#loggingmutextimeoutms}
|
|
1232
|
+
|
|
1233
|
+
> `optional` **loggingMutexTimeoutMs?**: `string`
|
|
1234
|
+
|
|
1235
|
+
The mutex timeout in milliseconds for the logging component.
|
|
1236
|
+
|
|
1237
|
+
***
|
|
1238
|
+
|
|
1239
|
+
### entityStorageMemoryMutexTimeoutMs? {#entitystoragememorymutextimeoutms}
|
|
1240
|
+
|
|
1241
|
+
> `optional` **entityStorageMemoryMutexTimeoutMs?**: `string`
|
|
1242
|
+
|
|
1243
|
+
The mutex timeout in milliseconds for the memory entity storage connector.
|
|
1114
1244
|
|
|
1115
1245
|
***
|
|
1116
1246
|
|
|
1117
|
-
###
|
|
1247
|
+
### entityStorageFileMutexTimeoutMs? {#entitystoragefilemutextimeoutms}
|
|
1118
1248
|
|
|
1119
|
-
> `optional` **
|
|
1249
|
+
> `optional` **entityStorageFileMutexTimeoutMs?**: `string`
|
|
1120
1250
|
|
|
1121
|
-
|
|
1251
|
+
The mutex timeout in milliseconds for the file entity storage connector.
|
|
1122
1252
|
|
|
1123
1253
|
***
|
|
1124
1254
|
|
|
1125
|
-
###
|
|
1255
|
+
### rightsManagementMutexTimeoutMs? {#rightsmanagementmutextimeoutms}
|
|
1126
1256
|
|
|
1127
|
-
> `optional` **
|
|
1257
|
+
> `optional` **rightsManagementMutexTimeoutMs?**: `string`
|
|
1128
1258
|
|
|
1129
|
-
|
|
1130
|
-
Defaults to node-authentication-assertion.
|
|
1259
|
+
The mutex timeout in milliseconds for the rights management component.
|
|
1131
1260
|
|
|
1132
1261
|
***
|
|
1133
1262
|
|
|
1134
|
-
### extensions?
|
|
1263
|
+
### extensions? {#extensions}
|
|
1135
1264
|
|
|
1136
|
-
> `optional` **extensions
|
|
1265
|
+
> `optional` **extensions?**: `string`
|
|
1137
1266
|
|
|
1138
1267
|
A comma separated list of additional node extensions to load, the initialiseExtension method will be called for each extension.
|