namirasoft-infra 1.4.8 → 1.4.9

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 (99) hide show
  1. package/dist/NamirasoftInfraServer.js +1 -1
  2. package/dist/command/CacheCreateCommand.js +28 -1
  3. package/dist/command/CacheCreateCommand.js.map +1 -1
  4. package/dist/command/CacheUpdateCommand.js +28 -1
  5. package/dist/command/CacheUpdateCommand.js.map +1 -1
  6. package/dist/command/CloudCreateCommand.js +28 -1
  7. package/dist/command/CloudCreateCommand.js.map +1 -1
  8. package/dist/command/CloudUpdateCommand.js +28 -1
  9. package/dist/command/CloudUpdateCommand.js.map +1 -1
  10. package/dist/command/DatabaseCreateCommand.js +28 -1
  11. package/dist/command/DatabaseCreateCommand.js.map +1 -1
  12. package/dist/command/DatabaseUpdateCommand.js +28 -1
  13. package/dist/command/DatabaseUpdateCommand.js.map +1 -1
  14. package/dist/command/DockerCreateCommand.js +28 -1
  15. package/dist/command/DockerCreateCommand.js.map +1 -1
  16. package/dist/command/DockerUpdateCommand.js +28 -1
  17. package/dist/command/DockerUpdateCommand.js.map +1 -1
  18. package/dist/command/EnvironmentCreateCommand.js +28 -1
  19. package/dist/command/EnvironmentCreateCommand.js.map +1 -1
  20. package/dist/command/EnvironmentUpdateCommand.js +28 -1
  21. package/dist/command/EnvironmentUpdateCommand.js.map +1 -1
  22. package/dist/command/KubernetesCreateCommand.js +28 -1
  23. package/dist/command/KubernetesCreateCommand.js.map +1 -1
  24. package/dist/command/KubernetesUpdateCommand.js +28 -1
  25. package/dist/command/KubernetesUpdateCommand.js.map +1 -1
  26. package/dist/command/MessagingCreateCommand.js +28 -1
  27. package/dist/command/MessagingCreateCommand.js.map +1 -1
  28. package/dist/command/MessagingUpdateCommand.js +28 -1
  29. package/dist/command/MessagingUpdateCommand.js.map +1 -1
  30. package/dist/command/MetricCreateCommand.js +28 -1
  31. package/dist/command/MetricCreateCommand.js.map +1 -1
  32. package/dist/command/MetricUpdateCommand.js +28 -1
  33. package/dist/command/MetricUpdateCommand.js.map +1 -1
  34. package/dist/command/MonitorCreateCommand.js +28 -1
  35. package/dist/command/MonitorCreateCommand.js.map +1 -1
  36. package/dist/command/MonitorUpdateCommand.js +28 -1
  37. package/dist/command/MonitorUpdateCommand.js.map +1 -1
  38. package/dist/command/ProjectCreateCommand.js +28 -1
  39. package/dist/command/ProjectCreateCommand.js.map +1 -1
  40. package/dist/command/ProjectUpdateCommand.js +28 -1
  41. package/dist/command/ProjectUpdateCommand.js.map +1 -1
  42. package/dist/command/ServerCreateCommand.js +28 -1
  43. package/dist/command/ServerCreateCommand.js.map +1 -1
  44. package/dist/command/ServerUpdateCommand.js +28 -1
  45. package/dist/command/ServerUpdateCommand.js.map +1 -1
  46. package/dist/command/StreamingCreateCommand.js +28 -1
  47. package/dist/command/StreamingCreateCommand.js.map +1 -1
  48. package/dist/command/StreamingUpdateCommand.js +28 -1
  49. package/dist/command/StreamingUpdateCommand.js.map +1 -1
  50. package/dist/row/CacheInputRow.d.ts +6 -0
  51. package/dist/row/CloudInputRow.d.ts +6 -0
  52. package/dist/row/DatabaseInputRow.d.ts +6 -0
  53. package/dist/row/DockerInputRow.d.ts +6 -0
  54. package/dist/row/EnvironmentInputRow.d.ts +6 -0
  55. package/dist/row/KubernetesInputRow.d.ts +6 -0
  56. package/dist/row/MessagingInputRow.d.ts +6 -0
  57. package/dist/row/MetricInputRow.d.ts +6 -0
  58. package/dist/row/MonitorInputRow.d.ts +6 -0
  59. package/dist/row/ProjectInputRow.d.ts +6 -0
  60. package/dist/row/ServerInputRow.d.ts +6 -0
  61. package/dist/row/StreamingInputRow.d.ts +6 -0
  62. package/package.json +1 -1
  63. package/src/NamirasoftInfraServer.ts +1 -1
  64. package/src/command/CacheCreateCommand.ts +28 -1
  65. package/src/command/CacheUpdateCommand.ts +28 -1
  66. package/src/command/CloudCreateCommand.ts +28 -1
  67. package/src/command/CloudUpdateCommand.ts +28 -1
  68. package/src/command/DatabaseCreateCommand.ts +28 -1
  69. package/src/command/DatabaseUpdateCommand.ts +28 -1
  70. package/src/command/DockerCreateCommand.ts +28 -1
  71. package/src/command/DockerUpdateCommand.ts +28 -1
  72. package/src/command/EnvironmentCreateCommand.ts +28 -1
  73. package/src/command/EnvironmentUpdateCommand.ts +28 -1
  74. package/src/command/KubernetesCreateCommand.ts +28 -1
  75. package/src/command/KubernetesUpdateCommand.ts +28 -1
  76. package/src/command/MessagingCreateCommand.ts +28 -1
  77. package/src/command/MessagingUpdateCommand.ts +28 -1
  78. package/src/command/MetricCreateCommand.ts +28 -1
  79. package/src/command/MetricUpdateCommand.ts +28 -1
  80. package/src/command/MonitorCreateCommand.ts +28 -1
  81. package/src/command/MonitorUpdateCommand.ts +28 -1
  82. package/src/command/ProjectCreateCommand.ts +28 -1
  83. package/src/command/ProjectUpdateCommand.ts +28 -1
  84. package/src/command/ServerCreateCommand.ts +28 -1
  85. package/src/command/ServerUpdateCommand.ts +28 -1
  86. package/src/command/StreamingCreateCommand.ts +28 -1
  87. package/src/command/StreamingUpdateCommand.ts +28 -1
  88. package/src/row/CacheInputRow.ts +6 -0
  89. package/src/row/CloudInputRow.ts +6 -0
  90. package/src/row/DatabaseInputRow.ts +6 -0
  91. package/src/row/DockerInputRow.ts +6 -0
  92. package/src/row/EnvironmentInputRow.ts +7 -0
  93. package/src/row/KubernetesInputRow.ts +6 -0
  94. package/src/row/MessagingInputRow.ts +6 -0
  95. package/src/row/MetricInputRow.ts +6 -0
  96. package/src/row/MonitorInputRow.ts +6 -0
  97. package/src/row/ProjectInputRow.ts +7 -0
  98. package/src/row/ServerInputRow.ts +6 -0
  99. package/src/row/StreamingInputRow.ts +6 -0
@@ -51,6 +51,30 @@ export class ProjectCreateCommand extends BaseFinalCommand
51
51
  optional: true,
52
52
  args: ["description"],
53
53
  defaults: [""]
54
+ },
55
+ {
56
+ name: "project_category",
57
+ short: "",
58
+ description: "Provides the value of 'project_category' in body",
59
+ optional: false,
60
+ args: ["project_category"],
61
+ defaults: [""]
62
+ },
63
+ {
64
+ name: "project_field",
65
+ short: "",
66
+ description: "Provides the value of 'project_field' in body",
67
+ optional: false,
68
+ args: ["project_field"],
69
+ defaults: [""]
70
+ },
71
+ {
72
+ name: "project_tag",
73
+ short: "",
74
+ description: "Provides the value of 'project_tag' in body",
75
+ optional: false,
76
+ args: ["project_tag"],
77
+ defaults: [""]
54
78
  }
55
79
  ]);
56
80
  }
@@ -67,7 +91,10 @@ export class ProjectCreateCommand extends BaseFinalCommand
67
91
  let ans = await server.project.Create({
68
92
  workspace_id: this.option_values.workspace_id,
69
93
  name: this.option_values.name,
70
- description: this.option_values.description
94
+ description: this.option_values.description,
95
+ project_category: this.option_values.project_category,
96
+ project_field: this.option_values.project_field,
97
+ project_tag: this.option_values.project_tag
71
98
  });
72
99
  this.app.logger.success(JSON.stringify(ans));
73
100
  }
@@ -51,6 +51,30 @@ export class ProjectUpdateCommand extends BaseFinalCommand
51
51
  optional: true,
52
52
  args: ["description"],
53
53
  defaults: [""]
54
+ },
55
+ {
56
+ name: "project_category",
57
+ short: "",
58
+ description: "Provides the value of 'project_category' in body",
59
+ optional: false,
60
+ args: ["project_category"],
61
+ defaults: [""]
62
+ },
63
+ {
64
+ name: "project_field",
65
+ short: "",
66
+ description: "Provides the value of 'project_field' in body",
67
+ optional: false,
68
+ args: ["project_field"],
69
+ defaults: [""]
70
+ },
71
+ {
72
+ name: "project_tag",
73
+ short: "",
74
+ description: "Provides the value of 'project_tag' in body",
75
+ optional: false,
76
+ args: ["project_tag"],
77
+ defaults: [""]
54
78
  }
55
79
  ]);
56
80
  }
@@ -67,7 +91,10 @@ export class ProjectUpdateCommand extends BaseFinalCommand
67
91
  let ans = await server.project.Update(this.arg_values[0], {
68
92
  workspace_id: this.option_values.workspace_id,
69
93
  name: this.option_values.name,
70
- description: this.option_values.description
94
+ description: this.option_values.description,
95
+ project_category: this.option_values.project_category,
96
+ project_field: this.option_values.project_field,
97
+ project_tag: this.option_values.project_tag
71
98
  });
72
99
  this.app.logger.success(JSON.stringify(ans));
73
100
  }
@@ -99,6 +99,30 @@ export class ServerCreateCommand extends BaseFinalCommand
99
99
  optional: false,
100
100
  args: ["description"],
101
101
  defaults: [""]
102
+ },
103
+ {
104
+ name: "server_category",
105
+ short: "",
106
+ description: "Provides the value of 'server_category' in body",
107
+ optional: false,
108
+ args: ["server_category"],
109
+ defaults: [""]
110
+ },
111
+ {
112
+ name: "server_field",
113
+ short: "",
114
+ description: "Provides the value of 'server_field' in body",
115
+ optional: false,
116
+ args: ["server_field"],
117
+ defaults: [""]
118
+ },
119
+ {
120
+ name: "server_tag",
121
+ short: "",
122
+ description: "Provides the value of 'server_tag' in body",
123
+ optional: false,
124
+ args: ["server_tag"],
125
+ defaults: [""]
102
126
  }
103
127
  ]);
104
128
  }
@@ -121,7 +145,10 @@ export class ServerCreateCommand extends BaseFinalCommand
121
145
  name: this.option_values.name,
122
146
  metric_retention_unit: this.option_values.metric_retention_unit,
123
147
  metric_retention_value: this.option_values.metric_retention_value,
124
- description: this.option_values.description
148
+ description: this.option_values.description,
149
+ server_category: this.option_values.server_category,
150
+ server_field: this.option_values.server_field,
151
+ server_tag: this.option_values.server_tag
125
152
  });
126
153
  this.app.logger.success(JSON.stringify(ans));
127
154
  }
@@ -99,6 +99,30 @@ export class ServerUpdateCommand extends BaseFinalCommand
99
99
  optional: false,
100
100
  args: ["description"],
101
101
  defaults: [""]
102
+ },
103
+ {
104
+ name: "server_category",
105
+ short: "",
106
+ description: "Provides the value of 'server_category' in body",
107
+ optional: false,
108
+ args: ["server_category"],
109
+ defaults: [""]
110
+ },
111
+ {
112
+ name: "server_field",
113
+ short: "",
114
+ description: "Provides the value of 'server_field' in body",
115
+ optional: false,
116
+ args: ["server_field"],
117
+ defaults: [""]
118
+ },
119
+ {
120
+ name: "server_tag",
121
+ short: "",
122
+ description: "Provides the value of 'server_tag' in body",
123
+ optional: false,
124
+ args: ["server_tag"],
125
+ defaults: [""]
102
126
  }
103
127
  ]);
104
128
  }
@@ -121,7 +145,10 @@ export class ServerUpdateCommand extends BaseFinalCommand
121
145
  name: this.option_values.name,
122
146
  metric_retention_unit: this.option_values.metric_retention_unit,
123
147
  metric_retention_value: this.option_values.metric_retention_value,
124
- description: this.option_values.description
148
+ description: this.option_values.description,
149
+ server_category: this.option_values.server_category,
150
+ server_field: this.option_values.server_field,
151
+ server_tag: this.option_values.server_tag
125
152
  });
126
153
  this.app.logger.success(JSON.stringify(ans));
127
154
  }
@@ -115,6 +115,30 @@ export class StreamingCreateCommand extends BaseFinalCommand
115
115
  optional: false,
116
116
  args: ["description"],
117
117
  defaults: [""]
118
+ },
119
+ {
120
+ name: "streaming_category",
121
+ short: "",
122
+ description: "Provides the value of 'streaming_category' in body",
123
+ optional: false,
124
+ args: ["streaming_category"],
125
+ defaults: [""]
126
+ },
127
+ {
128
+ name: "streaming_field",
129
+ short: "",
130
+ description: "Provides the value of 'streaming_field' in body",
131
+ optional: false,
132
+ args: ["streaming_field"],
133
+ defaults: [""]
134
+ },
135
+ {
136
+ name: "streaming_tag",
137
+ short: "",
138
+ description: "Provides the value of 'streaming_tag' in body",
139
+ optional: false,
140
+ args: ["streaming_tag"],
141
+ defaults: [""]
118
142
  }
119
143
  ]);
120
144
  }
@@ -139,7 +163,10 @@ export class StreamingCreateCommand extends BaseFinalCommand
139
163
  connect_type: this.option_values.connect_type,
140
164
  connect_server_id: this.option_values.connect_server_id,
141
165
  connect_kubernetes_id: this.option_values.connect_kubernetes_id,
142
- description: this.option_values.description
166
+ description: this.option_values.description,
167
+ streaming_category: this.option_values.streaming_category,
168
+ streaming_field: this.option_values.streaming_field,
169
+ streaming_tag: this.option_values.streaming_tag
143
170
  });
144
171
  this.app.logger.success(JSON.stringify(ans));
145
172
  }
@@ -115,6 +115,30 @@ export class StreamingUpdateCommand extends BaseFinalCommand
115
115
  optional: false,
116
116
  args: ["description"],
117
117
  defaults: [""]
118
+ },
119
+ {
120
+ name: "streaming_category",
121
+ short: "",
122
+ description: "Provides the value of 'streaming_category' in body",
123
+ optional: false,
124
+ args: ["streaming_category"],
125
+ defaults: [""]
126
+ },
127
+ {
128
+ name: "streaming_field",
129
+ short: "",
130
+ description: "Provides the value of 'streaming_field' in body",
131
+ optional: false,
132
+ args: ["streaming_field"],
133
+ defaults: [""]
134
+ },
135
+ {
136
+ name: "streaming_tag",
137
+ short: "",
138
+ description: "Provides the value of 'streaming_tag' in body",
139
+ optional: false,
140
+ args: ["streaming_tag"],
141
+ defaults: [""]
118
142
  }
119
143
  ]);
120
144
  }
@@ -139,7 +163,10 @@ export class StreamingUpdateCommand extends BaseFinalCommand
139
163
  connect_type: this.option_values.connect_type,
140
164
  connect_server_id: this.option_values.connect_server_id,
141
165
  connect_kubernetes_id: this.option_values.connect_kubernetes_id,
142
- description: this.option_values.description
166
+ description: this.option_values.description,
167
+ streaming_category: this.option_values.streaming_category,
168
+ streaming_field: this.option_values.streaming_field,
169
+ streaming_tag: this.option_values.streaming_tag
143
170
  });
144
171
  this.app.logger.success(JSON.stringify(ans));
145
172
  }
@@ -20,6 +20,9 @@
20
20
 
21
21
  import { CacheConnectType } from "../enum/CacheConnectType";
22
22
  import { CacheType } from "../enum/CacheType";
23
+ import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
24
+ import { EntityFieldInputRow } from "./EntityFieldInputRow";
25
+ import { EntityTagInputRow } from "./EntityTagInputRow";
23
26
 
24
27
  export type CacheInputRow =
25
28
  {
@@ -34,4 +37,7 @@ export type CacheInputRow =
34
37
  connect_server_id: (string | null);
35
38
  connect_kubernetes_id: (string | null);
36
39
  description: string;
40
+ cache_category: (EntityCategoryInputRow | null)[];
41
+ cache_field: (EntityFieldInputRow | null)[];
42
+ cache_tag: (EntityTagInputRow | null)[];
37
43
  }
@@ -19,6 +19,9 @@
19
19
  /****************************************************************/
20
20
 
21
21
  import { CloudType } from "../enum/CloudType";
22
+ import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
23
+ import { EntityFieldInputRow } from "./EntityFieldInputRow";
24
+ import { EntityTagInputRow } from "./EntityTagInputRow";
22
25
 
23
26
  export type CloudInputRow =
24
27
  {
@@ -27,4 +30,7 @@ export type CloudInputRow =
27
30
  name: string;
28
31
  type: CloudType;
29
32
  description: string;
33
+ cloud_category: (EntityCategoryInputRow | null)[];
34
+ cloud_field: (EntityFieldInputRow | null)[];
35
+ cloud_tag: (EntityTagInputRow | null)[];
30
36
  }
@@ -20,6 +20,9 @@
20
20
 
21
21
  import { DatabaseConnectType } from "../enum/DatabaseConnectType";
22
22
  import { DatabaseType } from "../enum/DatabaseType";
23
+ import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
24
+ import { EntityFieldInputRow } from "./EntityFieldInputRow";
25
+ import { EntityTagInputRow } from "./EntityTagInputRow";
23
26
 
24
27
  export type DatabaseInputRow =
25
28
  {
@@ -34,4 +37,7 @@ export type DatabaseInputRow =
34
37
  connect_server_id: (string | null);
35
38
  connect_kubernetes_id: (string | null);
36
39
  description: string;
40
+ database_category: (EntityCategoryInputRow | null)[];
41
+ database_field: (EntityFieldInputRow | null)[];
42
+ database_tag: (EntityTagInputRow | null)[];
37
43
  }
@@ -19,6 +19,9 @@
19
19
  /****************************************************************/
20
20
 
21
21
  import { DockerCloud } from "../enum/DockerCloud";
22
+ import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
23
+ import { EntityFieldInputRow } from "./EntityFieldInputRow";
24
+ import { EntityTagInputRow } from "./EntityTagInputRow";
22
25
 
23
26
  export type DockerInputRow =
24
27
  {
@@ -30,4 +33,7 @@ export type DockerInputRow =
30
33
  name: string;
31
34
  cloud: DockerCloud;
32
35
  description: string;
36
+ docker_category: (EntityCategoryInputRow | null)[];
37
+ docker_field: (EntityFieldInputRow | null)[];
38
+ docker_tag: (EntityTagInputRow | null)[];
33
39
  }
@@ -18,10 +18,17 @@
18
18
  /* */
19
19
  /****************************************************************/
20
20
 
21
+ import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
22
+ import { EntityFieldInputRow } from "./EntityFieldInputRow";
23
+ import { EntityTagInputRow } from "./EntityTagInputRow";
24
+
21
25
  export type EnvironmentInputRow =
22
26
  {
23
27
  workspace_id: (string | null);
24
28
  project_id: string;
25
29
  name: string;
26
30
  description: (string | null);
31
+ environment_category: (EntityCategoryInputRow | null)[];
32
+ environment_field: (EntityFieldInputRow | null)[];
33
+ environment_tag: (EntityTagInputRow | null)[];
27
34
  }
@@ -18,6 +18,9 @@
18
18
  /* */
19
19
  /****************************************************************/
20
20
 
21
+ import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
22
+ import { EntityFieldInputRow } from "./EntityFieldInputRow";
23
+ import { EntityTagInputRow } from "./EntityTagInputRow";
21
24
  import { KubernetesCloud } from "../enum/KubernetesCloud";
22
25
 
23
26
  export type KubernetesInputRow =
@@ -30,4 +33,7 @@ export type KubernetesInputRow =
30
33
  name: string;
31
34
  cloud: KubernetesCloud;
32
35
  description: string;
36
+ kubernetes_category: (EntityCategoryInputRow | null)[];
37
+ kubernetes_field: (EntityFieldInputRow | null)[];
38
+ kubernetes_tag: (EntityTagInputRow | null)[];
33
39
  }
@@ -18,6 +18,9 @@
18
18
  /* */
19
19
  /****************************************************************/
20
20
 
21
+ import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
22
+ import { EntityFieldInputRow } from "./EntityFieldInputRow";
23
+ import { EntityTagInputRow } from "./EntityTagInputRow";
21
24
  import { MessagingConnectType } from "../enum/MessagingConnectType";
22
25
  import { MessagingType } from "../enum/MessagingType";
23
26
 
@@ -34,4 +37,7 @@ export type MessagingInputRow =
34
37
  connect_server_id: (string | null);
35
38
  connect_kubernetes_id: (string | null);
36
39
  description: string;
40
+ messaging_category: (EntityCategoryInputRow | null)[];
41
+ messaging_field: (EntityFieldInputRow | null)[];
42
+ messaging_tag: (EntityTagInputRow | null)[];
37
43
  }
@@ -18,6 +18,9 @@
18
18
  /* */
19
19
  /****************************************************************/
20
20
 
21
+ import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
22
+ import { EntityFieldInputRow } from "./EntityFieldInputRow";
23
+ import { EntityTagInputRow } from "./EntityTagInputRow";
21
24
  import { MetricCallerType } from "../enum/MetricCallerType";
22
25
 
23
26
  export type MetricInputRow =
@@ -32,4 +35,7 @@ export type MetricInputRow =
32
35
  url: string;
33
36
  interval_scheduler_id: string;
34
37
  description: string;
38
+ metric_category: (EntityCategoryInputRow | null)[];
39
+ metric_field: (EntityFieldInputRow | null)[];
40
+ metric_tag: (EntityTagInputRow | null)[];
35
41
  }
@@ -18,6 +18,9 @@
18
18
  /* */
19
19
  /****************************************************************/
20
20
 
21
+ import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
22
+ import { EntityFieldInputRow } from "./EntityFieldInputRow";
23
+ import { EntityTagInputRow } from "./EntityTagInputRow";
21
24
  import { MonitorCallerType } from "../enum/MonitorCallerType";
22
25
  import { MonitorDockerContainerConnectionType } from "../enum/MonitorDockerContainerConnectionType";
23
26
  import { MonitorHTTPBodyEncoding } from "../enum/MonitorHTTPBodyEncoding";
@@ -65,4 +68,7 @@ export type MonitorInputRow =
65
68
  kubernetes_pod_controller_type: (MonitorKubernetesPodControllerType | null);
66
69
  kubernetes_pod_controller_name: (string | null);
67
70
  description: (string | null);
71
+ monitor_category: (EntityCategoryInputRow | null)[];
72
+ monitor_field: (EntityFieldInputRow | null)[];
73
+ monitor_tag: (EntityTagInputRow | null)[];
68
74
  }
@@ -18,9 +18,16 @@
18
18
  /* */
19
19
  /****************************************************************/
20
20
 
21
+ import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
22
+ import { EntityFieldInputRow } from "./EntityFieldInputRow";
23
+ import { EntityTagInputRow } from "./EntityTagInputRow";
24
+
21
25
  export type ProjectInputRow =
22
26
  {
23
27
  workspace_id: (string | null);
24
28
  name: string;
25
29
  description: (string | null);
30
+ project_category: (EntityCategoryInputRow | null)[];
31
+ project_field: (EntityFieldInputRow | null)[];
32
+ project_tag: (EntityTagInputRow | null)[];
26
33
  }
@@ -18,6 +18,9 @@
18
18
  /* */
19
19
  /****************************************************************/
20
20
 
21
+ import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
22
+ import { EntityFieldInputRow } from "./EntityFieldInputRow";
23
+ import { EntityTagInputRow } from "./EntityTagInputRow";
21
24
  import { ServerCloud } from "../enum/ServerCloud";
22
25
  import { ServerMetricRetentionUnit } from "../enum/ServerMetricRetentionUnit";
23
26
 
@@ -32,4 +35,7 @@ export type ServerInputRow =
32
35
  metric_retention_unit: ServerMetricRetentionUnit;
33
36
  metric_retention_value: number;
34
37
  description: string;
38
+ server_category: (EntityCategoryInputRow | null)[];
39
+ server_field: (EntityFieldInputRow | null)[];
40
+ server_tag: (EntityTagInputRow | null)[];
35
41
  }
@@ -18,6 +18,9 @@
18
18
  /* */
19
19
  /****************************************************************/
20
20
 
21
+ import { EntityCategoryInputRow } from "./EntityCategoryInputRow";
22
+ import { EntityFieldInputRow } from "./EntityFieldInputRow";
23
+ import { EntityTagInputRow } from "./EntityTagInputRow";
21
24
  import { StreamingConnectType } from "../enum/StreamingConnectType";
22
25
  import { StreamingType } from "../enum/StreamingType";
23
26
 
@@ -34,4 +37,7 @@ export type StreamingInputRow =
34
37
  connect_server_id: (string | null);
35
38
  connect_kubernetes_id: (string | null);
36
39
  description: string;
40
+ streaming_category: (EntityCategoryInputRow | null)[];
41
+ streaming_field: (EntityFieldInputRow | null)[];
42
+ streaming_tag: (EntityTagInputRow | null)[];
37
43
  }