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
@@ -67,6 +67,30 @@ export class CloudUpdateCommand extends BaseFinalCommand
67
67
  optional: false,
68
68
  args: ["description"],
69
69
  defaults: [""]
70
+ },
71
+ {
72
+ name: "cloud_category",
73
+ short: "",
74
+ description: "Provides the value of 'cloud_category' in body",
75
+ optional: false,
76
+ args: ["cloud_category"],
77
+ defaults: [""]
78
+ },
79
+ {
80
+ name: "cloud_field",
81
+ short: "",
82
+ description: "Provides the value of 'cloud_field' in body",
83
+ optional: false,
84
+ args: ["cloud_field"],
85
+ defaults: [""]
86
+ },
87
+ {
88
+ name: "cloud_tag",
89
+ short: "",
90
+ description: "Provides the value of 'cloud_tag' in body",
91
+ optional: false,
92
+ args: ["cloud_tag"],
93
+ defaults: [""]
70
94
  }
71
95
  ]);
72
96
  }
@@ -85,7 +109,10 @@ export class CloudUpdateCommand extends BaseFinalCommand
85
109
  ctl_on_server_id: this.option_values.ctl_on_server_id,
86
110
  name: this.option_values.name,
87
111
  type: this.option_values.type,
88
- description: this.option_values.description
112
+ description: this.option_values.description,
113
+ cloud_category: this.option_values.cloud_category,
114
+ cloud_field: this.option_values.cloud_field,
115
+ cloud_tag: this.option_values.cloud_tag
89
116
  });
90
117
  this.app.logger.success(JSON.stringify(ans));
91
118
  }
@@ -115,6 +115,30 @@ export class DatabaseCreateCommand extends BaseFinalCommand
115
115
  optional: false,
116
116
  args: ["description"],
117
117
  defaults: [""]
118
+ },
119
+ {
120
+ name: "database_category",
121
+ short: "",
122
+ description: "Provides the value of 'database_category' in body",
123
+ optional: false,
124
+ args: ["database_category"],
125
+ defaults: [""]
126
+ },
127
+ {
128
+ name: "database_field",
129
+ short: "",
130
+ description: "Provides the value of 'database_field' in body",
131
+ optional: false,
132
+ args: ["database_field"],
133
+ defaults: [""]
134
+ },
135
+ {
136
+ name: "database_tag",
137
+ short: "",
138
+ description: "Provides the value of 'database_tag' in body",
139
+ optional: false,
140
+ args: ["database_tag"],
141
+ defaults: [""]
118
142
  }
119
143
  ]);
120
144
  }
@@ -139,7 +163,10 @@ export class DatabaseCreateCommand 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
+ database_category: this.option_values.database_category,
168
+ database_field: this.option_values.database_field,
169
+ database_tag: this.option_values.database_tag
143
170
  });
144
171
  this.app.logger.success(JSON.stringify(ans));
145
172
  }
@@ -115,6 +115,30 @@ export class DatabaseUpdateCommand extends BaseFinalCommand
115
115
  optional: false,
116
116
  args: ["description"],
117
117
  defaults: [""]
118
+ },
119
+ {
120
+ name: "database_category",
121
+ short: "",
122
+ description: "Provides the value of 'database_category' in body",
123
+ optional: false,
124
+ args: ["database_category"],
125
+ defaults: [""]
126
+ },
127
+ {
128
+ name: "database_field",
129
+ short: "",
130
+ description: "Provides the value of 'database_field' in body",
131
+ optional: false,
132
+ args: ["database_field"],
133
+ defaults: [""]
134
+ },
135
+ {
136
+ name: "database_tag",
137
+ short: "",
138
+ description: "Provides the value of 'database_tag' in body",
139
+ optional: false,
140
+ args: ["database_tag"],
141
+ defaults: [""]
118
142
  }
119
143
  ]);
120
144
  }
@@ -139,7 +163,10 @@ export class DatabaseUpdateCommand 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
+ database_category: this.option_values.database_category,
168
+ database_field: this.option_values.database_field,
169
+ database_tag: this.option_values.database_tag
143
170
  });
144
171
  this.app.logger.success(JSON.stringify(ans));
145
172
  }
@@ -91,6 +91,30 @@ export class DockerCreateCommand extends BaseFinalCommand
91
91
  optional: false,
92
92
  args: ["description"],
93
93
  defaults: [""]
94
+ },
95
+ {
96
+ name: "docker_category",
97
+ short: "",
98
+ description: "Provides the value of 'docker_category' in body",
99
+ optional: false,
100
+ args: ["docker_category"],
101
+ defaults: [""]
102
+ },
103
+ {
104
+ name: "docker_field",
105
+ short: "",
106
+ description: "Provides the value of 'docker_field' in body",
107
+ optional: false,
108
+ args: ["docker_field"],
109
+ defaults: [""]
110
+ },
111
+ {
112
+ name: "docker_tag",
113
+ short: "",
114
+ description: "Provides the value of 'docker_tag' in body",
115
+ optional: false,
116
+ args: ["docker_tag"],
117
+ defaults: [""]
94
118
  }
95
119
  ]);
96
120
  }
@@ -112,7 +136,10 @@ export class DockerCreateCommand extends BaseFinalCommand
112
136
  docker_cli_server_id: this.option_values.docker_cli_server_id,
113
137
  name: this.option_values.name,
114
138
  cloud: this.option_values.cloud,
115
- description: this.option_values.description
139
+ description: this.option_values.description,
140
+ docker_category: this.option_values.docker_category,
141
+ docker_field: this.option_values.docker_field,
142
+ docker_tag: this.option_values.docker_tag
116
143
  });
117
144
  this.app.logger.success(JSON.stringify(ans));
118
145
  }
@@ -91,6 +91,30 @@ export class DockerUpdateCommand extends BaseFinalCommand
91
91
  optional: false,
92
92
  args: ["description"],
93
93
  defaults: [""]
94
+ },
95
+ {
96
+ name: "docker_category",
97
+ short: "",
98
+ description: "Provides the value of 'docker_category' in body",
99
+ optional: false,
100
+ args: ["docker_category"],
101
+ defaults: [""]
102
+ },
103
+ {
104
+ name: "docker_field",
105
+ short: "",
106
+ description: "Provides the value of 'docker_field' in body",
107
+ optional: false,
108
+ args: ["docker_field"],
109
+ defaults: [""]
110
+ },
111
+ {
112
+ name: "docker_tag",
113
+ short: "",
114
+ description: "Provides the value of 'docker_tag' in body",
115
+ optional: false,
116
+ args: ["docker_tag"],
117
+ defaults: [""]
94
118
  }
95
119
  ]);
96
120
  }
@@ -112,7 +136,10 @@ export class DockerUpdateCommand extends BaseFinalCommand
112
136
  docker_cli_server_id: this.option_values.docker_cli_server_id,
113
137
  name: this.option_values.name,
114
138
  cloud: this.option_values.cloud,
115
- description: this.option_values.description
139
+ description: this.option_values.description,
140
+ docker_category: this.option_values.docker_category,
141
+ docker_field: this.option_values.docker_field,
142
+ docker_tag: this.option_values.docker_tag
116
143
  });
117
144
  this.app.logger.success(JSON.stringify(ans));
118
145
  }
@@ -59,6 +59,30 @@ export class EnvironmentCreateCommand extends BaseFinalCommand
59
59
  optional: true,
60
60
  args: ["description"],
61
61
  defaults: [""]
62
+ },
63
+ {
64
+ name: "environment_category",
65
+ short: "",
66
+ description: "Provides the value of 'environment_category' in body",
67
+ optional: false,
68
+ args: ["environment_category"],
69
+ defaults: [""]
70
+ },
71
+ {
72
+ name: "environment_field",
73
+ short: "",
74
+ description: "Provides the value of 'environment_field' in body",
75
+ optional: false,
76
+ args: ["environment_field"],
77
+ defaults: [""]
78
+ },
79
+ {
80
+ name: "environment_tag",
81
+ short: "",
82
+ description: "Provides the value of 'environment_tag' in body",
83
+ optional: false,
84
+ args: ["environment_tag"],
85
+ defaults: [""]
62
86
  }
63
87
  ]);
64
88
  }
@@ -76,7 +100,10 @@ export class EnvironmentCreateCommand extends BaseFinalCommand
76
100
  workspace_id: this.option_values.workspace_id,
77
101
  project_id: this.option_values.project_id,
78
102
  name: this.option_values.name,
79
- description: this.option_values.description
103
+ description: this.option_values.description,
104
+ environment_category: this.option_values.environment_category,
105
+ environment_field: this.option_values.environment_field,
106
+ environment_tag: this.option_values.environment_tag
80
107
  });
81
108
  this.app.logger.success(JSON.stringify(ans));
82
109
  }
@@ -59,6 +59,30 @@ export class EnvironmentUpdateCommand extends BaseFinalCommand
59
59
  optional: true,
60
60
  args: ["description"],
61
61
  defaults: [""]
62
+ },
63
+ {
64
+ name: "environment_category",
65
+ short: "",
66
+ description: "Provides the value of 'environment_category' in body",
67
+ optional: false,
68
+ args: ["environment_category"],
69
+ defaults: [""]
70
+ },
71
+ {
72
+ name: "environment_field",
73
+ short: "",
74
+ description: "Provides the value of 'environment_field' in body",
75
+ optional: false,
76
+ args: ["environment_field"],
77
+ defaults: [""]
78
+ },
79
+ {
80
+ name: "environment_tag",
81
+ short: "",
82
+ description: "Provides the value of 'environment_tag' in body",
83
+ optional: false,
84
+ args: ["environment_tag"],
85
+ defaults: [""]
62
86
  }
63
87
  ]);
64
88
  }
@@ -76,7 +100,10 @@ export class EnvironmentUpdateCommand extends BaseFinalCommand
76
100
  workspace_id: this.option_values.workspace_id,
77
101
  project_id: this.option_values.project_id,
78
102
  name: this.option_values.name,
79
- description: this.option_values.description
103
+ description: this.option_values.description,
104
+ environment_category: this.option_values.environment_category,
105
+ environment_field: this.option_values.environment_field,
106
+ environment_tag: this.option_values.environment_tag
80
107
  });
81
108
  this.app.logger.success(JSON.stringify(ans));
82
109
  }
@@ -91,6 +91,30 @@ export class KubernetesCreateCommand extends BaseFinalCommand
91
91
  optional: false,
92
92
  args: ["description"],
93
93
  defaults: [""]
94
+ },
95
+ {
96
+ name: "kubernetes_category",
97
+ short: "",
98
+ description: "Provides the value of 'kubernetes_category' in body",
99
+ optional: false,
100
+ args: ["kubernetes_category"],
101
+ defaults: [""]
102
+ },
103
+ {
104
+ name: "kubernetes_field",
105
+ short: "",
106
+ description: "Provides the value of 'kubernetes_field' in body",
107
+ optional: false,
108
+ args: ["kubernetes_field"],
109
+ defaults: [""]
110
+ },
111
+ {
112
+ name: "kubernetes_tag",
113
+ short: "",
114
+ description: "Provides the value of 'kubernetes_tag' in body",
115
+ optional: false,
116
+ args: ["kubernetes_tag"],
117
+ defaults: [""]
94
118
  }
95
119
  ]);
96
120
  }
@@ -112,7 +136,10 @@ export class KubernetesCreateCommand extends BaseFinalCommand
112
136
  kubctl_on_server_id: this.option_values.kubctl_on_server_id,
113
137
  name: this.option_values.name,
114
138
  cloud: this.option_values.cloud,
115
- description: this.option_values.description
139
+ description: this.option_values.description,
140
+ kubernetes_category: this.option_values.kubernetes_category,
141
+ kubernetes_field: this.option_values.kubernetes_field,
142
+ kubernetes_tag: this.option_values.kubernetes_tag
116
143
  });
117
144
  this.app.logger.success(JSON.stringify(ans));
118
145
  }
@@ -91,6 +91,30 @@ export class KubernetesUpdateCommand extends BaseFinalCommand
91
91
  optional: false,
92
92
  args: ["description"],
93
93
  defaults: [""]
94
+ },
95
+ {
96
+ name: "kubernetes_category",
97
+ short: "",
98
+ description: "Provides the value of 'kubernetes_category' in body",
99
+ optional: false,
100
+ args: ["kubernetes_category"],
101
+ defaults: [""]
102
+ },
103
+ {
104
+ name: "kubernetes_field",
105
+ short: "",
106
+ description: "Provides the value of 'kubernetes_field' in body",
107
+ optional: false,
108
+ args: ["kubernetes_field"],
109
+ defaults: [""]
110
+ },
111
+ {
112
+ name: "kubernetes_tag",
113
+ short: "",
114
+ description: "Provides the value of 'kubernetes_tag' in body",
115
+ optional: false,
116
+ args: ["kubernetes_tag"],
117
+ defaults: [""]
94
118
  }
95
119
  ]);
96
120
  }
@@ -112,7 +136,10 @@ export class KubernetesUpdateCommand extends BaseFinalCommand
112
136
  kubctl_on_server_id: this.option_values.kubctl_on_server_id,
113
137
  name: this.option_values.name,
114
138
  cloud: this.option_values.cloud,
115
- description: this.option_values.description
139
+ description: this.option_values.description,
140
+ kubernetes_category: this.option_values.kubernetes_category,
141
+ kubernetes_field: this.option_values.kubernetes_field,
142
+ kubernetes_tag: this.option_values.kubernetes_tag
116
143
  });
117
144
  this.app.logger.success(JSON.stringify(ans));
118
145
  }
@@ -115,6 +115,30 @@ export class MessagingCreateCommand extends BaseFinalCommand
115
115
  optional: false,
116
116
  args: ["description"],
117
117
  defaults: [""]
118
+ },
119
+ {
120
+ name: "messaging_category",
121
+ short: "",
122
+ description: "Provides the value of 'messaging_category' in body",
123
+ optional: false,
124
+ args: ["messaging_category"],
125
+ defaults: [""]
126
+ },
127
+ {
128
+ name: "messaging_field",
129
+ short: "",
130
+ description: "Provides the value of 'messaging_field' in body",
131
+ optional: false,
132
+ args: ["messaging_field"],
133
+ defaults: [""]
134
+ },
135
+ {
136
+ name: "messaging_tag",
137
+ short: "",
138
+ description: "Provides the value of 'messaging_tag' in body",
139
+ optional: false,
140
+ args: ["messaging_tag"],
141
+ defaults: [""]
118
142
  }
119
143
  ]);
120
144
  }
@@ -139,7 +163,10 @@ export class MessagingCreateCommand 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
+ messaging_category: this.option_values.messaging_category,
168
+ messaging_field: this.option_values.messaging_field,
169
+ messaging_tag: this.option_values.messaging_tag
143
170
  });
144
171
  this.app.logger.success(JSON.stringify(ans));
145
172
  }
@@ -115,6 +115,30 @@ export class MessagingUpdateCommand extends BaseFinalCommand
115
115
  optional: false,
116
116
  args: ["description"],
117
117
  defaults: [""]
118
+ },
119
+ {
120
+ name: "messaging_category",
121
+ short: "",
122
+ description: "Provides the value of 'messaging_category' in body",
123
+ optional: false,
124
+ args: ["messaging_category"],
125
+ defaults: [""]
126
+ },
127
+ {
128
+ name: "messaging_field",
129
+ short: "",
130
+ description: "Provides the value of 'messaging_field' in body",
131
+ optional: false,
132
+ args: ["messaging_field"],
133
+ defaults: [""]
134
+ },
135
+ {
136
+ name: "messaging_tag",
137
+ short: "",
138
+ description: "Provides the value of 'messaging_tag' in body",
139
+ optional: false,
140
+ args: ["messaging_tag"],
141
+ defaults: [""]
118
142
  }
119
143
  ]);
120
144
  }
@@ -139,7 +163,10 @@ export class MessagingUpdateCommand 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
+ messaging_category: this.option_values.messaging_category,
168
+ messaging_field: this.option_values.messaging_field,
169
+ messaging_tag: this.option_values.messaging_tag
143
170
  });
144
171
  this.app.logger.success(JSON.stringify(ans));
145
172
  }
@@ -107,6 +107,30 @@ export class MetricCreateCommand extends BaseFinalCommand
107
107
  optional: false,
108
108
  args: ["description"],
109
109
  defaults: [""]
110
+ },
111
+ {
112
+ name: "metric_category",
113
+ short: "",
114
+ description: "Provides the value of 'metric_category' in body",
115
+ optional: false,
116
+ args: ["metric_category"],
117
+ defaults: [""]
118
+ },
119
+ {
120
+ name: "metric_field",
121
+ short: "",
122
+ description: "Provides the value of 'metric_field' in body",
123
+ optional: false,
124
+ args: ["metric_field"],
125
+ defaults: [""]
126
+ },
127
+ {
128
+ name: "metric_tag",
129
+ short: "",
130
+ description: "Provides the value of 'metric_tag' in body",
131
+ optional: false,
132
+ args: ["metric_tag"],
133
+ defaults: [""]
110
134
  }
111
135
  ]);
112
136
  }
@@ -130,7 +154,10 @@ export class MetricCreateCommand extends BaseFinalCommand
130
154
  caller_kubernetes_id: this.option_values.caller_kubernetes_id,
131
155
  url: this.option_values.url,
132
156
  interval_scheduler_id: this.option_values.interval_scheduler_id,
133
- description: this.option_values.description
157
+ description: this.option_values.description,
158
+ metric_category: this.option_values.metric_category,
159
+ metric_field: this.option_values.metric_field,
160
+ metric_tag: this.option_values.metric_tag
134
161
  });
135
162
  this.app.logger.success(JSON.stringify(ans));
136
163
  }
@@ -107,6 +107,30 @@ export class MetricUpdateCommand extends BaseFinalCommand
107
107
  optional: false,
108
108
  args: ["description"],
109
109
  defaults: [""]
110
+ },
111
+ {
112
+ name: "metric_category",
113
+ short: "",
114
+ description: "Provides the value of 'metric_category' in body",
115
+ optional: false,
116
+ args: ["metric_category"],
117
+ defaults: [""]
118
+ },
119
+ {
120
+ name: "metric_field",
121
+ short: "",
122
+ description: "Provides the value of 'metric_field' in body",
123
+ optional: false,
124
+ args: ["metric_field"],
125
+ defaults: [""]
126
+ },
127
+ {
128
+ name: "metric_tag",
129
+ short: "",
130
+ description: "Provides the value of 'metric_tag' in body",
131
+ optional: false,
132
+ args: ["metric_tag"],
133
+ defaults: [""]
110
134
  }
111
135
  ]);
112
136
  }
@@ -130,7 +154,10 @@ export class MetricUpdateCommand extends BaseFinalCommand
130
154
  caller_kubernetes_id: this.option_values.caller_kubernetes_id,
131
155
  url: this.option_values.url,
132
156
  interval_scheduler_id: this.option_values.interval_scheduler_id,
133
- description: this.option_values.description
157
+ description: this.option_values.description,
158
+ metric_category: this.option_values.metric_category,
159
+ metric_field: this.option_values.metric_field,
160
+ metric_tag: this.option_values.metric_tag
134
161
  });
135
162
  this.app.logger.success(JSON.stringify(ans));
136
163
  }
@@ -323,6 +323,30 @@ export class MonitorCreateCommand extends BaseFinalCommand
323
323
  optional: true,
324
324
  args: ["description"],
325
325
  defaults: [""]
326
+ },
327
+ {
328
+ name: "monitor_category",
329
+ short: "",
330
+ description: "Provides the value of 'monitor_category' in body",
331
+ optional: false,
332
+ args: ["monitor_category"],
333
+ defaults: [""]
334
+ },
335
+ {
336
+ name: "monitor_field",
337
+ short: "",
338
+ description: "Provides the value of 'monitor_field' in body",
339
+ optional: false,
340
+ args: ["monitor_field"],
341
+ defaults: [""]
342
+ },
343
+ {
344
+ name: "monitor_tag",
345
+ short: "",
346
+ description: "Provides the value of 'monitor_tag' in body",
347
+ optional: false,
348
+ args: ["monitor_tag"],
349
+ defaults: [""]
326
350
  }
327
351
  ]);
328
352
  }
@@ -373,7 +397,10 @@ export class MonitorCreateCommand extends BaseFinalCommand
373
397
  docker_container_id_or_name: this.option_values.docker_container_id_or_name,
374
398
  kubernetes_pod_controller_type: this.option_values.kubernetes_pod_controller_type,
375
399
  kubernetes_pod_controller_name: this.option_values.kubernetes_pod_controller_name,
376
- description: this.option_values.description
400
+ description: this.option_values.description,
401
+ monitor_category: this.option_values.monitor_category,
402
+ monitor_field: this.option_values.monitor_field,
403
+ monitor_tag: this.option_values.monitor_tag
377
404
  });
378
405
  this.app.logger.success(JSON.stringify(ans));
379
406
  }
@@ -323,6 +323,30 @@ export class MonitorUpdateCommand extends BaseFinalCommand
323
323
  optional: true,
324
324
  args: ["description"],
325
325
  defaults: [""]
326
+ },
327
+ {
328
+ name: "monitor_category",
329
+ short: "",
330
+ description: "Provides the value of 'monitor_category' in body",
331
+ optional: false,
332
+ args: ["monitor_category"],
333
+ defaults: [""]
334
+ },
335
+ {
336
+ name: "monitor_field",
337
+ short: "",
338
+ description: "Provides the value of 'monitor_field' in body",
339
+ optional: false,
340
+ args: ["monitor_field"],
341
+ defaults: [""]
342
+ },
343
+ {
344
+ name: "monitor_tag",
345
+ short: "",
346
+ description: "Provides the value of 'monitor_tag' in body",
347
+ optional: false,
348
+ args: ["monitor_tag"],
349
+ defaults: [""]
326
350
  }
327
351
  ]);
328
352
  }
@@ -373,7 +397,10 @@ export class MonitorUpdateCommand extends BaseFinalCommand
373
397
  docker_container_id_or_name: this.option_values.docker_container_id_or_name,
374
398
  kubernetes_pod_controller_type: this.option_values.kubernetes_pod_controller_type,
375
399
  kubernetes_pod_controller_name: this.option_values.kubernetes_pod_controller_name,
376
- description: this.option_values.description
400
+ description: this.option_values.description,
401
+ monitor_category: this.option_values.monitor_category,
402
+ monitor_field: this.option_values.monitor_field,
403
+ monitor_tag: this.option_values.monitor_tag
377
404
  });
378
405
  this.app.logger.success(JSON.stringify(ans));
379
406
  }