salt-netapi-client icon indicating copy to clipboard operation
salt-netapi-client copied to clipboard

Java bindings for the Salt API

Results 19 salt-netapi-client issues
Sort by recently updated
recently updated
newest added

Currently any reboot action is not executed in SLE Micro. The reason is due to the fact that any salt state is executed as a transactional update and it's not...

This patch is to add support for measuring the amount of code that is covered by unit tests. It is using the JaCoCo library and maven plugin to create the...

This requests the full return data containing extra metadata about retcode and jid. Retcode coud potentally be used to improve error handling. Its unclear yet how to best go about...

Salt has modules like [salt.modules.file.manage_file](https://docs.saltproject.io/en/latest/ref/modules/all/salt.modules.file.html#salt.modules.file.manage_file) or [salt.modules.file.line](https://docs.saltproject.io/en/latest/ref/modules/all/salt.modules.file.html#salt.modules.file.line) to write or modify contents in a file. Does exists any method to write/modify files? I don't find it in the [API-doc](https://opensource.suse.com/salt-netapi-client/docs/master/com/suse/salt/netapi/calls/modules/File.html). Thanks...

it seems that WebSocketEventStream can only work with insecure http sockets. Please have a look at line 46: `URI adjustedURI = (new URI(uri.getScheme() == "https" ? "wss" : "ws", uri.getSchemeSpecificPart(),...

# I have a Exception: `javax.websocket.DeploymentException: The HTTP response from the server [404] did not permit the HTTP upgrade to WebSocket` It comes from WebSocketEventStream,I don't know how to solve...

SaltClient.class By using the following asynchronous run method, saltstack has fewer actual tasks than it does in concurrent situations, What should I do? Are there any configurations that are not...

Salt seems to have added an option called `full_return` which should give more metadata about the result such as success or failure indication. https://docs.saltstack.com/en/latest/ref/clients/#salt.client.LocalClient.cmd with that we should hopefully be...

Currently, `SaltClient.startCommand` sets fixed lowstate data sent towards API, which limits the usage in certain way. Following usecase specifies the needs for this. As Job cache method [prep_jid](https://github.com/saltstack/salt/blob/develop/salt/returners/local_cache.py#L80) can accept...

A lot of types have no constructor because they are usually just created by gson. It would be good to have constructors for those. Also a mapping function for types...