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