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