- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2021 03:15 PM
Hello!
If anyone has the code snippet for re-deploy dry-run in java, can you please share?
Thanks,
Neetika
Solved! Go to Solution.
- Labels:
-
Other NSO Topics
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2021 10:35 AM
ConfXMLParam[] params1 =
new ConfXMLParam[] {
new ConfXMLParamStart(cs, Ncs._dry_run_),
new ConfXMLParamValue(cs.hash(), Ncs._outformat, new ConfEnumeration(Ncs._outformat_native)),
new ConfXMLParamStop(cs, Ncs._dry_run_)};
ConfXMLParam[] diff = maapi.requestAction(params1, path + "{%s %s %s}/re-deploy", <key>);
for (ConfXMLParam p : diff) {
.
.
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2021 06:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2021 10:35 AM
ConfXMLParam[] params1 =
new ConfXMLParam[] {
new ConfXMLParamStart(cs, Ncs._dry_run_),
new ConfXMLParamValue(cs.hash(), Ncs._outformat, new ConfEnumeration(Ncs._outformat_native)),
new ConfXMLParamStop(cs, Ncs._dry_run_)};
ConfXMLParam[] diff = maapi.requestAction(params1, path + "{%s %s %s}/re-deploy", <key>);
for (ConfXMLParam p : diff) {
.
.
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2022 02:36 AM
If anyone has the code snippet for re-deploy dry-run in python, can you please share?
Thanks in Advance!
