RemoteOps#

class eclypse.remote.utils.ops.RemoteOps[source]#

Bases: StrEnum

Enum class for the operations that can be performed on a service.

The operations are executed via the ops_entrypoint method of the RemoteEngine class.

Methods

Attributes

DEPLOY

The operation that deploys a service.

UNDEPLOY

The operation that undeploys a service.

START

The operation that starts a service.

STOP

The operation that stops a service.

DEPLOY = 'deploy'#

The operation that deploys a service.

UNDEPLOY = 'undeploy'#

The operation that undeploys a service.

__new__(value)#
START = 'start_service'#

The operation that starts a service.

STOP = 'stop_service'#

The operation that stops a service.