namirasoft-infra 1.4.19 → 1.4.20
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/dist/NamirasoftInfraServer.js +1 -1
- package/dist/command/KubernetesSetProfileCommand.js +48 -48
- package/dist/command/KubernetesSetProfileCommand.js.map +1 -1
- package/dist/meta/CacheMetaTable.js +1 -1
- package/dist/meta/DockerMetaTable.js +1 -1
- package/dist/meta/KubernetesMetaTable.js +48 -48
- package/dist/meta/KubernetesMetaTable.js.map +1 -1
- package/dist/meta/MessagingMetaTable.js +1 -1
- package/dist/row/KubernetesInputMetaProfileRow.d.ts +48 -48
- package/dist/row/KubernetesRow.d.ts +48 -48
- package/package.json +3 -3
- package/src/NamirasoftInfraServer.ts +1 -1
- package/src/command/KubernetesSetProfileCommand.ts +48 -48
- package/src/meta/CacheMetaTable.ts +1 -1
- package/src/meta/DockerMetaTable.ts +1 -1
- package/src/meta/KubernetesMetaTable.ts +48 -48
- package/src/meta/MessagingMetaTable.ts +1 -1
- package/src/row/KubernetesInputMetaProfileRow.ts +48 -48
- package/src/row/KubernetesRow.ts +48 -48
|
@@ -61,7 +61,7 @@ const NamirasoftInfraServerStreamingTag_1 = require("./NamirasoftInfraServerStre
|
|
|
61
61
|
const NamirasoftInfraServerValue_1 = require("./NamirasoftInfraServerValue");
|
|
62
62
|
class NamirasoftInfraServer extends namirasoft_account_1.NSABaseServer {
|
|
63
63
|
constructor(base_url, token_manager, onError) {
|
|
64
|
-
super(base_url, `1.4.
|
|
64
|
+
super(base_url, `1.4.20`, token_manager, onError);
|
|
65
65
|
this.healthz = new NamirasoftInfraServerHealthz_1.NamirasoftInfraServerHealthz(this);
|
|
66
66
|
this.health = new NamirasoftInfraServerHealth_1.NamirasoftInfraServerHealth(this);
|
|
67
67
|
this.metrics = new NamirasoftInfraServerMetrics_1.NamirasoftInfraServerMetrics(this);
|
|
@@ -21,7 +21,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
21
21
|
name: "meta_profile_cluster_id",
|
|
22
22
|
short: "",
|
|
23
23
|
description: "Provides the value of 'meta_profile_cluster_id' in body",
|
|
24
|
-
optional:
|
|
24
|
+
optional: true,
|
|
25
25
|
args: ["meta_profile_cluster_id"],
|
|
26
26
|
defaults: [""]
|
|
27
27
|
},
|
|
@@ -29,7 +29,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
29
29
|
name: "meta_profile_cluster_name",
|
|
30
30
|
short: "",
|
|
31
31
|
description: "Provides the value of 'meta_profile_cluster_name' in body",
|
|
32
|
-
optional:
|
|
32
|
+
optional: true,
|
|
33
33
|
args: ["meta_profile_cluster_name"],
|
|
34
34
|
defaults: [""]
|
|
35
35
|
},
|
|
@@ -37,7 +37,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
37
37
|
name: "meta_profile_cluster_version",
|
|
38
38
|
short: "",
|
|
39
39
|
description: "Provides the value of 'meta_profile_cluster_version' in body",
|
|
40
|
-
optional:
|
|
40
|
+
optional: true,
|
|
41
41
|
args: ["meta_profile_cluster_version"],
|
|
42
42
|
defaults: [""]
|
|
43
43
|
},
|
|
@@ -45,7 +45,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
45
45
|
name: "meta_profile_node_count",
|
|
46
46
|
short: "",
|
|
47
47
|
description: "Provides the value of 'meta_profile_node_count' in body",
|
|
48
|
-
optional:
|
|
48
|
+
optional: true,
|
|
49
49
|
args: ["meta_profile_node_count"],
|
|
50
50
|
defaults: [""]
|
|
51
51
|
},
|
|
@@ -53,7 +53,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
53
53
|
name: "meta_profile_node_count_ready",
|
|
54
54
|
short: "",
|
|
55
55
|
description: "Provides the value of 'meta_profile_node_count_ready' in body",
|
|
56
|
-
optional:
|
|
56
|
+
optional: true,
|
|
57
57
|
args: ["meta_profile_node_count_ready"],
|
|
58
58
|
defaults: [""]
|
|
59
59
|
},
|
|
@@ -61,7 +61,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
61
61
|
name: "meta_profile_node_count_not_ready",
|
|
62
62
|
short: "",
|
|
63
63
|
description: "Provides the value of 'meta_profile_node_count_not_ready' in body",
|
|
64
|
-
optional:
|
|
64
|
+
optional: true,
|
|
65
65
|
args: ["meta_profile_node_count_not_ready"],
|
|
66
66
|
defaults: [""]
|
|
67
67
|
},
|
|
@@ -69,7 +69,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
69
69
|
name: "meta_profile_node_count_master",
|
|
70
70
|
short: "",
|
|
71
71
|
description: "Provides the value of 'meta_profile_node_count_master' in body",
|
|
72
|
-
optional:
|
|
72
|
+
optional: true,
|
|
73
73
|
args: ["meta_profile_node_count_master"],
|
|
74
74
|
defaults: [""]
|
|
75
75
|
},
|
|
@@ -77,7 +77,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
77
77
|
name: "meta_profile_node_count_worker",
|
|
78
78
|
short: "",
|
|
79
79
|
description: "Provides the value of 'meta_profile_node_count_worker' in body",
|
|
80
|
-
optional:
|
|
80
|
+
optional: true,
|
|
81
81
|
args: ["meta_profile_node_count_worker"],
|
|
82
82
|
defaults: [""]
|
|
83
83
|
},
|
|
@@ -85,7 +85,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
85
85
|
name: "meta_profile_total_cpu",
|
|
86
86
|
short: "",
|
|
87
87
|
description: "Provides the value of 'meta_profile_total_cpu' in body",
|
|
88
|
-
optional:
|
|
88
|
+
optional: true,
|
|
89
89
|
args: ["meta_profile_total_cpu"],
|
|
90
90
|
defaults: [""]
|
|
91
91
|
},
|
|
@@ -93,7 +93,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
93
93
|
name: "meta_profile_total_gpu",
|
|
94
94
|
short: "",
|
|
95
95
|
description: "Provides the value of 'meta_profile_total_gpu' in body",
|
|
96
|
-
optional:
|
|
96
|
+
optional: true,
|
|
97
97
|
args: ["meta_profile_total_gpu"],
|
|
98
98
|
defaults: [""]
|
|
99
99
|
},
|
|
@@ -101,7 +101,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
101
101
|
name: "meta_profile_total_memory",
|
|
102
102
|
short: "",
|
|
103
103
|
description: "Provides the value of 'meta_profile_total_memory' in body",
|
|
104
|
-
optional:
|
|
104
|
+
optional: true,
|
|
105
105
|
args: ["meta_profile_total_memory"],
|
|
106
106
|
defaults: [""]
|
|
107
107
|
},
|
|
@@ -109,7 +109,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
109
109
|
name: "meta_profile_total_disk",
|
|
110
110
|
short: "",
|
|
111
111
|
description: "Provides the value of 'meta_profile_total_disk' in body",
|
|
112
|
-
optional:
|
|
112
|
+
optional: true,
|
|
113
113
|
args: ["meta_profile_total_disk"],
|
|
114
114
|
defaults: [""]
|
|
115
115
|
},
|
|
@@ -117,7 +117,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
117
117
|
name: "meta_profile_total_pod_capacity",
|
|
118
118
|
short: "",
|
|
119
119
|
description: "Provides the value of 'meta_profile_total_pod_capacity' in body",
|
|
120
|
-
optional:
|
|
120
|
+
optional: true,
|
|
121
121
|
args: ["meta_profile_total_pod_capacity"],
|
|
122
122
|
defaults: [""]
|
|
123
123
|
},
|
|
@@ -125,7 +125,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
125
125
|
name: "meta_profile_usage_cpu",
|
|
126
126
|
short: "",
|
|
127
127
|
description: "Provides the value of 'meta_profile_usage_cpu' in body",
|
|
128
|
-
optional:
|
|
128
|
+
optional: true,
|
|
129
129
|
args: ["meta_profile_usage_cpu"],
|
|
130
130
|
defaults: [""]
|
|
131
131
|
},
|
|
@@ -133,7 +133,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
133
133
|
name: "meta_profile_usage_gpu",
|
|
134
134
|
short: "",
|
|
135
135
|
description: "Provides the value of 'meta_profile_usage_gpu' in body",
|
|
136
|
-
optional:
|
|
136
|
+
optional: true,
|
|
137
137
|
args: ["meta_profile_usage_gpu"],
|
|
138
138
|
defaults: [""]
|
|
139
139
|
},
|
|
@@ -141,7 +141,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
141
141
|
name: "meta_profile_usage_memory",
|
|
142
142
|
short: "",
|
|
143
143
|
description: "Provides the value of 'meta_profile_usage_memory' in body",
|
|
144
|
-
optional:
|
|
144
|
+
optional: true,
|
|
145
145
|
args: ["meta_profile_usage_memory"],
|
|
146
146
|
defaults: [""]
|
|
147
147
|
},
|
|
@@ -149,7 +149,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
149
149
|
name: "meta_profile_usage_disk",
|
|
150
150
|
short: "",
|
|
151
151
|
description: "Provides the value of 'meta_profile_usage_disk' in body",
|
|
152
|
-
optional:
|
|
152
|
+
optional: true,
|
|
153
153
|
args: ["meta_profile_usage_disk"],
|
|
154
154
|
defaults: [""]
|
|
155
155
|
},
|
|
@@ -157,7 +157,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
157
157
|
name: "meta_profile_requested_cpu",
|
|
158
158
|
short: "",
|
|
159
159
|
description: "Provides the value of 'meta_profile_requested_cpu' in body",
|
|
160
|
-
optional:
|
|
160
|
+
optional: true,
|
|
161
161
|
args: ["meta_profile_requested_cpu"],
|
|
162
162
|
defaults: [""]
|
|
163
163
|
},
|
|
@@ -165,7 +165,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
165
165
|
name: "meta_profile_requested_gpu",
|
|
166
166
|
short: "",
|
|
167
167
|
description: "Provides the value of 'meta_profile_requested_gpu' in body",
|
|
168
|
-
optional:
|
|
168
|
+
optional: true,
|
|
169
169
|
args: ["meta_profile_requested_gpu"],
|
|
170
170
|
defaults: [""]
|
|
171
171
|
},
|
|
@@ -173,7 +173,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
173
173
|
name: "meta_profile_requested_memory",
|
|
174
174
|
short: "",
|
|
175
175
|
description: "Provides the value of 'meta_profile_requested_memory' in body",
|
|
176
|
-
optional:
|
|
176
|
+
optional: true,
|
|
177
177
|
args: ["meta_profile_requested_memory"],
|
|
178
178
|
defaults: [""]
|
|
179
179
|
},
|
|
@@ -181,7 +181,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
181
181
|
name: "meta_profile_requested_disk",
|
|
182
182
|
short: "",
|
|
183
183
|
description: "Provides the value of 'meta_profile_requested_disk' in body",
|
|
184
|
-
optional:
|
|
184
|
+
optional: true,
|
|
185
185
|
args: ["meta_profile_requested_disk"],
|
|
186
186
|
defaults: [""]
|
|
187
187
|
},
|
|
@@ -189,7 +189,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
189
189
|
name: "meta_profile_limit_cpu",
|
|
190
190
|
short: "",
|
|
191
191
|
description: "Provides the value of 'meta_profile_limit_cpu' in body",
|
|
192
|
-
optional:
|
|
192
|
+
optional: true,
|
|
193
193
|
args: ["meta_profile_limit_cpu"],
|
|
194
194
|
defaults: [""]
|
|
195
195
|
},
|
|
@@ -197,7 +197,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
197
197
|
name: "meta_profile_limit_memory",
|
|
198
198
|
short: "",
|
|
199
199
|
description: "Provides the value of 'meta_profile_limit_memory' in body",
|
|
200
|
-
optional:
|
|
200
|
+
optional: true,
|
|
201
201
|
args: ["meta_profile_limit_memory"],
|
|
202
202
|
defaults: [""]
|
|
203
203
|
},
|
|
@@ -205,7 +205,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
205
205
|
name: "meta_profile_limit_gpu",
|
|
206
206
|
short: "",
|
|
207
207
|
description: "Provides the value of 'meta_profile_limit_gpu' in body",
|
|
208
|
-
optional:
|
|
208
|
+
optional: true,
|
|
209
209
|
args: ["meta_profile_limit_gpu"],
|
|
210
210
|
defaults: [""]
|
|
211
211
|
},
|
|
@@ -213,7 +213,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
213
213
|
name: "meta_profile_request_ratio_cpu",
|
|
214
214
|
short: "",
|
|
215
215
|
description: "Provides the value of 'meta_profile_request_ratio_cpu' in body",
|
|
216
|
-
optional:
|
|
216
|
+
optional: true,
|
|
217
217
|
args: ["meta_profile_request_ratio_cpu"],
|
|
218
218
|
defaults: [""]
|
|
219
219
|
},
|
|
@@ -221,7 +221,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
221
221
|
name: "meta_profile_request_ratio_gpu",
|
|
222
222
|
short: "",
|
|
223
223
|
description: "Provides the value of 'meta_profile_request_ratio_gpu' in body",
|
|
224
|
-
optional:
|
|
224
|
+
optional: true,
|
|
225
225
|
args: ["meta_profile_request_ratio_gpu"],
|
|
226
226
|
defaults: [""]
|
|
227
227
|
},
|
|
@@ -229,7 +229,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
229
229
|
name: "meta_profile_request_ratio_memory",
|
|
230
230
|
short: "",
|
|
231
231
|
description: "Provides the value of 'meta_profile_request_ratio_memory' in body",
|
|
232
|
-
optional:
|
|
232
|
+
optional: true,
|
|
233
233
|
args: ["meta_profile_request_ratio_memory"],
|
|
234
234
|
defaults: [""]
|
|
235
235
|
},
|
|
@@ -237,7 +237,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
237
237
|
name: "meta_profile_request_ratio_disk",
|
|
238
238
|
short: "",
|
|
239
239
|
description: "Provides the value of 'meta_profile_request_ratio_disk' in body",
|
|
240
|
-
optional:
|
|
240
|
+
optional: true,
|
|
241
241
|
args: ["meta_profile_request_ratio_disk"],
|
|
242
242
|
defaults: [""]
|
|
243
243
|
},
|
|
@@ -245,7 +245,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
245
245
|
name: "meta_profile_usage_ratio_cpu",
|
|
246
246
|
short: "",
|
|
247
247
|
description: "Provides the value of 'meta_profile_usage_ratio_cpu' in body",
|
|
248
|
-
optional:
|
|
248
|
+
optional: true,
|
|
249
249
|
args: ["meta_profile_usage_ratio_cpu"],
|
|
250
250
|
defaults: [""]
|
|
251
251
|
},
|
|
@@ -253,7 +253,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
253
253
|
name: "meta_profile_usage_ratio_gpu",
|
|
254
254
|
short: "",
|
|
255
255
|
description: "Provides the value of 'meta_profile_usage_ratio_gpu' in body",
|
|
256
|
-
optional:
|
|
256
|
+
optional: true,
|
|
257
257
|
args: ["meta_profile_usage_ratio_gpu"],
|
|
258
258
|
defaults: [""]
|
|
259
259
|
},
|
|
@@ -261,7 +261,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
261
261
|
name: "meta_profile_usage_ratio_memory",
|
|
262
262
|
short: "",
|
|
263
263
|
description: "Provides the value of 'meta_profile_usage_ratio_memory' in body",
|
|
264
|
-
optional:
|
|
264
|
+
optional: true,
|
|
265
265
|
args: ["meta_profile_usage_ratio_memory"],
|
|
266
266
|
defaults: [""]
|
|
267
267
|
},
|
|
@@ -269,7 +269,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
269
269
|
name: "meta_profile_count_namespace",
|
|
270
270
|
short: "",
|
|
271
271
|
description: "Provides the value of 'meta_profile_count_namespace' in body",
|
|
272
|
-
optional:
|
|
272
|
+
optional: true,
|
|
273
273
|
args: ["meta_profile_count_namespace"],
|
|
274
274
|
defaults: [""]
|
|
275
275
|
},
|
|
@@ -277,7 +277,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
277
277
|
name: "meta_profile_count_storage_classes",
|
|
278
278
|
short: "",
|
|
279
279
|
description: "Provides the value of 'meta_profile_count_storage_classes' in body",
|
|
280
|
-
optional:
|
|
280
|
+
optional: true,
|
|
281
281
|
args: ["meta_profile_count_storage_classes"],
|
|
282
282
|
defaults: [""]
|
|
283
283
|
},
|
|
@@ -285,7 +285,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
285
285
|
name: "meta_profile_count_pv",
|
|
286
286
|
short: "",
|
|
287
287
|
description: "Provides the value of 'meta_profile_count_pv' in body",
|
|
288
|
-
optional:
|
|
288
|
+
optional: true,
|
|
289
289
|
args: ["meta_profile_count_pv"],
|
|
290
290
|
defaults: [""]
|
|
291
291
|
},
|
|
@@ -293,7 +293,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
293
293
|
name: "meta_profile_count_pvc",
|
|
294
294
|
short: "",
|
|
295
295
|
description: "Provides the value of 'meta_profile_count_pvc' in body",
|
|
296
|
-
optional:
|
|
296
|
+
optional: true,
|
|
297
297
|
args: ["meta_profile_count_pvc"],
|
|
298
298
|
defaults: [""]
|
|
299
299
|
},
|
|
@@ -301,7 +301,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
301
301
|
name: "meta_profile_count_pod",
|
|
302
302
|
short: "",
|
|
303
303
|
description: "Provides the value of 'meta_profile_count_pod' in body",
|
|
304
|
-
optional:
|
|
304
|
+
optional: true,
|
|
305
305
|
args: ["meta_profile_count_pod"],
|
|
306
306
|
defaults: [""]
|
|
307
307
|
},
|
|
@@ -309,7 +309,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
309
309
|
name: "meta_profile_count_pod_running",
|
|
310
310
|
short: "",
|
|
311
311
|
description: "Provides the value of 'meta_profile_count_pod_running' in body",
|
|
312
|
-
optional:
|
|
312
|
+
optional: true,
|
|
313
313
|
args: ["meta_profile_count_pod_running"],
|
|
314
314
|
defaults: [""]
|
|
315
315
|
},
|
|
@@ -317,7 +317,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
317
317
|
name: "meta_profile_count_deployment",
|
|
318
318
|
short: "",
|
|
319
319
|
description: "Provides the value of 'meta_profile_count_deployment' in body",
|
|
320
|
-
optional:
|
|
320
|
+
optional: true,
|
|
321
321
|
args: ["meta_profile_count_deployment"],
|
|
322
322
|
defaults: [""]
|
|
323
323
|
},
|
|
@@ -325,7 +325,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
325
325
|
name: "meta_profile_count_statefulset",
|
|
326
326
|
short: "",
|
|
327
327
|
description: "Provides the value of 'meta_profile_count_statefulset' in body",
|
|
328
|
-
optional:
|
|
328
|
+
optional: true,
|
|
329
329
|
args: ["meta_profile_count_statefulset"],
|
|
330
330
|
defaults: [""]
|
|
331
331
|
},
|
|
@@ -333,7 +333,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
333
333
|
name: "meta_profile_count_daemonset",
|
|
334
334
|
short: "",
|
|
335
335
|
description: "Provides the value of 'meta_profile_count_daemonset' in body",
|
|
336
|
-
optional:
|
|
336
|
+
optional: true,
|
|
337
337
|
args: ["meta_profile_count_daemonset"],
|
|
338
338
|
defaults: [""]
|
|
339
339
|
},
|
|
@@ -341,7 +341,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
341
341
|
name: "meta_profile_count_job",
|
|
342
342
|
short: "",
|
|
343
343
|
description: "Provides the value of 'meta_profile_count_job' in body",
|
|
344
|
-
optional:
|
|
344
|
+
optional: true,
|
|
345
345
|
args: ["meta_profile_count_job"],
|
|
346
346
|
defaults: [""]
|
|
347
347
|
},
|
|
@@ -349,7 +349,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
349
349
|
name: "meta_profile_count_cronjob",
|
|
350
350
|
short: "",
|
|
351
351
|
description: "Provides the value of 'meta_profile_count_cronjob' in body",
|
|
352
|
-
optional:
|
|
352
|
+
optional: true,
|
|
353
353
|
args: ["meta_profile_count_cronjob"],
|
|
354
354
|
defaults: [""]
|
|
355
355
|
},
|
|
@@ -357,7 +357,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
357
357
|
name: "meta_profile_count_service",
|
|
358
358
|
short: "",
|
|
359
359
|
description: "Provides the value of 'meta_profile_count_service' in body",
|
|
360
|
-
optional:
|
|
360
|
+
optional: true,
|
|
361
361
|
args: ["meta_profile_count_service"],
|
|
362
362
|
defaults: [""]
|
|
363
363
|
},
|
|
@@ -365,7 +365,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
365
365
|
name: "meta_profile_count_ingress",
|
|
366
366
|
short: "",
|
|
367
367
|
description: "Provides the value of 'meta_profile_count_ingress' in body",
|
|
368
|
-
optional:
|
|
368
|
+
optional: true,
|
|
369
369
|
args: ["meta_profile_count_ingress"],
|
|
370
370
|
defaults: [""]
|
|
371
371
|
},
|
|
@@ -373,7 +373,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
373
373
|
name: "meta_profile_count_loadbalancer",
|
|
374
374
|
short: "",
|
|
375
375
|
description: "Provides the value of 'meta_profile_count_loadbalancer' in body",
|
|
376
|
-
optional:
|
|
376
|
+
optional: true,
|
|
377
377
|
args: ["meta_profile_count_loadbalancer"],
|
|
378
378
|
defaults: [""]
|
|
379
379
|
},
|
|
@@ -381,7 +381,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
381
381
|
name: "meta_profile_count_network_policy",
|
|
382
382
|
short: "",
|
|
383
383
|
description: "Provides the value of 'meta_profile_count_network_policy' in body",
|
|
384
|
-
optional:
|
|
384
|
+
optional: true,
|
|
385
385
|
args: ["meta_profile_count_network_policy"],
|
|
386
386
|
defaults: [""]
|
|
387
387
|
},
|
|
@@ -389,7 +389,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
389
389
|
name: "meta_profile_count_secret",
|
|
390
390
|
short: "",
|
|
391
391
|
description: "Provides the value of 'meta_profile_count_secret' in body",
|
|
392
|
-
optional:
|
|
392
|
+
optional: true,
|
|
393
393
|
args: ["meta_profile_count_secret"],
|
|
394
394
|
defaults: [""]
|
|
395
395
|
},
|
|
@@ -397,7 +397,7 @@ class KubernetesSetProfileCommand extends namirasoft_node_cli_1.BaseFinalCommand
|
|
|
397
397
|
name: "meta_profile_count_config",
|
|
398
398
|
short: "",
|
|
399
399
|
description: "Provides the value of 'meta_profile_count_config' in body",
|
|
400
|
-
optional:
|
|
400
|
+
optional: true,
|
|
401
401
|
args: ["meta_profile_count_config"],
|
|
402
402
|
defaults: [""]
|
|
403
403
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KubernetesSetProfileCommand.js","sourceRoot":"","sources":["../../src/command/KubernetesSetProfileCommand.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"KubernetesSetProfileCommand.js","sourceRoot":"","sources":["../../src/command/KubernetesSetProfileCommand.ts"],"names":[],"mappings":"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"}
|
|
@@ -14,7 +14,7 @@ const namirasoft_core_1 = require("namirasoft-core");
|
|
|
14
14
|
const namirasoft_site_1 = require("namirasoft-site");
|
|
15
15
|
class CacheMetaTable extends namirasoft_site_1.NSBaseMetaTable {
|
|
16
16
|
constructor(database) {
|
|
17
|
-
super(database, "cache", "Cache", new namirasoft_core_1.BaseUUID("ifr-
|
|
17
|
+
super(database, "cache", "Cache", new namirasoft_core_1.BaseUUID("ifr-cch"));
|
|
18
18
|
this.columns = {
|
|
19
19
|
id: new namirasoft_core_1.BaseMetaColumn(this, "id", "ID", "String", true),
|
|
20
20
|
user_id: new namirasoft_core_1.BaseMetaColumn(this, "user_id", "User ID", "String", true),
|
|
@@ -14,7 +14,7 @@ const namirasoft_core_1 = require("namirasoft-core");
|
|
|
14
14
|
const namirasoft_site_1 = require("namirasoft-site");
|
|
15
15
|
class DockerMetaTable extends namirasoft_site_1.NSBaseMetaTable {
|
|
16
16
|
constructor(database) {
|
|
17
|
-
super(database, "docker", "Docker", new namirasoft_core_1.BaseUUID("ifr-
|
|
17
|
+
super(database, "docker", "Docker", new namirasoft_core_1.BaseUUID("ifr-dkr"));
|
|
18
18
|
this.columns = {
|
|
19
19
|
id: new namirasoft_core_1.BaseMetaColumn(this, "id", "ID", "String", true),
|
|
20
20
|
user_id: new namirasoft_core_1.BaseMetaColumn(this, "user_id", "User ID", "String", true),
|
|
@@ -55,54 +55,54 @@ class KubernetesMetaTable extends namirasoft_site_1.NSBaseMetaTable {
|
|
|
55
55
|
name: new namirasoft_core_1.BaseMetaColumn(this, "name", "Name", "String", true),
|
|
56
56
|
cloud: new namirasoft_core_1.BaseMetaColumn(this, "cloud", "Cloud", "Enum", true),
|
|
57
57
|
description: new namirasoft_core_1.BaseMetaColumn(this, "description", "Description", "String", true),
|
|
58
|
-
meta_profile_cluster_id: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_cluster_id", "Meta Profile Cluster ID", "String",
|
|
59
|
-
meta_profile_cluster_name: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_cluster_name", "Meta Profile Cluster Name", "String",
|
|
60
|
-
meta_profile_cluster_version: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_cluster_version", "Meta Profile Cluster Version", "String",
|
|
61
|
-
meta_profile_node_count: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_node_count", "Meta Profile Node Count", "String",
|
|
62
|
-
meta_profile_node_count_ready: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_node_count_ready", "Meta Profile Node Count Ready", "String",
|
|
63
|
-
meta_profile_node_count_not_ready: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_node_count_not_ready", "Meta Profile Node Count Not Ready", "String",
|
|
64
|
-
meta_profile_node_count_master: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_node_count_master", "Meta Profile Node Count Master", "String",
|
|
65
|
-
meta_profile_node_count_worker: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_node_count_worker", "Meta Profile Node Count Worker", "String",
|
|
66
|
-
meta_profile_total_cpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_total_cpu", "Meta Profile Total CPU", "String",
|
|
67
|
-
meta_profile_total_gpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_total_gpu", "Meta Profile Total GPU", "String",
|
|
68
|
-
meta_profile_total_memory: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_total_memory", "Meta Profile Total Memory", "String",
|
|
69
|
-
meta_profile_total_disk: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_total_disk", "Meta Profile Total Disk", "String",
|
|
70
|
-
meta_profile_total_pod_capacity: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_total_pod_capacity", "Meta Profile Total Pod Capacity", "String",
|
|
71
|
-
meta_profile_usage_cpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_cpu", "Meta Profile Usage CPU", "String",
|
|
72
|
-
meta_profile_usage_gpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_gpu", "Meta Profile Usage GPU", "String",
|
|
73
|
-
meta_profile_usage_memory: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_memory", "Meta Profile Usage Memory", "String",
|
|
74
|
-
meta_profile_usage_disk: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_disk", "Meta Profile Usage Disk", "String",
|
|
75
|
-
meta_profile_requested_cpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_requested_cpu", "Meta Profile Requested CPU", "String",
|
|
76
|
-
meta_profile_requested_gpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_requested_gpu", "Meta Profile Requested GPU", "String",
|
|
77
|
-
meta_profile_requested_memory: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_requested_memory", "Meta Profile Requested Memory", "String",
|
|
78
|
-
meta_profile_requested_disk: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_requested_disk", "Meta Profile Requested Disk", "String",
|
|
79
|
-
meta_profile_limit_cpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_limit_cpu", "Meta Profile Limit CPU", "String",
|
|
80
|
-
meta_profile_limit_memory: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_limit_memory", "Meta Profile Limit Memory", "String",
|
|
81
|
-
meta_profile_limit_gpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_limit_gpu", "Meta Profile Limit GPU", "String",
|
|
82
|
-
meta_profile_request_ratio_cpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_request_ratio_cpu", "Meta Profile Request Ratio CPU", "String",
|
|
83
|
-
meta_profile_request_ratio_gpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_request_ratio_gpu", "Meta Profile Request Ratio GPU", "String",
|
|
84
|
-
meta_profile_request_ratio_memory: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_request_ratio_memory", "Meta Profile Request Ratio Memory", "String",
|
|
85
|
-
meta_profile_request_ratio_disk: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_request_ratio_disk", "Meta Profile Request Ratio Disk", "String",
|
|
86
|
-
meta_profile_usage_ratio_cpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_ratio_cpu", "Meta Profile Usage Ratio CPU", "String",
|
|
87
|
-
meta_profile_usage_ratio_gpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_ratio_gpu", "Meta Profile Usage Ratio GPU", "String",
|
|
88
|
-
meta_profile_usage_ratio_memory: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_ratio_memory", "Meta Profile Usage Ratio Memory", "String",
|
|
89
|
-
meta_profile_count_namespace: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_namespace", "Meta Profile Count Namespace", "String",
|
|
90
|
-
meta_profile_count_storage_classes: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_storage_classes", "Meta Profile Count Storage Classes", "String",
|
|
91
|
-
meta_profile_count_pv: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_pv", "Meta Profile Count Pv", "String",
|
|
92
|
-
meta_profile_count_pvc: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_pvc", "Meta Profile Count Pvc", "String",
|
|
93
|
-
meta_profile_count_pod: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_pod", "Meta Profile Count Pod", "String",
|
|
94
|
-
meta_profile_count_pod_running: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_pod_running", "Meta Profile Count Pod Running", "String",
|
|
95
|
-
meta_profile_count_deployment: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_deployment", "Meta Profile Count Deployment", "String",
|
|
96
|
-
meta_profile_count_statefulset: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_statefulset", "Meta Profile Count Statefulset", "String",
|
|
97
|
-
meta_profile_count_daemonset: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_daemonset", "Meta Profile Count Daemonset", "String",
|
|
98
|
-
meta_profile_count_job: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_job", "Meta Profile Count Job", "String",
|
|
99
|
-
meta_profile_count_cronjob: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_cronjob", "Meta Profile Count Cronjob", "String",
|
|
100
|
-
meta_profile_count_service: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_service", "Meta Profile Count Service", "String",
|
|
101
|
-
meta_profile_count_ingress: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_ingress", "Meta Profile Count Ingress", "String",
|
|
102
|
-
meta_profile_count_loadbalancer: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_loadbalancer", "Meta Profile Count Loadbalancer", "String",
|
|
103
|
-
meta_profile_count_network_policy: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_network_policy", "Meta Profile Count Network Policy", "String",
|
|
104
|
-
meta_profile_count_secret: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_secret", "Meta Profile Count Secret", "String",
|
|
105
|
-
meta_profile_count_config: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_config", "Meta Profile Count Config", "String",
|
|
58
|
+
meta_profile_cluster_id: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_cluster_id", "Meta Profile Cluster ID", "String", false),
|
|
59
|
+
meta_profile_cluster_name: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_cluster_name", "Meta Profile Cluster Name", "String", false),
|
|
60
|
+
meta_profile_cluster_version: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_cluster_version", "Meta Profile Cluster Version", "String", false),
|
|
61
|
+
meta_profile_node_count: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_node_count", "Meta Profile Node Count", "String", false),
|
|
62
|
+
meta_profile_node_count_ready: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_node_count_ready", "Meta Profile Node Count Ready", "String", false),
|
|
63
|
+
meta_profile_node_count_not_ready: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_node_count_not_ready", "Meta Profile Node Count Not Ready", "String", false),
|
|
64
|
+
meta_profile_node_count_master: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_node_count_master", "Meta Profile Node Count Master", "String", false),
|
|
65
|
+
meta_profile_node_count_worker: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_node_count_worker", "Meta Profile Node Count Worker", "String", false),
|
|
66
|
+
meta_profile_total_cpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_total_cpu", "Meta Profile Total CPU", "String", false),
|
|
67
|
+
meta_profile_total_gpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_total_gpu", "Meta Profile Total GPU", "String", false),
|
|
68
|
+
meta_profile_total_memory: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_total_memory", "Meta Profile Total Memory", "String", false),
|
|
69
|
+
meta_profile_total_disk: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_total_disk", "Meta Profile Total Disk", "String", false),
|
|
70
|
+
meta_profile_total_pod_capacity: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_total_pod_capacity", "Meta Profile Total Pod Capacity", "String", false),
|
|
71
|
+
meta_profile_usage_cpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_cpu", "Meta Profile Usage CPU", "String", false),
|
|
72
|
+
meta_profile_usage_gpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_gpu", "Meta Profile Usage GPU", "String", false),
|
|
73
|
+
meta_profile_usage_memory: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_memory", "Meta Profile Usage Memory", "String", false),
|
|
74
|
+
meta_profile_usage_disk: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_disk", "Meta Profile Usage Disk", "String", false),
|
|
75
|
+
meta_profile_requested_cpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_requested_cpu", "Meta Profile Requested CPU", "String", false),
|
|
76
|
+
meta_profile_requested_gpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_requested_gpu", "Meta Profile Requested GPU", "String", false),
|
|
77
|
+
meta_profile_requested_memory: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_requested_memory", "Meta Profile Requested Memory", "String", false),
|
|
78
|
+
meta_profile_requested_disk: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_requested_disk", "Meta Profile Requested Disk", "String", false),
|
|
79
|
+
meta_profile_limit_cpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_limit_cpu", "Meta Profile Limit CPU", "String", false),
|
|
80
|
+
meta_profile_limit_memory: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_limit_memory", "Meta Profile Limit Memory", "String", false),
|
|
81
|
+
meta_profile_limit_gpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_limit_gpu", "Meta Profile Limit GPU", "String", false),
|
|
82
|
+
meta_profile_request_ratio_cpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_request_ratio_cpu", "Meta Profile Request Ratio CPU", "String", false),
|
|
83
|
+
meta_profile_request_ratio_gpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_request_ratio_gpu", "Meta Profile Request Ratio GPU", "String", false),
|
|
84
|
+
meta_profile_request_ratio_memory: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_request_ratio_memory", "Meta Profile Request Ratio Memory", "String", false),
|
|
85
|
+
meta_profile_request_ratio_disk: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_request_ratio_disk", "Meta Profile Request Ratio Disk", "String", false),
|
|
86
|
+
meta_profile_usage_ratio_cpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_ratio_cpu", "Meta Profile Usage Ratio CPU", "String", false),
|
|
87
|
+
meta_profile_usage_ratio_gpu: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_ratio_gpu", "Meta Profile Usage Ratio GPU", "String", false),
|
|
88
|
+
meta_profile_usage_ratio_memory: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_usage_ratio_memory", "Meta Profile Usage Ratio Memory", "String", false),
|
|
89
|
+
meta_profile_count_namespace: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_namespace", "Meta Profile Count Namespace", "String", false),
|
|
90
|
+
meta_profile_count_storage_classes: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_storage_classes", "Meta Profile Count Storage Classes", "String", false),
|
|
91
|
+
meta_profile_count_pv: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_pv", "Meta Profile Count Pv", "String", false),
|
|
92
|
+
meta_profile_count_pvc: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_pvc", "Meta Profile Count Pvc", "String", false),
|
|
93
|
+
meta_profile_count_pod: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_pod", "Meta Profile Count Pod", "String", false),
|
|
94
|
+
meta_profile_count_pod_running: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_pod_running", "Meta Profile Count Pod Running", "String", false),
|
|
95
|
+
meta_profile_count_deployment: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_deployment", "Meta Profile Count Deployment", "String", false),
|
|
96
|
+
meta_profile_count_statefulset: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_statefulset", "Meta Profile Count Statefulset", "String", false),
|
|
97
|
+
meta_profile_count_daemonset: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_daemonset", "Meta Profile Count Daemonset", "String", false),
|
|
98
|
+
meta_profile_count_job: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_job", "Meta Profile Count Job", "String", false),
|
|
99
|
+
meta_profile_count_cronjob: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_cronjob", "Meta Profile Count Cronjob", "String", false),
|
|
100
|
+
meta_profile_count_service: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_service", "Meta Profile Count Service", "String", false),
|
|
101
|
+
meta_profile_count_ingress: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_ingress", "Meta Profile Count Ingress", "String", false),
|
|
102
|
+
meta_profile_count_loadbalancer: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_loadbalancer", "Meta Profile Count Loadbalancer", "String", false),
|
|
103
|
+
meta_profile_count_network_policy: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_network_policy", "Meta Profile Count Network Policy", "String", false),
|
|
104
|
+
meta_profile_count_secret: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_secret", "Meta Profile Count Secret", "String", false),
|
|
105
|
+
meta_profile_count_config: new namirasoft_core_1.BaseMetaColumn(this, "meta_profile_count_config", "Meta Profile Count Config", "String", false),
|
|
106
106
|
meta_collective_deployments: new namirasoft_core_1.BaseMetaColumn(this, "meta_collective_deployments", "Meta Collective Deployments", "Any", false),
|
|
107
107
|
meta_collective_statefulsets: new namirasoft_core_1.BaseMetaColumn(this, "meta_collective_statefulsets", "Meta Collective Statefulsets", "Any", false),
|
|
108
108
|
meta_collective_daemonsets: new namirasoft_core_1.BaseMetaColumn(this, "meta_collective_daemonsets", "Meta Collective Daemonsets", "Any", false),
|