namirasoft-credential 1.4.32 → 1.4.34

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.
Files changed (65) hide show
  1. package/dist/NamirasoftCredentialServer.js +1 -1
  2. package/dist/command/KafkaCreateCommand.js +4 -4
  3. package/dist/command/KafkaCreateCommand.js.map +1 -1
  4. package/dist/command/KafkaUpdateCommand.js +4 -4
  5. package/dist/command/KafkaUpdateCommand.js.map +1 -1
  6. package/dist/command/RabbitmqCreateCommand.js +4 -4
  7. package/dist/command/RabbitmqCreateCommand.js.map +1 -1
  8. package/dist/command/RabbitmqUpdateCommand.js +4 -4
  9. package/dist/command/RabbitmqUpdateCommand.js.map +1 -1
  10. package/dist/command/RedisCreateCommand.js +4 -4
  11. package/dist/command/RedisCreateCommand.js.map +1 -1
  12. package/dist/command/RedisUpdateCommand.js +4 -4
  13. package/dist/command/RedisUpdateCommand.js.map +1 -1
  14. package/dist/command/SSHCreateCommand.js +5 -5
  15. package/dist/command/SSHCreateCommand.js.map +1 -1
  16. package/dist/meta/InMemoryStoreMetaTable.d.ts +1 -1
  17. package/dist/meta/InMemoryStoreMetaTable.js +2 -2
  18. package/dist/meta/InMemoryStoreMetaTable.js.map +1 -1
  19. package/dist/meta/KafkaMetaTable.d.ts +1 -1
  20. package/dist/meta/KafkaMetaTable.js +1 -1
  21. package/dist/meta/KafkaMetaTable.js.map +1 -1
  22. package/dist/meta/MessageBrokerMetaTable.js +1 -1
  23. package/dist/meta/MessageBrokerMetaTable.js.map +1 -1
  24. package/dist/meta/RabbitmqMetaTable.d.ts +1 -1
  25. package/dist/meta/RabbitmqMetaTable.js +1 -1
  26. package/dist/meta/RabbitmqMetaTable.js.map +1 -1
  27. package/dist/meta/RedisMetaTable.d.ts +1 -1
  28. package/dist/meta/RedisMetaTable.js +2 -2
  29. package/dist/meta/RedisMetaTable.js.map +1 -1
  30. package/dist/row/InMemoryStoreRow.d.ts +1 -1
  31. package/dist/row/KafkaCreateRow.d.ts +3 -3
  32. package/dist/row/KafkaRow.d.ts +3 -3
  33. package/dist/row/KafkaUpdateRow.d.ts +1 -1
  34. package/dist/row/RabbitmqCreateRow.d.ts +3 -3
  35. package/dist/row/RabbitmqRow.d.ts +3 -3
  36. package/dist/row/RabbitmqUpdateRow.d.ts +1 -1
  37. package/dist/row/RedisCreateRow.d.ts +3 -3
  38. package/dist/row/RedisRow.d.ts +3 -3
  39. package/dist/row/RedisUpdateRow.d.ts +1 -1
  40. package/dist/row/SSHCreateRow.d.ts +5 -5
  41. package/package.json +1 -1
  42. package/src/NamirasoftCredentialServer.ts +1 -1
  43. package/src/command/KafkaCreateCommand.ts +4 -4
  44. package/src/command/KafkaUpdateCommand.ts +4 -4
  45. package/src/command/RabbitmqCreateCommand.ts +4 -4
  46. package/src/command/RabbitmqUpdateCommand.ts +4 -4
  47. package/src/command/RedisCreateCommand.ts +4 -4
  48. package/src/command/RedisUpdateCommand.ts +4 -4
  49. package/src/command/SSHCreateCommand.ts +5 -5
  50. package/src/meta/InMemoryStoreMetaTable.ts +3 -3
  51. package/src/meta/KafkaMetaTable.ts +2 -2
  52. package/src/meta/MessageBrokerMetaTable.ts +1 -1
  53. package/src/meta/RabbitmqMetaTable.ts +2 -2
  54. package/src/meta/RedisMetaTable.ts +3 -3
  55. package/src/row/InMemoryStoreRow.ts +1 -1
  56. package/src/row/KafkaCreateRow.ts +3 -3
  57. package/src/row/KafkaRow.ts +3 -3
  58. package/src/row/KafkaUpdateRow.ts +1 -1
  59. package/src/row/RabbitmqCreateRow.ts +3 -3
  60. package/src/row/RabbitmqRow.ts +3 -3
  61. package/src/row/RabbitmqUpdateRow.ts +1 -1
  62. package/src/row/RedisCreateRow.ts +3 -3
  63. package/src/row/RedisRow.ts +3 -3
  64. package/src/row/RedisUpdateRow.ts +1 -1
  65. package/src/row/SSHCreateRow.ts +5 -5
@@ -10,7 +10,7 @@ export type InMemoryStoreRow = {
10
10
  type: InMemoryStoreType;
11
11
  host: (string | null);
12
12
  port: (number | null);
13
- database_name: (string | null);
13
+ in_memory_store_name: (string | null);
14
14
  username_secret_id: (string | null);
15
15
  password_secret_id: (string | null);
16
16
  connection_string_secret_id: (string | null);
@@ -1,14 +1,14 @@
1
- import { DatabaseType } from "../enum/DatabaseType";
2
1
  import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
3
2
  import { EntityFieldInputRow } from "./EntityFieldInputRow";
4
3
  import { EntityTagInputRow } from "./EntityTagInputRow";
4
+ import { MessageBrokerType } from "../enum/MessageBrokerType";
5
5
  export type KafkaCreateRow = {
6
6
  rotator_id: (string | null);
7
7
  ssh_credential_id: (string | null);
8
- type: DatabaseType;
8
+ type: MessageBrokerType;
9
9
  host: (string | null);
10
10
  port: (number | null);
11
- database_name: (string | null);
11
+ message_broker_name: (string | null);
12
12
  username_secret_id: (string | null);
13
13
  password_secret_id: (string | null);
14
14
  connection_string_secret_id: (string | null);
@@ -1,6 +1,6 @@
1
1
  import { CredentialEntityType } from "../enum/CredentialEntityType";
2
2
  import { CredentialGroupType } from "../enum/CredentialGroupType";
3
- import { DatabaseType } from "../enum/DatabaseType";
3
+ import { MessageBrokerType } from "../enum/MessageBrokerType";
4
4
  export type KafkaRow = {
5
5
  id: string;
6
6
  credential_id: string;
@@ -10,10 +10,10 @@ export type KafkaRow = {
10
10
  entity_id: string;
11
11
  rotator_id: (string | null);
12
12
  ssh_credential_id: (string | null);
13
- type: DatabaseType;
13
+ type: MessageBrokerType;
14
14
  host: (string | null);
15
15
  port: (number | null);
16
- database_name: (string | null);
16
+ message_broker_name: (string | null);
17
17
  username_secret_id: (string | null);
18
18
  password_secret_id: (string | null);
19
19
  connection_string_secret_id: (string | null);
@@ -6,7 +6,7 @@ export type KafkaUpdateRow = {
6
6
  ssh_credential_id: (string | null);
7
7
  host: (string | null);
8
8
  port: (number | null);
9
- database_name: (string | null);
9
+ message_broker_name: (string | null);
10
10
  username_secret_id: (string | null);
11
11
  password_secret_id: (string | null);
12
12
  connection_string_secret_id: (string | null);
@@ -1,14 +1,14 @@
1
- import { DatabaseType } from "../enum/DatabaseType";
2
1
  import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
3
2
  import { EntityFieldInputRow } from "./EntityFieldInputRow";
4
3
  import { EntityTagInputRow } from "./EntityTagInputRow";
4
+ import { MessageBrokerType } from "../enum/MessageBrokerType";
5
5
  export type RabbitmqCreateRow = {
6
6
  rotator_id: (string | null);
7
7
  ssh_credential_id: (string | null);
8
- type: DatabaseType;
8
+ type: MessageBrokerType;
9
9
  host: (string | null);
10
10
  port: (number | null);
11
- database_name: (string | null);
11
+ message_broker_name: (string | null);
12
12
  username_secret_id: (string | null);
13
13
  password_secret_id: (string | null);
14
14
  connection_string_secret_id: (string | null);
@@ -1,6 +1,6 @@
1
1
  import { CredentialEntityType } from "../enum/CredentialEntityType";
2
2
  import { CredentialGroupType } from "../enum/CredentialGroupType";
3
- import { DatabaseType } from "../enum/DatabaseType";
3
+ import { MessageBrokerType } from "../enum/MessageBrokerType";
4
4
  export type RabbitmqRow = {
5
5
  id: string;
6
6
  credential_id: string;
@@ -10,10 +10,10 @@ export type RabbitmqRow = {
10
10
  entity_id: string;
11
11
  rotator_id: (string | null);
12
12
  ssh_credential_id: (string | null);
13
- type: DatabaseType;
13
+ type: MessageBrokerType;
14
14
  host: (string | null);
15
15
  port: (number | null);
16
- database_name: (string | null);
16
+ message_broker_name: (string | null);
17
17
  username_secret_id: (string | null);
18
18
  password_secret_id: (string | null);
19
19
  connection_string_secret_id: (string | null);
@@ -6,7 +6,7 @@ export type RabbitmqUpdateRow = {
6
6
  ssh_credential_id: (string | null);
7
7
  host: (string | null);
8
8
  port: (number | null);
9
- database_name: (string | null);
9
+ message_broker_name: (string | null);
10
10
  username_secret_id: (string | null);
11
11
  password_secret_id: (string | null);
12
12
  connection_string_secret_id: (string | null);
@@ -1,14 +1,14 @@
1
- import { DatabaseType } from "../enum/DatabaseType";
2
1
  import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
3
2
  import { EntityFieldInputRow } from "./EntityFieldInputRow";
4
3
  import { EntityTagInputRow } from "./EntityTagInputRow";
4
+ import { InMemoryStoreType } from "../enum/InMemoryStoreType";
5
5
  export type RedisCreateRow = {
6
6
  rotator_id: (string | null);
7
7
  ssh_credential_id: (string | null);
8
- type: DatabaseType;
8
+ type: InMemoryStoreType;
9
9
  host: (string | null);
10
10
  port: (number | null);
11
- database_name: (string | null);
11
+ in_memory_store_name: (string | null);
12
12
  username_secret_id: (string | null);
13
13
  password_secret_id: (string | null);
14
14
  connection_string_secret_id: (string | null);
@@ -1,6 +1,6 @@
1
1
  import { CredentialEntityType } from "../enum/CredentialEntityType";
2
2
  import { CredentialGroupType } from "../enum/CredentialGroupType";
3
- import { DatabaseType } from "../enum/DatabaseType";
3
+ import { InMemoryStoreType } from "../enum/InMemoryStoreType";
4
4
  export type RedisRow = {
5
5
  id: string;
6
6
  credential_id: string;
@@ -12,10 +12,10 @@ export type RedisRow = {
12
12
  entity_id: string;
13
13
  rotator_id: (string | null);
14
14
  ssh_credential_id: (string | null);
15
- type: DatabaseType;
15
+ type: InMemoryStoreType;
16
16
  host: (string | null);
17
17
  port: (number | null);
18
- database_name: (string | null);
18
+ in_memory_store_name: (string | null);
19
19
  username_secret_id: (string | null);
20
20
  password_secret_id: (string | null);
21
21
  connection_string_secret_id: (string | null);
@@ -6,7 +6,7 @@ export type RedisUpdateRow = {
6
6
  ssh_credential_id: (string | null);
7
7
  host: (string | null);
8
8
  port: (number | null);
9
- database_name: (string | null);
9
+ in_memory_store_name: (string | null);
10
10
  username_secret_id: (string | null);
11
11
  password_secret_id: (string | null);
12
12
  connection_string_secret_id: (string | null);
@@ -6,11 +6,11 @@ export type SSHCreateRow = {
6
6
  host: string;
7
7
  port: number;
8
8
  auth_type: SshAuthType;
9
- username: string;
10
- password: string;
11
- private_key: string;
12
- private_key_passphrase: string;
13
- fingerprint: string;
9
+ username: (string | null);
10
+ password: (string | null);
11
+ private_key: (string | null);
12
+ private_key_passphrase: (string | null);
13
+ fingerprint: (string | null);
14
14
  workspace_id: string;
15
15
  name: string;
16
16
  description: (string | null);
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.4.32",
11
+ "version": "1.4.34",
12
12
  "author": "Amir Abolhasani",
13
13
  "license": "MIT",
14
14
  "main": "./dist/index.js",
@@ -211,7 +211,7 @@ export class NamirasoftCredentialServer extends NSABaseServer
211
211
  kafka: NamirasoftCredentialServerKafka;
212
212
  constructor(base_url: string, token_manager: TokenManager, onError: (error: Error) => void)
213
213
  {
214
- super(base_url, `1.4.32`, token_manager, onError);
214
+ super(base_url, `1.4.34`, token_manager, onError);
215
215
  this.healthz = new NamirasoftCredentialServerHealthz(this);
216
216
  this.health = new NamirasoftCredentialServerHealth(this);
217
217
  this.metrics = new NamirasoftCredentialServerMetrics(this);
@@ -69,11 +69,11 @@ export class KafkaCreateCommand extends BaseFinalCommand
69
69
  defaults: [""]
70
70
  },
71
71
  {
72
- name: "database_name",
72
+ name: "message_broker_name",
73
73
  short: "",
74
- description: "Provides the value of 'database_name' in body",
74
+ description: "Provides the value of 'message_broker_name' in body",
75
75
  optional: true,
76
- args: ["database_name"],
76
+ args: ["message_broker_name"],
77
77
  defaults: [""]
78
78
  },
79
79
  {
@@ -198,7 +198,7 @@ export class KafkaCreateCommand extends BaseFinalCommand
198
198
  type: this.option_values.type,
199
199
  host: this.option_values.host,
200
200
  port: this.option_values.port,
201
- database_name: this.option_values.database_name,
201
+ message_broker_name: this.option_values.message_broker_name,
202
202
  username_secret_id: this.option_values.username_secret_id,
203
203
  password_secret_id: this.option_values.password_secret_id,
204
204
  connection_string_secret_id: this.option_values.connection_string_secret_id,
@@ -61,11 +61,11 @@ export class KafkaUpdateCommand extends BaseFinalCommand
61
61
  defaults: [""]
62
62
  },
63
63
  {
64
- name: "database_name",
64
+ name: "message_broker_name",
65
65
  short: "",
66
- description: "Provides the value of 'database_name' in body",
66
+ description: "Provides the value of 'message_broker_name' in body",
67
67
  optional: true,
68
- args: ["database_name"],
68
+ args: ["message_broker_name"],
69
69
  defaults: [""]
70
70
  },
71
71
  {
@@ -189,7 +189,7 @@ export class KafkaUpdateCommand extends BaseFinalCommand
189
189
  ssh_credential_id: this.option_values.ssh_credential_id,
190
190
  host: this.option_values.host,
191
191
  port: this.option_values.port,
192
- database_name: this.option_values.database_name,
192
+ message_broker_name: this.option_values.message_broker_name,
193
193
  username_secret_id: this.option_values.username_secret_id,
194
194
  password_secret_id: this.option_values.password_secret_id,
195
195
  connection_string_secret_id: this.option_values.connection_string_secret_id,
@@ -69,11 +69,11 @@ export class RabbitmqCreateCommand extends BaseFinalCommand
69
69
  defaults: [""]
70
70
  },
71
71
  {
72
- name: "database_name",
72
+ name: "message_broker_name",
73
73
  short: "",
74
- description: "Provides the value of 'database_name' in body",
74
+ description: "Provides the value of 'message_broker_name' in body",
75
75
  optional: true,
76
- args: ["database_name"],
76
+ args: ["message_broker_name"],
77
77
  defaults: [""]
78
78
  },
79
79
  {
@@ -198,7 +198,7 @@ export class RabbitmqCreateCommand extends BaseFinalCommand
198
198
  type: this.option_values.type,
199
199
  host: this.option_values.host,
200
200
  port: this.option_values.port,
201
- database_name: this.option_values.database_name,
201
+ message_broker_name: this.option_values.message_broker_name,
202
202
  username_secret_id: this.option_values.username_secret_id,
203
203
  password_secret_id: this.option_values.password_secret_id,
204
204
  connection_string_secret_id: this.option_values.connection_string_secret_id,
@@ -61,11 +61,11 @@ export class RabbitmqUpdateCommand extends BaseFinalCommand
61
61
  defaults: [""]
62
62
  },
63
63
  {
64
- name: "database_name",
64
+ name: "message_broker_name",
65
65
  short: "",
66
- description: "Provides the value of 'database_name' in body",
66
+ description: "Provides the value of 'message_broker_name' in body",
67
67
  optional: true,
68
- args: ["database_name"],
68
+ args: ["message_broker_name"],
69
69
  defaults: [""]
70
70
  },
71
71
  {
@@ -189,7 +189,7 @@ export class RabbitmqUpdateCommand extends BaseFinalCommand
189
189
  ssh_credential_id: this.option_values.ssh_credential_id,
190
190
  host: this.option_values.host,
191
191
  port: this.option_values.port,
192
- database_name: this.option_values.database_name,
192
+ message_broker_name: this.option_values.message_broker_name,
193
193
  username_secret_id: this.option_values.username_secret_id,
194
194
  password_secret_id: this.option_values.password_secret_id,
195
195
  connection_string_secret_id: this.option_values.connection_string_secret_id,
@@ -69,11 +69,11 @@ export class RedisCreateCommand extends BaseFinalCommand
69
69
  defaults: [""]
70
70
  },
71
71
  {
72
- name: "database_name",
72
+ name: "in_memory_store_name",
73
73
  short: "",
74
- description: "Provides the value of 'database_name' in body",
74
+ description: "Provides the value of 'in_memory_store_name' in body",
75
75
  optional: true,
76
- args: ["database_name"],
76
+ args: ["in_memory_store_name"],
77
77
  defaults: [""]
78
78
  },
79
79
  {
@@ -198,7 +198,7 @@ export class RedisCreateCommand extends BaseFinalCommand
198
198
  type: this.option_values.type,
199
199
  host: this.option_values.host,
200
200
  port: this.option_values.port,
201
- database_name: this.option_values.database_name,
201
+ in_memory_store_name: this.option_values.in_memory_store_name,
202
202
  username_secret_id: this.option_values.username_secret_id,
203
203
  password_secret_id: this.option_values.password_secret_id,
204
204
  connection_string_secret_id: this.option_values.connection_string_secret_id,
@@ -61,11 +61,11 @@ export class RedisUpdateCommand extends BaseFinalCommand
61
61
  defaults: [""]
62
62
  },
63
63
  {
64
- name: "database_name",
64
+ name: "in_memory_store_name",
65
65
  short: "",
66
- description: "Provides the value of 'database_name' in body",
66
+ description: "Provides the value of 'in_memory_store_name' in body",
67
67
  optional: true,
68
- args: ["database_name"],
68
+ args: ["in_memory_store_name"],
69
69
  defaults: [""]
70
70
  },
71
71
  {
@@ -189,7 +189,7 @@ export class RedisUpdateCommand extends BaseFinalCommand
189
189
  ssh_credential_id: this.option_values.ssh_credential_id,
190
190
  host: this.option_values.host,
191
191
  port: this.option_values.port,
192
- database_name: this.option_values.database_name,
192
+ in_memory_store_name: this.option_values.in_memory_store_name,
193
193
  username_secret_id: this.option_values.username_secret_id,
194
194
  password_secret_id: this.option_values.password_secret_id,
195
195
  connection_string_secret_id: this.option_values.connection_string_secret_id,
@@ -56,7 +56,7 @@ export class SSHCreateCommand extends BaseFinalCommand
56
56
  name: "username",
57
57
  short: "",
58
58
  description: "Provides the value of 'username' in body",
59
- optional: false,
59
+ optional: true,
60
60
  args: ["username"],
61
61
  defaults: [""]
62
62
  },
@@ -64,7 +64,7 @@ export class SSHCreateCommand extends BaseFinalCommand
64
64
  name: "password",
65
65
  short: "",
66
66
  description: "Provides the value of 'password' in body",
67
- optional: false,
67
+ optional: true,
68
68
  args: ["password"],
69
69
  defaults: [""]
70
70
  },
@@ -72,7 +72,7 @@ export class SSHCreateCommand extends BaseFinalCommand
72
72
  name: "private_key",
73
73
  short: "",
74
74
  description: "Provides the value of 'private_key' in body",
75
- optional: false,
75
+ optional: true,
76
76
  args: ["private_key"],
77
77
  defaults: [""]
78
78
  },
@@ -80,7 +80,7 @@ export class SSHCreateCommand extends BaseFinalCommand
80
80
  name: "private_key_passphrase",
81
81
  short: "",
82
82
  description: "Provides the value of 'private_key_passphrase' in body",
83
- optional: false,
83
+ optional: true,
84
84
  args: ["private_key_passphrase"],
85
85
  defaults: [""]
86
86
  },
@@ -88,7 +88,7 @@ export class SSHCreateCommand extends BaseFinalCommand
88
88
  name: "fingerprint",
89
89
  short: "",
90
90
  description: "Provides the value of 'fingerprint' in body",
91
- optional: false,
91
+ optional: true,
92
92
  args: ["fingerprint"],
93
93
  defaults: [""]
94
94
  },
@@ -35,7 +35,7 @@ export class InMemoryStoreMetaTable extends NSBaseMetaTable<NamirasoftCredential
35
35
  type: BaseMetaColumn;
36
36
  host: BaseMetaColumn;
37
37
  port: BaseMetaColumn;
38
- database_name: BaseMetaColumn;
38
+ in_memory_store_name: BaseMetaColumn;
39
39
  username_secret_id: BaseMetaColumn;
40
40
  password_secret_id: BaseMetaColumn;
41
41
  connection_string_secret_id: BaseMetaColumn;
@@ -55,7 +55,7 @@ export class InMemoryStoreMetaTable extends NSBaseMetaTable<NamirasoftCredential
55
55
  }
56
56
  constructor(database: NSBaseMetaDatabase<NamirasoftCredentialServer>)
57
57
  {
58
- super(database, "in_memory_store", "In Memory Store", new BaseUUID("crd-in-memory-store"));
58
+ super(database, "in_memory_store", "In Memory Store", new BaseUUID("crd-mbr"));
59
59
  this.columns = {
60
60
  id: new BaseMetaColumn(this, "id", "ID", "String", true),
61
61
  credential_id: new BaseMetaColumn(this, "credential_id", "Credential ID", "String", true),
@@ -65,7 +65,7 @@ export class InMemoryStoreMetaTable extends NSBaseMetaTable<NamirasoftCredential
65
65
  type: new BaseMetaColumn(this, "type", "Type", "Enum", true),
66
66
  host: new BaseMetaColumn(this, "host", "Host", "String", false),
67
67
  port: new BaseMetaColumn(this, "port", "Port", "Integer", false),
68
- database_name: new BaseMetaColumn(this, "database_name", "Database Name", "String", false),
68
+ in_memory_store_name: new BaseMetaColumn(this, "in_memory_store_name", "In Memory Store Name", "String", false),
69
69
  username_secret_id: new BaseMetaColumn(this, "username_secret_id", "Username Secret ID", "String", false),
70
70
  password_secret_id: new BaseMetaColumn(this, "password_secret_id", "Password Secret ID", "String", false),
71
71
  connection_string_secret_id: new BaseMetaColumn(this, "connection_string_secret_id", "Connection String Secret ID", "String", false),
@@ -38,7 +38,7 @@ export class KafkaMetaTable extends NSBaseMetaTable<NamirasoftCredentialServer,
38
38
  type: BaseMetaColumn;
39
39
  host: BaseMetaColumn;
40
40
  port: BaseMetaColumn;
41
- database_name: BaseMetaColumn;
41
+ message_broker_name: BaseMetaColumn;
42
42
  username_secret_id: BaseMetaColumn;
43
43
  password_secret_id: BaseMetaColumn;
44
44
  connection_string_secret_id: BaseMetaColumn;
@@ -69,7 +69,7 @@ export class KafkaMetaTable extends NSBaseMetaTable<NamirasoftCredentialServer,
69
69
  type: new BaseMetaColumn(this, "type", "Type", "Enum", true),
70
70
  host: new BaseMetaColumn(this, "host", "Host", "String", false),
71
71
  port: new BaseMetaColumn(this, "port", "Port", "Integer", false),
72
- database_name: new BaseMetaColumn(this, "database_name", "Database Name", "String", false),
72
+ message_broker_name: new BaseMetaColumn(this, "message_broker_name", "Message Broker Name", "String", false),
73
73
  username_secret_id: new BaseMetaColumn(this, "username_secret_id", "Username Secret ID", "String", false),
74
74
  password_secret_id: new BaseMetaColumn(this, "password_secret_id", "Password Secret ID", "String", false),
75
75
  connection_string_secret_id: new BaseMetaColumn(this, "connection_string_secret_id", "Connection String Secret ID", "String", false),
@@ -55,7 +55,7 @@ export class MessageBrokerMetaTable extends NSBaseMetaTable<NamirasoftCredential
55
55
  }
56
56
  constructor(database: NSBaseMetaDatabase<NamirasoftCredentialServer>)
57
57
  {
58
- super(database, "message_broker", "Message Broker", new BaseUUID("crd-message_broker"));
58
+ super(database, "message_broker", "Message Broker", new BaseUUID("crd-mbr"));
59
59
  this.columns = {
60
60
  id: new BaseMetaColumn(this, "id", "ID", "String", true),
61
61
  credential_id: new BaseMetaColumn(this, "credential_id", "Credential ID", "String", true),
@@ -38,7 +38,7 @@ export class RabbitmqMetaTable extends NSBaseMetaTable<NamirasoftCredentialServe
38
38
  type: BaseMetaColumn;
39
39
  host: BaseMetaColumn;
40
40
  port: BaseMetaColumn;
41
- database_name: BaseMetaColumn;
41
+ message_broker_name: BaseMetaColumn;
42
42
  username_secret_id: BaseMetaColumn;
43
43
  password_secret_id: BaseMetaColumn;
44
44
  connection_string_secret_id: BaseMetaColumn;
@@ -69,7 +69,7 @@ export class RabbitmqMetaTable extends NSBaseMetaTable<NamirasoftCredentialServe
69
69
  type: new BaseMetaColumn(this, "type", "Type", "Enum", true),
70
70
  host: new BaseMetaColumn(this, "host", "Host", "String", false),
71
71
  port: new BaseMetaColumn(this, "port", "Port", "Integer", false),
72
- database_name: new BaseMetaColumn(this, "database_name", "Database Name", "String", false),
72
+ message_broker_name: new BaseMetaColumn(this, "message_broker_name", "Message Broker Name", "String", false),
73
73
  username_secret_id: new BaseMetaColumn(this, "username_secret_id", "Username Secret ID", "String", false),
74
74
  password_secret_id: new BaseMetaColumn(this, "password_secret_id", "Password Secret ID", "String", false),
75
75
  connection_string_secret_id: new BaseMetaColumn(this, "connection_string_secret_id", "Connection String Secret ID", "String", false),
@@ -40,7 +40,7 @@ export class RedisMetaTable extends NSBaseMetaTable<NamirasoftCredentialServer,
40
40
  type: BaseMetaColumn;
41
41
  host: BaseMetaColumn;
42
42
  port: BaseMetaColumn;
43
- database_name: BaseMetaColumn;
43
+ in_memory_store_name: BaseMetaColumn;
44
44
  username_secret_id: BaseMetaColumn;
45
45
  password_secret_id: BaseMetaColumn;
46
46
  connection_string_secret_id: BaseMetaColumn;
@@ -58,7 +58,7 @@ export class RedisMetaTable extends NSBaseMetaTable<NamirasoftCredentialServer,
58
58
  }
59
59
  constructor(database: NSBaseMetaDatabase<NamirasoftCredentialServer>)
60
60
  {
61
- super(database, "redis", "Redis", new BaseUUID("crd-redis"));
61
+ super(database, "redis", "Redis", new BaseUUID("crd-rds"));
62
62
  this.columns = {
63
63
  id: new BaseMetaColumn(this, "id", "ID", "String", true),
64
64
  credential_id: new BaseMetaColumn(this, "credential_id", "Credential ID", "String", true),
@@ -73,7 +73,7 @@ export class RedisMetaTable extends NSBaseMetaTable<NamirasoftCredentialServer,
73
73
  type: new BaseMetaColumn(this, "type", "Type", "Enum", true),
74
74
  host: new BaseMetaColumn(this, "host", "Host", "String", false),
75
75
  port: new BaseMetaColumn(this, "port", "Port", "Integer", false),
76
- database_name: new BaseMetaColumn(this, "database_name", "Database Name", "String", false),
76
+ in_memory_store_name: new BaseMetaColumn(this, "in_memory_store_name", "In Memory Store Name", "String", false),
77
77
  username_secret_id: new BaseMetaColumn(this, "username_secret_id", "Username Secret ID", "String", false),
78
78
  password_secret_id: new BaseMetaColumn(this, "password_secret_id", "Password Secret ID", "String", false),
79
79
  connection_string_secret_id: new BaseMetaColumn(this, "connection_string_secret_id", "Connection String Secret ID", "String", false),
@@ -32,7 +32,7 @@ export type InMemoryStoreRow =
32
32
  type: InMemoryStoreType;
33
33
  host: (string | null);
34
34
  port: (number | null);
35
- database_name: (string | null);
35
+ in_memory_store_name: (string | null);
36
36
  username_secret_id: (string | null);
37
37
  password_secret_id: (string | null);
38
38
  connection_string_secret_id: (string | null);
@@ -18,19 +18,19 @@
18
18
  /* */
19
19
  /****************************************************************/
20
20
 
21
- import { DatabaseType } from "../enum/DatabaseType";
22
21
  import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
23
22
  import { EntityFieldInputRow } from "./EntityFieldInputRow";
24
23
  import { EntityTagInputRow } from "./EntityTagInputRow";
24
+ import { MessageBrokerType } from "../enum/MessageBrokerType";
25
25
 
26
26
  export type KafkaCreateRow =
27
27
  {
28
28
  rotator_id: (string | null);
29
29
  ssh_credential_id: (string | null);
30
- type: DatabaseType;
30
+ type: MessageBrokerType;
31
31
  host: (string | null);
32
32
  port: (number | null);
33
- database_name: (string | null);
33
+ message_broker_name: (string | null);
34
34
  username_secret_id: (string | null);
35
35
  password_secret_id: (string | null);
36
36
  connection_string_secret_id: (string | null);
@@ -20,7 +20,7 @@
20
20
 
21
21
  import { CredentialEntityType } from "../enum/CredentialEntityType";
22
22
  import { CredentialGroupType } from "../enum/CredentialGroupType";
23
- import { DatabaseType } from "../enum/DatabaseType";
23
+ import { MessageBrokerType } from "../enum/MessageBrokerType";
24
24
 
25
25
  export type KafkaRow =
26
26
  {
@@ -32,10 +32,10 @@ export type KafkaRow =
32
32
  entity_id: string;
33
33
  rotator_id: (string | null);
34
34
  ssh_credential_id: (string | null);
35
- type: DatabaseType;
35
+ type: MessageBrokerType;
36
36
  host: (string | null);
37
37
  port: (number | null);
38
- database_name: (string | null);
38
+ message_broker_name: (string | null);
39
39
  username_secret_id: (string | null);
40
40
  password_secret_id: (string | null);
41
41
  connection_string_secret_id: (string | null);
@@ -28,7 +28,7 @@ export type KafkaUpdateRow =
28
28
  ssh_credential_id: (string | null);
29
29
  host: (string | null);
30
30
  port: (number | null);
31
- database_name: (string | null);
31
+ message_broker_name: (string | null);
32
32
  username_secret_id: (string | null);
33
33
  password_secret_id: (string | null);
34
34
  connection_string_secret_id: (string | null);
@@ -18,19 +18,19 @@
18
18
  /* */
19
19
  /****************************************************************/
20
20
 
21
- import { DatabaseType } from "../enum/DatabaseType";
22
21
  import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
23
22
  import { EntityFieldInputRow } from "./EntityFieldInputRow";
24
23
  import { EntityTagInputRow } from "./EntityTagInputRow";
24
+ import { MessageBrokerType } from "../enum/MessageBrokerType";
25
25
 
26
26
  export type RabbitmqCreateRow =
27
27
  {
28
28
  rotator_id: (string | null);
29
29
  ssh_credential_id: (string | null);
30
- type: DatabaseType;
30
+ type: MessageBrokerType;
31
31
  host: (string | null);
32
32
  port: (number | null);
33
- database_name: (string | null);
33
+ message_broker_name: (string | null);
34
34
  username_secret_id: (string | null);
35
35
  password_secret_id: (string | null);
36
36
  connection_string_secret_id: (string | null);
@@ -20,7 +20,7 @@
20
20
 
21
21
  import { CredentialEntityType } from "../enum/CredentialEntityType";
22
22
  import { CredentialGroupType } from "../enum/CredentialGroupType";
23
- import { DatabaseType } from "../enum/DatabaseType";
23
+ import { MessageBrokerType } from "../enum/MessageBrokerType";
24
24
 
25
25
  export type RabbitmqRow =
26
26
  {
@@ -32,10 +32,10 @@ export type RabbitmqRow =
32
32
  entity_id: string;
33
33
  rotator_id: (string | null);
34
34
  ssh_credential_id: (string | null);
35
- type: DatabaseType;
35
+ type: MessageBrokerType;
36
36
  host: (string | null);
37
37
  port: (number | null);
38
- database_name: (string | null);
38
+ message_broker_name: (string | null);
39
39
  username_secret_id: (string | null);
40
40
  password_secret_id: (string | null);
41
41
  connection_string_secret_id: (string | null);
@@ -28,7 +28,7 @@ export type RabbitmqUpdateRow =
28
28
  ssh_credential_id: (string | null);
29
29
  host: (string | null);
30
30
  port: (number | null);
31
- database_name: (string | null);
31
+ message_broker_name: (string | null);
32
32
  username_secret_id: (string | null);
33
33
  password_secret_id: (string | null);
34
34
  connection_string_secret_id: (string | null);