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