@twin.org/node-core 0.0.3-next.5 → 0.0.3-next.50
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 +463 -195
- 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 +125 -100
- 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 +604 -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 +405 -372
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +527 -450
- package/docs/reference/interfaces/IModuleProtocol.md +3 -3
- package/docs/reference/interfaces/INodeEngineState.md +2 -26
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +545 -544
- 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,1092 @@ 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
|
-
### gcpFirestoreApiEndpoint?
|
|
188
|
+
### gcpFirestoreApiEndpoint? {#gcpfirestoreapiendpoint}
|
|
189
189
|
|
|
190
|
-
> `optional` **gcpFirestoreApiEndpoint
|
|
190
|
+
> `optional` **gcpFirestoreApiEndpoint?**: `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
|
-
###
|
|
389
|
+
### blobStorageEnableEncryption? {#blobstorageenableencryption}
|
|
390
390
|
|
|
391
|
-
> `optional` **
|
|
392
|
-
|
|
393
|
-
Blog storage connector which has public access.
|
|
394
|
-
|
|
395
|
-
***
|
|
396
|
-
|
|
397
|
-
### blobStorageEnableEncryption?
|
|
398
|
-
|
|
399
|
-
> `optional` **blobStorageEnableEncryption**: `string`
|
|
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`
|
|
553
536
|
|
|
554
|
-
|
|
537
|
+
Prefix to prepend to entries in the vault.
|
|
555
538
|
|
|
556
539
|
***
|
|
557
540
|
|
|
558
|
-
###
|
|
541
|
+
### hashicorpVaultToken? {#hashicorpvaulttoken}
|
|
559
542
|
|
|
560
|
-
> `optional` **
|
|
543
|
+
> `optional` **hashicorpVaultToken?**: `string`
|
|
561
544
|
|
|
562
|
-
Hashicorp Vault
|
|
545
|
+
Hashicorp Vault token.
|
|
563
546
|
|
|
564
547
|
***
|
|
565
548
|
|
|
566
|
-
###
|
|
549
|
+
### hashicorpVaultEndpoint? {#hashicorpvaultendpoint}
|
|
567
550
|
|
|
568
|
-
> `optional` **
|
|
551
|
+
> `optional` **hashicorpVaultEndpoint?**: `string`
|
|
569
552
|
|
|
570
|
-
|
|
553
|
+
Hashicorp Vault endpoint.
|
|
571
554
|
|
|
572
555
|
***
|
|
573
556
|
|
|
574
|
-
###
|
|
557
|
+
### loggingConnector? {#loggingconnector}
|
|
575
558
|
|
|
576
|
-
> `optional` **
|
|
559
|
+
> `optional` **loggingConnector?**: `string`
|
|
577
560
|
|
|
578
|
-
The type of
|
|
561
|
+
The type of logging task connector, can be a comma separated list: console, entity-storage.
|
|
579
562
|
|
|
580
563
|
***
|
|
581
564
|
|
|
582
|
-
### eventBusConnector?
|
|
565
|
+
### eventBusConnector? {#eventbusconnector}
|
|
583
566
|
|
|
584
|
-
> `optional` **eventBusConnector
|
|
567
|
+
> `optional` **eventBusConnector?**: `string`
|
|
585
568
|
|
|
586
569
|
The type of event bus connector: local.
|
|
587
570
|
|
|
588
571
|
***
|
|
589
572
|
|
|
590
|
-
### eventBusComponent?
|
|
573
|
+
### eventBusComponent? {#eventbuscomponent}
|
|
591
574
|
|
|
592
|
-
> `optional` **eventBusComponent
|
|
575
|
+
> `optional` **eventBusComponent?**: `string`
|
|
593
576
|
|
|
594
577
|
The type of event bus component: service.
|
|
595
578
|
|
|
596
579
|
***
|
|
597
580
|
|
|
598
|
-
### messagingEnabled?
|
|
581
|
+
### messagingEnabled? {#messagingenabled}
|
|
599
582
|
|
|
600
|
-
> `optional` **messagingEnabled
|
|
583
|
+
> `optional` **messagingEnabled?**: `string`
|
|
601
584
|
|
|
602
585
|
Are the messaging components enabled, defaults to false.
|
|
603
586
|
|
|
604
587
|
***
|
|
605
588
|
|
|
606
|
-
### awsSesRegion?
|
|
589
|
+
### awsSesRegion? {#awssesregion}
|
|
607
590
|
|
|
608
|
-
> `optional` **awsSesRegion
|
|
591
|
+
> `optional` **awsSesRegion?**: `string`
|
|
609
592
|
|
|
610
593
|
AWS SES region.
|
|
611
594
|
|
|
612
595
|
***
|
|
613
596
|
|
|
614
|
-
### awsSesAuthMode?
|
|
597
|
+
### awsSesAuthMode? {#awssesauthmode}
|
|
615
598
|
|
|
616
|
-
> `optional` **awsSesAuthMode
|
|
599
|
+
> `optional` **awsSesAuthMode?**: `string`
|
|
617
600
|
|
|
618
601
|
AWS SES auth mode, either credentials or pod, defaults to credentials.
|
|
619
602
|
|
|
620
603
|
***
|
|
621
604
|
|
|
622
|
-
### awsSesSecretAccessKey?
|
|
605
|
+
### awsSesSecretAccessKey? {#awssessecretaccesskey}
|
|
623
606
|
|
|
624
|
-
> `optional` **awsSesSecretAccessKey
|
|
607
|
+
> `optional` **awsSesSecretAccessKey?**: `string`
|
|
625
608
|
|
|
626
609
|
AWS SES secret access key.
|
|
627
610
|
|
|
628
611
|
***
|
|
629
612
|
|
|
630
|
-
### awsSesAccessKeyId?
|
|
613
|
+
### awsSesAccessKeyId? {#awssesaccesskeyid}
|
|
631
614
|
|
|
632
|
-
> `optional` **awsSesAccessKeyId
|
|
615
|
+
> `optional` **awsSesAccessKeyId?**: `string`
|
|
633
616
|
|
|
634
617
|
AWS SES access key id.
|
|
635
618
|
|
|
636
619
|
***
|
|
637
620
|
|
|
638
|
-
### awsSesEndpoint?
|
|
621
|
+
### awsSesEndpoint? {#awssesendpoint}
|
|
639
622
|
|
|
640
|
-
> `optional` **awsSesEndpoint
|
|
623
|
+
> `optional` **awsSesEndpoint?**: `string`
|
|
641
624
|
|
|
642
625
|
AWS SES endpoint.
|
|
643
626
|
|
|
644
627
|
***
|
|
645
628
|
|
|
646
|
-
### awsMessagingPushNotificationApplications?
|
|
629
|
+
### awsMessagingPushNotificationApplications? {#awsmessagingpushnotificationapplications}
|
|
647
630
|
|
|
648
|
-
> `optional` **awsMessagingPushNotificationApplications
|
|
631
|
+
> `optional` **awsMessagingPushNotificationApplications?**: `string`
|
|
649
632
|
|
|
650
|
-
The applications for the push notifications
|
|
633
|
+
The applications for the push notifications reference a separate json with @json: prefix.
|
|
651
634
|
|
|
652
635
|
***
|
|
653
636
|
|
|
654
|
-
### messagingEmailConnector?
|
|
637
|
+
### messagingEmailConnector? {#messagingemailconnector}
|
|
655
638
|
|
|
656
|
-
> `optional` **messagingEmailConnector
|
|
639
|
+
> `optional` **messagingEmailConnector?**: `string`
|
|
657
640
|
|
|
658
641
|
The type of messaging email connector: entity-storage, aws.
|
|
659
642
|
|
|
660
643
|
***
|
|
661
644
|
|
|
662
|
-
### messagingSmsConnector?
|
|
645
|
+
### messagingSmsConnector? {#messagingsmsconnector}
|
|
663
646
|
|
|
664
|
-
> `optional` **messagingSmsConnector
|
|
647
|
+
> `optional` **messagingSmsConnector?**: `string`
|
|
665
648
|
|
|
666
649
|
The type of messaging sms connector: entity-storage, aws.
|
|
667
650
|
|
|
668
651
|
***
|
|
669
652
|
|
|
670
|
-
### messagingPushNotificationConnector?
|
|
653
|
+
### messagingPushNotificationConnector? {#messagingpushnotificationconnector}
|
|
671
654
|
|
|
672
|
-
> `optional` **messagingPushNotificationConnector
|
|
655
|
+
> `optional` **messagingPushNotificationConnector?**: `string`
|
|
673
656
|
|
|
674
657
|
The type of messaging push notification connector: entity-storage, aws.
|
|
675
658
|
|
|
676
659
|
***
|
|
677
660
|
|
|
678
|
-
### telemetryConnector?
|
|
661
|
+
### telemetryConnector? {#telemetryconnector}
|
|
679
662
|
|
|
680
|
-
> `optional` **telemetryConnector
|
|
663
|
+
> `optional` **telemetryConnector?**: `string`
|
|
681
664
|
|
|
682
665
|
The type of telemetry connector: entity-storage.
|
|
683
666
|
|
|
684
667
|
***
|
|
685
668
|
|
|
686
|
-
###
|
|
669
|
+
### openTelemetryMeterName? {#opentelemetrymetername}
|
|
687
670
|
|
|
688
|
-
> `optional` **
|
|
671
|
+
> `optional` **openTelemetryMeterName?**: `string`
|
|
689
672
|
|
|
690
|
-
The
|
|
673
|
+
The name of the Open Telemetry meter to use, only required if using open-telemetry as telemetry connector, defaults to twin-node.
|
|
691
674
|
|
|
692
675
|
***
|
|
693
676
|
|
|
694
|
-
###
|
|
677
|
+
### openTelemetryMeterVersion? {#opentelemetrymeterversion}
|
|
695
678
|
|
|
696
|
-
> `optional` **
|
|
679
|
+
> `optional` **openTelemetryMeterVersion?**: `string`
|
|
697
680
|
|
|
698
|
-
The
|
|
681
|
+
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
682
|
|
|
700
683
|
***
|
|
701
684
|
|
|
702
|
-
###
|
|
685
|
+
### openTelemetryReader? {#opentelemetryreader}
|
|
703
686
|
|
|
704
|
-
> `optional` **
|
|
687
|
+
> `optional` **openTelemetryReader?**: `string`
|
|
705
688
|
|
|
706
|
-
The type of
|
|
689
|
+
The type of Open Telemetry metric reader to use, only required if using open-telemetry as telemetry connector, values: prometheus.
|
|
707
690
|
|
|
708
691
|
***
|
|
709
692
|
|
|
710
|
-
###
|
|
693
|
+
### openTelemetryPrometheusPort? {#opentelemetryprometheusport}
|
|
711
694
|
|
|
712
|
-
> `optional` **
|
|
695
|
+
> `optional` **openTelemetryPrometheusPort?**: `string`
|
|
713
696
|
|
|
714
|
-
The
|
|
697
|
+
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
698
|
|
|
716
699
|
***
|
|
717
700
|
|
|
718
|
-
###
|
|
701
|
+
### telemetryMetricsCollectorIntervalSeconds? {#telemetrymetricscollectorintervalseconds}
|
|
719
702
|
|
|
720
|
-
> `optional` **
|
|
703
|
+
> `optional` **telemetryMetricsCollectorIntervalSeconds?**: `string`
|
|
721
704
|
|
|
722
|
-
|
|
705
|
+
Polling interval in seconds for the telemetry metrics collector. Defaults to 60.
|
|
723
706
|
|
|
724
707
|
***
|
|
725
708
|
|
|
726
|
-
###
|
|
709
|
+
### telemetryMetricsProducers? {#telemetrymetricsproducers}
|
|
727
710
|
|
|
728
|
-
> `optional` **
|
|
711
|
+
> `optional` **telemetryMetricsProducers?**: `string`
|
|
729
712
|
|
|
730
|
-
The type of
|
|
713
|
+
The type of telemetry metrics producers, can be a comma separated list: system, process.
|
|
731
714
|
|
|
732
715
|
***
|
|
733
716
|
|
|
734
|
-
###
|
|
717
|
+
### telemetryMetricsProducerMaxHistory? {#telemetrymetricsproducermaxhistory}
|
|
735
718
|
|
|
736
|
-
> `optional` **
|
|
719
|
+
> `optional` **telemetryMetricsProducerMaxHistory?**: `string`
|
|
737
720
|
|
|
738
|
-
|
|
721
|
+
Maximum number of values retained per telemetry metric (count-based history cap). Defaults to 1440.
|
|
739
722
|
|
|
740
723
|
***
|
|
741
724
|
|
|
742
|
-
###
|
|
725
|
+
### faucetConnector? {#faucetconnector}
|
|
743
726
|
|
|
744
|
-
> `optional` **
|
|
727
|
+
> `optional` **faucetConnector?**: `string`
|
|
745
728
|
|
|
746
|
-
|
|
729
|
+
The type of faucet connector: entity-storage, iota.
|
|
747
730
|
|
|
748
731
|
***
|
|
749
732
|
|
|
750
|
-
###
|
|
733
|
+
### walletConnector? {#walletconnector}
|
|
751
734
|
|
|
752
|
-
> `optional` **
|
|
735
|
+
> `optional` **walletConnector?**: `string`
|
|
753
736
|
|
|
754
|
-
|
|
737
|
+
The type of wallet connector: entity-storage, iota.
|
|
755
738
|
|
|
756
739
|
***
|
|
757
740
|
|
|
758
|
-
###
|
|
741
|
+
### nftConnector? {#nftconnector}
|
|
759
742
|
|
|
760
|
-
> `optional` **
|
|
743
|
+
> `optional` **nftConnector?**: `string`
|
|
761
744
|
|
|
762
|
-
|
|
745
|
+
The type of NFT connector: entity-storage, iota.
|
|
763
746
|
|
|
764
747
|
***
|
|
765
748
|
|
|
766
|
-
###
|
|
749
|
+
### nftPackageId? {#nftpackageid}
|
|
767
750
|
|
|
768
|
-
> `optional` **
|
|
751
|
+
> `optional` **nftPackageId?**: `string`
|
|
769
752
|
|
|
770
|
-
|
|
753
|
+
The NFT deployed package id, for custom deployments.
|
|
771
754
|
|
|
772
755
|
***
|
|
773
756
|
|
|
774
|
-
###
|
|
757
|
+
### notarizationConnector? {#notarizationconnector}
|
|
775
758
|
|
|
776
|
-
> `optional` **
|
|
759
|
+
> `optional` **notarizationConnector?**: `string`
|
|
777
760
|
|
|
778
|
-
|
|
761
|
+
The type of notarization connector: entity-storage, iota.
|
|
779
762
|
|
|
780
763
|
***
|
|
781
764
|
|
|
782
|
-
###
|
|
765
|
+
### identityConnector? {#identityconnector}
|
|
783
766
|
|
|
784
|
-
> `optional` **
|
|
767
|
+
> `optional` **identityConnector?**: `string`
|
|
785
768
|
|
|
786
|
-
|
|
769
|
+
The type of identity connector: entity-storage, iota.
|
|
787
770
|
|
|
788
771
|
***
|
|
789
772
|
|
|
790
|
-
###
|
|
773
|
+
### identityWalletAddressIndex? {#identitywalletaddressindex}
|
|
791
774
|
|
|
792
|
-
> `optional` **
|
|
775
|
+
> `optional` **identityWalletAddressIndex?**: `string`
|
|
793
776
|
|
|
794
|
-
|
|
777
|
+
The index of the wallet address to use, defaults to 0.
|
|
795
778
|
|
|
796
779
|
***
|
|
797
780
|
|
|
798
|
-
###
|
|
781
|
+
### identityResolverConnector? {#identityresolverconnector}
|
|
799
782
|
|
|
800
|
-
> `optional` **
|
|
783
|
+
> `optional` **identityResolverConnector?**: `string`
|
|
801
784
|
|
|
802
|
-
The type of identity
|
|
785
|
+
The type of identity resolver connector: entity-storage, iota.
|
|
803
786
|
|
|
804
787
|
***
|
|
805
788
|
|
|
806
|
-
###
|
|
789
|
+
### iotaFaucetEndpoint? {#iotafaucetendpoint}
|
|
807
790
|
|
|
808
|
-
> `optional` **
|
|
791
|
+
> `optional` **iotaFaucetEndpoint?**: `string`
|
|
809
792
|
|
|
810
|
-
|
|
793
|
+
IOTA Faucet Endpoint.
|
|
811
794
|
|
|
812
795
|
***
|
|
813
796
|
|
|
814
|
-
###
|
|
797
|
+
### iotaNodeEndpoint? {#iotanodeendpoint}
|
|
815
798
|
|
|
816
|
-
> `optional` **
|
|
799
|
+
> `optional` **iotaNodeEndpoint?**: `string`
|
|
817
800
|
|
|
818
|
-
|
|
801
|
+
IOTA Node Endpoint.
|
|
819
802
|
|
|
820
803
|
***
|
|
821
804
|
|
|
822
|
-
###
|
|
805
|
+
### iotaNetwork? {#iotanetwork}
|
|
823
806
|
|
|
824
|
-
> `optional` **
|
|
807
|
+
> `optional` **iotaNetwork?**: `string`
|
|
825
808
|
|
|
826
|
-
|
|
809
|
+
IOTA network.
|
|
827
810
|
|
|
828
811
|
***
|
|
829
812
|
|
|
830
|
-
###
|
|
813
|
+
### iotaCoinType? {#iotacointype}
|
|
831
814
|
|
|
832
|
-
> `optional` **
|
|
815
|
+
> `optional` **iotaCoinType?**: `string`
|
|
833
816
|
|
|
834
|
-
|
|
817
|
+
IOTA coin type.
|
|
835
818
|
|
|
836
819
|
***
|
|
837
820
|
|
|
838
|
-
###
|
|
821
|
+
### iotaExplorerEndpoint? {#iotaexplorerendpoint}
|
|
839
822
|
|
|
840
|
-
> `optional` **
|
|
823
|
+
> `optional` **iotaExplorerEndpoint?**: `string`
|
|
841
824
|
|
|
842
|
-
|
|
825
|
+
IOTA Explorer Endpoint.
|
|
843
826
|
|
|
844
827
|
***
|
|
845
828
|
|
|
846
|
-
###
|
|
829
|
+
### iotaGasStationEndpoint? {#iotagasstationendpoint}
|
|
847
830
|
|
|
848
|
-
> `optional` **
|
|
831
|
+
> `optional` **iotaGasStationEndpoint?**: `string`
|
|
849
832
|
|
|
850
|
-
|
|
833
|
+
IOTA Gas Station Endpoint.
|
|
851
834
|
|
|
852
835
|
***
|
|
853
836
|
|
|
854
|
-
###
|
|
837
|
+
### iotaGasStationAuthToken? {#iotagasstationauthtoken}
|
|
855
838
|
|
|
856
|
-
> `optional` **
|
|
839
|
+
> `optional` **iotaGasStationAuthToken?**: `string`
|
|
857
840
|
|
|
858
|
-
|
|
841
|
+
IOTA Gas Station Authentication Token.
|
|
859
842
|
|
|
860
843
|
***
|
|
861
844
|
|
|
862
|
-
###
|
|
845
|
+
### iotaIdentityPackageId? {#iotaidentitypackageid}
|
|
863
846
|
|
|
864
|
-
> `optional` **
|
|
847
|
+
> `optional` **iotaIdentityPackageId?**: `string`
|
|
865
848
|
|
|
866
|
-
|
|
849
|
+
The IOTA Identity deployed package id, for custom deployments.
|
|
867
850
|
|
|
868
851
|
***
|
|
869
852
|
|
|
870
|
-
###
|
|
853
|
+
### universalResolverEndpoint? {#universalresolverendpoint}
|
|
871
854
|
|
|
872
|
-
> `optional` **
|
|
855
|
+
> `optional` **universalResolverEndpoint?**: `string`
|
|
873
856
|
|
|
874
|
-
|
|
857
|
+
Universal Resolver Endpoint.
|
|
858
|
+
|
|
859
|
+
***
|
|
860
|
+
|
|
861
|
+
### identityProfileConnector? {#identityprofileconnector}
|
|
862
|
+
|
|
863
|
+
> `optional` **identityProfileConnector?**: `string`
|
|
864
|
+
|
|
865
|
+
The type of identity profile connector: entity-storage.
|
|
875
866
|
|
|
876
867
|
***
|
|
877
868
|
|
|
878
|
-
###
|
|
869
|
+
### immutableProofVerificationMethodId? {#immutableproofverificationmethodid}
|
|
879
870
|
|
|
880
|
-
> `optional` **
|
|
871
|
+
> `optional` **immutableProofVerificationMethodId?**: `string`
|
|
881
872
|
|
|
882
|
-
|
|
873
|
+
The identity verification method id to use with immutable proofs.
|
|
883
874
|
|
|
884
875
|
***
|
|
885
876
|
|
|
886
|
-
###
|
|
877
|
+
### attestationConnector? {#attestationconnector}
|
|
887
878
|
|
|
888
|
-
> `optional` **
|
|
879
|
+
> `optional` **attestationConnector?**: `string`
|
|
889
880
|
|
|
890
|
-
|
|
881
|
+
The type of attestation connector: entity-storage, iota.
|
|
891
882
|
|
|
892
883
|
***
|
|
893
884
|
|
|
894
|
-
###
|
|
885
|
+
### attestationVerificationMethodId? {#attestationverificationmethodid}
|
|
895
886
|
|
|
896
|
-
> `optional` **
|
|
887
|
+
> `optional` **attestationVerificationMethodId?**: `string`
|
|
897
888
|
|
|
898
|
-
The
|
|
899
|
-
This only required if using a custom verifiable storage item, otherwise it will default to the network name.
|
|
889
|
+
The identity verification method id to use with attestation.
|
|
900
890
|
|
|
901
891
|
***
|
|
902
892
|
|
|
903
|
-
###
|
|
893
|
+
### dataProcessingEnabled? {#dataprocessingenabled}
|
|
904
894
|
|
|
905
|
-
> `optional` **
|
|
895
|
+
> `optional` **dataProcessingEnabled?**: `string`
|
|
906
896
|
|
|
907
|
-
|
|
908
|
-
Only required for trusted nodes, as regular nodes will request from the trusted nodes.
|
|
909
|
-
Defaults to synchronised-storage-blob-encryption
|
|
897
|
+
Is the data processing enabled, defaults to false.
|
|
910
898
|
|
|
911
899
|
***
|
|
912
900
|
|
|
913
|
-
###
|
|
901
|
+
### dataConverterConnectors? {#dataconverterconnectors}
|
|
914
902
|
|
|
915
|
-
> `optional` **
|
|
903
|
+
> `optional` **dataConverterConnectors?**: `string`
|
|
916
904
|
|
|
917
|
-
The
|
|
918
|
-
Only required for trusted nodes, as regular nodes will not write encrypted data.
|
|
905
|
+
The type of the default data converters, can be a comma separated list: json, xml.
|
|
919
906
|
|
|
920
907
|
***
|
|
921
908
|
|
|
922
|
-
###
|
|
909
|
+
### dataExtractorConnectors? {#dataextractorconnectors}
|
|
923
910
|
|
|
924
|
-
> `optional` **
|
|
911
|
+
> `optional` **dataExtractorConnectors?**: `string`
|
|
925
912
|
|
|
926
|
-
|
|
913
|
+
The type of the default data extractor, can be a comma separated list: json-path.
|
|
927
914
|
|
|
928
|
-
|
|
915
|
+
***
|
|
929
916
|
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
917
|
+
### auditableItemGraphEnabled? {#auditableitemgraphenabled}
|
|
918
|
+
|
|
919
|
+
> `optional` **auditableItemGraphEnabled?**: `string`
|
|
920
|
+
|
|
921
|
+
Is the auditable item graph enabled, defaults to false.
|
|
933
922
|
|
|
934
923
|
***
|
|
935
924
|
|
|
936
|
-
###
|
|
925
|
+
### auditableItemStreamEnabled? {#auditableitemstreamenabled}
|
|
937
926
|
|
|
938
|
-
> `optional` **
|
|
927
|
+
> `optional` **auditableItemStreamEnabled?**: `string`
|
|
939
928
|
|
|
940
|
-
|
|
929
|
+
Is the auditable item stream enabled, defaults to false.
|
|
941
930
|
|
|
942
|
-
|
|
931
|
+
***
|
|
943
932
|
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
933
|
+
### documentManagementEnabled? {#documentmanagementenabled}
|
|
934
|
+
|
|
935
|
+
> `optional` **documentManagementEnabled?**: `string`
|
|
936
|
+
|
|
937
|
+
Is the document management enabled, defaults to false.
|
|
947
938
|
|
|
948
939
|
***
|
|
949
940
|
|
|
950
|
-
###
|
|
941
|
+
### federatedCatalogueEnabled? {#federatedcatalogueenabled}
|
|
951
942
|
|
|
952
|
-
> `optional` **
|
|
943
|
+
> `optional` **federatedCatalogueEnabled?**: `string`
|
|
953
944
|
|
|
954
|
-
|
|
945
|
+
Enable the federated catalogue, defaults to false, automatically enabled if remote endpoint, filters or dataspace is enabled.
|
|
955
946
|
|
|
956
|
-
|
|
947
|
+
***
|
|
957
948
|
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
949
|
+
### federatedCatalogueFilters? {#federatedcataloguefilters}
|
|
950
|
+
|
|
951
|
+
> `optional` **federatedCatalogueFilters?**: `string`
|
|
952
|
+
|
|
953
|
+
Federated catalog filters, command separated list of filters to add.
|
|
961
954
|
|
|
962
955
|
***
|
|
963
956
|
|
|
964
|
-
###
|
|
957
|
+
### federatedCatalogueRemoteEndpoint? {#federatedcatalogueremoteendpoint}
|
|
965
958
|
|
|
966
|
-
> `optional` **
|
|
959
|
+
> `optional` **federatedCatalogueRemoteEndpoint?**: `string`
|
|
967
960
|
|
|
968
|
-
|
|
961
|
+
Federated catalog remote endpoint, if set will use a REST client instead of local service.
|
|
969
962
|
|
|
970
|
-
|
|
963
|
+
***
|
|
971
964
|
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
965
|
+
### trustGenerators? {#trustgenerators}
|
|
966
|
+
|
|
967
|
+
> `optional` **trustGenerators?**: `string`
|
|
968
|
+
|
|
969
|
+
The trust generators to add to the factory, comma separated list.
|
|
975
970
|
|
|
976
971
|
***
|
|
977
972
|
|
|
978
|
-
###
|
|
973
|
+
### trustVerifiers? {#trustverifiers}
|
|
979
974
|
|
|
980
|
-
> `optional` **
|
|
975
|
+
> `optional` **trustVerifiers?**: `string`
|
|
981
976
|
|
|
982
|
-
|
|
977
|
+
The trust verifiers to add to the factory, comma separated list.
|
|
983
978
|
|
|
984
979
|
***
|
|
985
980
|
|
|
986
|
-
###
|
|
981
|
+
### trustVerificationMethodId? {#trustverificationmethodid}
|
|
987
982
|
|
|
988
|
-
> `optional` **
|
|
983
|
+
> `optional` **trustVerificationMethodId?**: `string`
|
|
989
984
|
|
|
990
|
-
|
|
985
|
+
The verification method to use for trust identities.
|
|
986
|
+
Defaults to trust-assertion.
|
|
991
987
|
|
|
992
988
|
***
|
|
993
989
|
|
|
994
|
-
###
|
|
990
|
+
### trustJwtTtlSeconds? {#trustjwtttlseconds}
|
|
995
991
|
|
|
996
|
-
> `optional` **
|
|
992
|
+
> `optional` **trustJwtTtlSeconds?**: `string`
|
|
997
993
|
|
|
998
|
-
|
|
994
|
+
The trust time to live for generating JWTs.
|
|
995
|
+
Defaults to undefined for never expiring.
|
|
999
996
|
|
|
1000
997
|
***
|
|
1001
998
|
|
|
1002
|
-
###
|
|
999
|
+
### trustIdentitiesAllow? {#trustidentitiesallow}
|
|
1003
1000
|
|
|
1004
|
-
> `optional` **
|
|
1001
|
+
> `optional` **trustIdentitiesAllow?**: `string`
|
|
1005
1002
|
|
|
1006
|
-
|
|
1003
|
+
The allow lists for the trust identity verifier, comma separated list of identities.
|
|
1007
1004
|
|
|
1008
1005
|
***
|
|
1009
1006
|
|
|
1010
|
-
###
|
|
1007
|
+
### trustIdentitiesDeny? {#trustidentitiesdeny}
|
|
1011
1008
|
|
|
1012
|
-
> `optional` **
|
|
1009
|
+
> `optional` **trustIdentitiesDeny?**: `string`
|
|
1013
1010
|
|
|
1014
|
-
|
|
1011
|
+
The deny lists for the trust identity verifier, comma separated list of identities.
|
|
1015
1012
|
|
|
1016
1013
|
***
|
|
1017
1014
|
|
|
1018
|
-
###
|
|
1015
|
+
### rightsManagementCallbackPath? {#rightsmanagementcallbackpath}
|
|
1019
1016
|
|
|
1020
|
-
> `optional` **
|
|
1017
|
+
> `optional` **rightsManagementCallbackPath?**: `string`
|
|
1021
1018
|
|
|
1022
|
-
|
|
1023
|
-
|
|
1019
|
+
Path under which the rights management service is mounted (single source
|
|
1020
|
+
of truth). The same value drives:
|
|
1021
|
+
- the server route mount (via engine config)
|
|
1022
|
+
- the PNP service's callback URL builder (`buildCallbackUrl`)
|
|
1023
|
+
- the PNP rest-client's pathPrefix (consumer side)
|
|
1024
|
+
Defaults to `rights-management`. Set when deploying behind a reverse proxy
|
|
1025
|
+
with path rewriting, K8s ingress with path-based routing, or any custom
|
|
1026
|
+
mount point.
|
|
1024
1027
|
|
|
1025
1028
|
***
|
|
1026
1029
|
|
|
1027
|
-
###
|
|
1030
|
+
### rightsManagementPolicyInformationSources? {#rightsmanagementpolicyinformationsources}
|
|
1028
1031
|
|
|
1029
|
-
> `optional` **
|
|
1032
|
+
> `optional` **rightsManagementPolicyInformationSources?**: `string`
|
|
1030
1033
|
|
|
1031
|
-
The rights management
|
|
1032
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1034
|
+
The rights management policy information sources to add to the factory.
|
|
1033
1035
|
|
|
1034
1036
|
***
|
|
1035
1037
|
|
|
1036
|
-
###
|
|
1038
|
+
### rightsManagementPolicyNegotiators? {#rightsmanagementpolicynegotiators}
|
|
1037
1039
|
|
|
1038
|
-
> `optional` **
|
|
1040
|
+
> `optional` **rightsManagementPolicyNegotiators?**: `string`
|
|
1039
1041
|
|
|
1040
|
-
The rights management
|
|
1041
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1042
|
+
The rights management policy negotiators sources to add to the factory.
|
|
1042
1043
|
|
|
1043
1044
|
***
|
|
1044
1045
|
|
|
1045
|
-
###
|
|
1046
|
+
### rightsManagementPolicyRequesters? {#rightsmanagementpolicyrequesters}
|
|
1046
1047
|
|
|
1047
|
-
> `optional` **
|
|
1048
|
+
> `optional` **rightsManagementPolicyRequesters?**: `string`
|
|
1048
1049
|
|
|
1049
|
-
The rights management
|
|
1050
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1050
|
+
The rights management policy requesters to add to the factory.
|
|
1051
1051
|
|
|
1052
1052
|
***
|
|
1053
1053
|
|
|
1054
|
-
###
|
|
1054
|
+
### rightsManagementPolicyExecutionActions? {#rightsmanagementpolicyexecutionactions}
|
|
1055
1055
|
|
|
1056
|
-
> `optional` **
|
|
1056
|
+
> `optional` **rightsManagementPolicyExecutionActions?**: `string`
|
|
1057
1057
|
|
|
1058
|
-
The rights management
|
|
1059
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1058
|
+
The rights management policy execution actions to add to the factory.
|
|
1060
1059
|
|
|
1061
1060
|
***
|
|
1062
1061
|
|
|
1063
|
-
###
|
|
1062
|
+
### rightsManagementPolicyEnforcementProcessors? {#rightsmanagementpolicyenforcementprocessors}
|
|
1064
1063
|
|
|
1065
|
-
> `optional` **
|
|
1064
|
+
> `optional` **rightsManagementPolicyEnforcementProcessors?**: `string`
|
|
1066
1065
|
|
|
1067
|
-
The rights management
|
|
1068
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1066
|
+
The rights management policy enforcement processors to add to the factory.
|
|
1069
1067
|
|
|
1070
1068
|
***
|
|
1071
1069
|
|
|
1072
|
-
###
|
|
1070
|
+
### rightsManagementPolicyArbiters? {#rightsmanagementpolicyarbiters}
|
|
1073
1071
|
|
|
1074
|
-
> `optional` **
|
|
1072
|
+
> `optional` **rightsManagementPolicyArbiters?**: `string`
|
|
1075
1073
|
|
|
1076
|
-
The rights management
|
|
1077
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1074
|
+
The rights management policy arbiters to add to the factory.
|
|
1078
1075
|
|
|
1079
1076
|
***
|
|
1080
1077
|
|
|
1081
|
-
###
|
|
1078
|
+
### rightsManagementPolicyObligationEnforcers? {#rightsmanagementpolicyobligationenforcers}
|
|
1082
1079
|
|
|
1083
|
-
> `optional` **
|
|
1080
|
+
> `optional` **rightsManagementPolicyObligationEnforcers?**: `string`
|
|
1084
1081
|
|
|
1085
|
-
|
|
1082
|
+
The rights management policy obligation enforcers to add to the factory.
|
|
1086
1083
|
|
|
1087
1084
|
***
|
|
1088
1085
|
|
|
1089
|
-
###
|
|
1086
|
+
### dataspaceEnabled? {#dataspaceenabled}
|
|
1090
1087
|
|
|
1091
|
-
> `optional` **
|
|
1088
|
+
> `optional` **dataspaceEnabled?**: `string`
|
|
1092
1089
|
|
|
1093
|
-
Is the
|
|
1090
|
+
Is the dataspace enabled, defaults to false.
|
|
1094
1091
|
|
|
1095
1092
|
***
|
|
1096
1093
|
|
|
1097
|
-
###
|
|
1094
|
+
### dataspaceRetainActivityLogsFor? {#dataspaceretainactivitylogsfor}
|
|
1098
1095
|
|
|
1099
|
-
> `optional` **
|
|
1096
|
+
> `optional` **dataspaceRetainActivityLogsFor?**: `string`
|
|
1100
1097
|
|
|
1101
1098
|
The length of time to retain the activity logs for in minutes, set to -1 to keep forever.
|
|
1102
1099
|
|
|
@@ -1108,9 +1105,9 @@ The length of time to retain the activity logs for in minutes, set to -1 to keep
|
|
|
1108
1105
|
|
|
1109
1106
|
***
|
|
1110
1107
|
|
|
1111
|
-
###
|
|
1108
|
+
### dataspaceActivityLogsCleanUpInterval? {#dataspaceactivitylogscleanupinterval}
|
|
1112
1109
|
|
|
1113
|
-
> `optional` **
|
|
1110
|
+
> `optional` **dataspaceActivityLogsCleanUpInterval?**: `string`
|
|
1114
1111
|
|
|
1115
1112
|
The interval for cleaning up the activity logs.
|
|
1116
1113
|
|
|
@@ -1122,25 +1119,61 @@ The interval for cleaning up the activity logs.
|
|
|
1122
1119
|
|
|
1123
1120
|
***
|
|
1124
1121
|
|
|
1125
|
-
###
|
|
1122
|
+
### dataspaceDataPlanePath? {#dataspacedataplanepath}
|
|
1123
|
+
|
|
1124
|
+
> `optional` **dataspaceDataPlanePath?**: `string`
|
|
1125
|
+
|
|
1126
|
+
The data plane path for PULL transfers (path only, not full URL).
|
|
1127
|
+
Will be combined with public origin from hosting component.
|
|
1128
|
+
Required if PULL transfers should be supported.
|
|
1129
|
+
Example: "dataspace/entities"
|
|
1130
|
+
|
|
1131
|
+
***
|
|
1132
|
+
|
|
1133
|
+
### healthEnabled? {#healthenabled}
|
|
1134
|
+
|
|
1135
|
+
> `optional` **healthEnabled?**: `string`
|
|
1136
|
+
|
|
1137
|
+
Are the health components enabled, defaults to false.
|
|
1138
|
+
|
|
1139
|
+
***
|
|
1140
|
+
|
|
1141
|
+
### healthIntervalSeconds? {#healthintervalseconds}
|
|
1142
|
+
|
|
1143
|
+
> `optional` **healthIntervalSeconds?**: `string`
|
|
1144
|
+
|
|
1145
|
+
The interval in seconds for performing health checks, defaults to 60.
|
|
1146
|
+
|
|
1147
|
+
***
|
|
1148
|
+
|
|
1149
|
+
### healthStartupIntervalSeconds? {#healthstartupintervalseconds}
|
|
1150
|
+
|
|
1151
|
+
> `optional` **healthStartupIntervalSeconds?**: `string`
|
|
1152
|
+
|
|
1153
|
+
The interval in seconds for performing health checks at startup, defaults to 2.
|
|
1154
|
+
This allows components that take a long time to initialize to be healthy before the first health check is performed.
|
|
1155
|
+
|
|
1156
|
+
***
|
|
1157
|
+
|
|
1158
|
+
### urlTransformerEncryptionKeyId? {#urltransformerencryptionkeyid}
|
|
1126
1159
|
|
|
1127
|
-
> `optional` **
|
|
1160
|
+
> `optional` **urlTransformerEncryptionKeyId?**: `string`
|
|
1128
1161
|
|
|
1129
|
-
|
|
1162
|
+
The id of the key in the vault to use for encrypting parameters in url transformer.
|
|
1130
1163
|
|
|
1131
1164
|
***
|
|
1132
1165
|
|
|
1133
|
-
###
|
|
1166
|
+
### automationActionTypes? {#automationactiontypes}
|
|
1134
1167
|
|
|
1135
|
-
> `optional` **
|
|
1168
|
+
> `optional` **automationActionTypes?**: `string`
|
|
1136
1169
|
|
|
1137
|
-
|
|
1138
|
-
|
|
1170
|
+
The type of the automation action to create, comma separate for more than one connector.
|
|
1171
|
+
values: fetch
|
|
1139
1172
|
|
|
1140
1173
|
***
|
|
1141
1174
|
|
|
1142
|
-
### extensions?
|
|
1175
|
+
### extensions? {#extensions}
|
|
1143
1176
|
|
|
1144
|
-
> `optional` **extensions
|
|
1177
|
+
> `optional` **extensions?**: `string`
|
|
1145
1178
|
|
|
1146
1179
|
A comma separated list of additional node extensions to load, the initialiseExtension method will be called for each extension.
|