Uses of Class
org.jclouds.compute.options.RunScriptOptions
-
-
Uses of RunScriptOptions in org.jclouds.aws.ec2.compute
Subclasses of RunScriptOptions in org.jclouds.aws.ec2.compute Modifier and Type Class Description class
AWSEC2TemplateOptions
Contains options supported in theComputeService#runNode
operation on the "ec2" provider. -
Uses of RunScriptOptions in org.jclouds.azurecompute.arm.compute.options
Subclasses of RunScriptOptions in org.jclouds.azurecompute.arm.compute.options Modifier and Type Class Description class
AzureTemplateOptions
Azure ARM custom options -
Uses of RunScriptOptions in org.jclouds.cloudstack.compute.options
Subclasses of RunScriptOptions in org.jclouds.cloudstack.compute.options Modifier and Type Class Description class
CloudStackTemplateOptions
Contains options supported by theComputeService#createNodesInGroup(String, int, TemplateOptions)
andComputeService#createNodesInGroup(String, int, TemplateOptions)
operations on the gogrid provider. -
Uses of RunScriptOptions in org.jclouds.compute
Methods in org.jclouds.compute that return RunScriptOptions Modifier and Type Method Description RunScriptOptions
RunScriptOnNodesException. getOptions()
Methods in org.jclouds.compute with parameters of type RunScriptOptions Modifier and Type Method Description ExecResponse
ComputeService. runScriptOnNode(String id, String runScript, RunScriptOptions options)
ExecResponse
ComputeService. runScriptOnNode(String id, Statement runScript, RunScriptOptions options)
Run the script on a specific nodeMap<? extends NodeMetadata,ExecResponse>
ComputeService. runScriptOnNodesMatching(com.google.common.base.Predicate<? super NodeMetadata> filter, String runScript, RunScriptOptions options)
Map<? extends NodeMetadata,ExecResponse>
ComputeService. runScriptOnNodesMatching(com.google.common.base.Predicate<? super NodeMetadata> filter, Statement runScript, RunScriptOptions options)
Run the script on all nodes with the specific predicate.com.google.common.util.concurrent.ListenableFuture<ExecResponse>
ComputeService. submitScriptOnNode(String id, String runScript, RunScriptOptions options)
Run the script on a specific node in the background, typically asnohup
com.google.common.util.concurrent.ListenableFuture<ExecResponse>
ComputeService. submitScriptOnNode(String id, Statement runScript, RunScriptOptions options)
Constructors in org.jclouds.compute with parameters of type RunScriptOptions Constructor Description RunScriptOnNodesException(Statement runScript, RunScriptOptions options, Map<NodeMetadata,ExecResponse> successfulNodes, Map<?,Exception> executionExceptions, Map<? extends NodeMetadata,? extends Throwable> failedNodes)
-
Uses of RunScriptOptions in org.jclouds.compute.callables
Methods in org.jclouds.compute.callables with parameters of type RunScriptOptions Modifier and Type Method Description RunScriptOnNode
RunScriptOnNode.Factory. create(NodeMetadata node, Statement script, RunScriptOptions options)
com.google.common.util.concurrent.ListenableFuture<ExecResponse>
RunScriptOnNode.Factory. submit(NodeMetadata node, Statement script, RunScriptOptions options)
Constructors in org.jclouds.compute.callables with parameters of type RunScriptOptions Constructor Description RunScriptOnNodeAsInitScriptUsingSsh(com.google.common.base.Function<NodeMetadata,SshClient> sshFactory, com.google.common.eventbus.EventBus eventBus, InitScriptConfigurationForTasks initScriptConfiguration, NodeMetadata node, Statement script, RunScriptOptions options)
RunScriptOnNodeAsInitScriptUsingSshAndBlockUntilComplete(BlockUntilInitScriptStatusIsZeroThenReturnOutput.Factory statusFactory, ComputeServiceConstants.Timeouts timeouts, com.google.common.base.Function<NodeMetadata,SshClient> sshFactory, com.google.common.eventbus.EventBus eventBus, InitScriptConfigurationForTasks initScriptConfiguration, NodeMetadata node, Statement script, RunScriptOptions options)
RunScriptOnNodeUsingSsh(com.google.common.base.Function<NodeMetadata,SshClient> sshFactory, com.google.common.eventbus.EventBus eventBus, NodeMetadata node, Statement statement, RunScriptOptions options)
-
Uses of RunScriptOptions in org.jclouds.compute.config
Methods in org.jclouds.compute.config with parameters of type RunScriptOptions Modifier and Type Method Description RunScriptOnNode
BaseComputeServiceContextModule.RunScriptOnNodeFactoryImpl. create(NodeMetadata node, Statement runScript, RunScriptOptions options)
BlockUntilInitScriptStatusIsZeroThenReturnOutput
BaseComputeServiceContextModule.RunScriptOnNodeFactoryImpl. submit(NodeMetadata node, Statement script, RunScriptOptions options)
-
Uses of RunScriptOptions in org.jclouds.compute.functions
Methods in org.jclouds.compute.functions with parameters of type RunScriptOptions Modifier and Type Method Description static LoginCredentials
DefaultCredentialsFromImageOrOverridingCredentials. overrideDefaultCredentialsWithOptionsIfPresent(LoginCredentials defaultCreds, RunScriptOptions options)
-
Uses of RunScriptOptions in org.jclouds.compute.internal
Methods in org.jclouds.compute.internal with parameters of type RunScriptOptions Modifier and Type Method Description ExecResponse
BaseComputeService. runScriptOnNode(String id, String runScript, RunScriptOptions options)
ExecResponse
BaseComputeService. runScriptOnNode(String id, Statement runScript, RunScriptOptions options)
Run the script on a specific nodeMap<? extends NodeMetadata,ExecResponse>
BaseComputeService. runScriptOnNodesMatching(com.google.common.base.Predicate<? super NodeMetadata> filter, String runScript, RunScriptOptions options)
Map<NodeMetadata,ExecResponse>
BaseComputeService. runScriptOnNodesMatching(com.google.common.base.Predicate<? super NodeMetadata> filter, Statement runScript, RunScriptOptions options)
Run the script on all nodes with the specific predicate.com.google.common.util.concurrent.ListenableFuture<ExecResponse>
BaseComputeService. submitScriptOnNode(String id, String runScript, RunScriptOptions options)
Run the script on a specific node in the background, typically asnohup
com.google.common.util.concurrent.ListenableFuture<ExecResponse>
BaseComputeService. submitScriptOnNode(String id, Statement runScript, RunScriptOptions options)
protected NodeMetadata
BaseComputeService. updateNodeWithCredentialsIfPresent(NodeMetadata node, RunScriptOptions options)
-
Uses of RunScriptOptions in org.jclouds.compute.options
Subclasses of RunScriptOptions in org.jclouds.compute.options Modifier and Type Class Description static class
RunScriptOptions.ImmutableRunScriptOptions
class
TemplateOptions
Contains options supported in theComputeService#createNodesInGroup
operation.static class
TemplateOptions.ImmutableTemplateOptions
Fields in org.jclouds.compute.options declared as RunScriptOptions Modifier and Type Field Description static RunScriptOptions
RunScriptOptions. NONE
Default options.Methods in org.jclouds.compute.options that return RunScriptOptions Modifier and Type Method Description RunScriptOptions
RunScriptOptions. blockOnComplete(boolean blockOnComplete)
As of version 1.1.0, we cannot kick off a script unless a node is in RUNNING state.static RunScriptOptions
RunScriptOptions.Builder. blockOnComplete(boolean value)
RunScriptOptions
RunScriptOptions.ImmutableRunScriptOptions. blockOnComplete(boolean blockOnComplete)
RunScriptOptions
RunScriptOptions. blockOnPort(int port, int seconds)
When the node is started, wait until the following port is activestatic RunScriptOptions
RunScriptOptions.Builder. blockOnPort(int port, int seconds)
RunScriptOptions
RunScriptOptions.ImmutableRunScriptOptions. blockOnPort(int port, int seconds)
static RunScriptOptions
RunScriptOptions.Builder. nameTask(String name)
RunScriptOptions
RunScriptOptions.ImmutableRunScriptOptions. nameTask(String name)
RunScriptOptions
RunScriptOptions. nameTask(String name)
static RunScriptOptions
RunScriptOptions.Builder. overrideAuthenticateSudo(boolean authenticateSudo)
RunScriptOptions
RunScriptOptions.ImmutableRunScriptOptions. overrideAuthenticateSudo(boolean authenticateSudo)
RunScriptOptions
RunScriptOptions. overrideAuthenticateSudo(boolean authenticateSudo)
static RunScriptOptions
RunScriptOptions.Builder. overrideLoginCredentials(LoginCredentials credentials)
RunScriptOptions
RunScriptOptions.ImmutableRunScriptOptions. overrideLoginCredentials(LoginCredentials overridingCredentials)
RunScriptOptions
RunScriptOptions. overrideLoginCredentials(LoginCredentials overridingCredentials)
static RunScriptOptions
RunScriptOptions.Builder. overrideLoginPassword(String password)
RunScriptOptions
RunScriptOptions.ImmutableRunScriptOptions. overrideLoginPassword(String password)
RunScriptOptions
RunScriptOptions. overrideLoginPassword(com.google.common.base.Optional<String> password)
RunScriptOptions
RunScriptOptions. overrideLoginPassword(String password)
static RunScriptOptions
RunScriptOptions.Builder. overrideLoginPrivateKey(String privateKey)
RunScriptOptions
RunScriptOptions.ImmutableRunScriptOptions. overrideLoginPrivateKey(String privateKey)
RunScriptOptions
RunScriptOptions. overrideLoginPrivateKey(com.google.common.base.Optional<String> privateKey)
RunScriptOptions
RunScriptOptions. overrideLoginPrivateKey(String privateKey)
static RunScriptOptions
RunScriptOptions.Builder. overrideLoginUser(String user)
RunScriptOptions
RunScriptOptions.ImmutableRunScriptOptions. overrideLoginUser(String loginUser)
RunScriptOptions
RunScriptOptions. overrideLoginUser(String loginUser)
static RunScriptOptions
RunScriptOptions.Builder. runAsRoot(boolean value)
RunScriptOptions
RunScriptOptions.ImmutableRunScriptOptions. runAsRoot(boolean runAsRoot)
RunScriptOptions
RunScriptOptions. runAsRoot(boolean runAsRoot)
static RunScriptOptions
RunScriptOptions.Builder. wrapInInitScript(boolean value)
RunScriptOptions
RunScriptOptions.ImmutableRunScriptOptions. wrapInInitScript(boolean wrapInInitScript)
RunScriptOptions
RunScriptOptions. wrapInInitScript(boolean wrapInInitScript)
default trueMethods in org.jclouds.compute.options with parameters of type RunScriptOptions Modifier and Type Method Description void
RunScriptOptions. copyTo(RunScriptOptions to)
Constructors in org.jclouds.compute.options with parameters of type RunScriptOptions Constructor Description ImmutableRunScriptOptions(RunScriptOptions delegate)
-
Uses of RunScriptOptions in org.jclouds.compute.strategy
Methods in org.jclouds.compute.strategy with parameters of type RunScriptOptions Modifier and Type Method Description Callable<RunScriptOnNode>
InitializeRunScriptOnNodeOrPlaceInBadMap.Factory. create(NodeMetadata node, Statement script, RunScriptOptions options, Map<NodeMetadata,Exception> badNodes)
-
Uses of RunScriptOptions in org.jclouds.digitalocean2.compute.options
Subclasses of RunScriptOptions in org.jclouds.digitalocean2.compute.options Modifier and Type Class Description class
DigitalOcean2TemplateOptions
Custom options for the DigitalOcean API. -
Uses of RunScriptOptions in org.jclouds.docker.compute.options
Subclasses of RunScriptOptions in org.jclouds.docker.compute.options Modifier and Type Class Description class
DockerTemplateOptions
Contains options supported by thecreateNodes
operation on the docker provider. -
Uses of RunScriptOptions in org.jclouds.ec2.compute.options
Subclasses of RunScriptOptions in org.jclouds.ec2.compute.options Modifier and Type Class Description class
EC2TemplateOptions
Contains options supported in theComputeService#runNode
operation on the "ec2" provider. -
Uses of RunScriptOptions in org.jclouds.glesys.compute.options
Subclasses of RunScriptOptions in org.jclouds.glesys.compute.options Modifier and Type Class Description class
GleSYSTemplateOptions
Contains options supported by theComputeService#createNodesInGroup(String, int, TemplateOptions)
andComputeService#createNodesInGroup(String, int, TemplateOptions)
operations on the glesys provider. -
Uses of RunScriptOptions in org.jclouds.gogrid.compute.options
Subclasses of RunScriptOptions in org.jclouds.gogrid.compute.options Modifier and Type Class Description class
GoGridTemplateOptions
Contains options supported by theComputeService#createNodesInGroup(String, int, TemplateOptions)
andComputeService#createNodesInGroup(String, int, TemplateOptions)
operations on the gogrid provider. -
Uses of RunScriptOptions in org.jclouds.googlecomputeengine.compute.options
Subclasses of RunScriptOptions in org.jclouds.googlecomputeengine.compute.options Modifier and Type Class Description class
GoogleComputeEngineTemplateOptions
Instance options specific to Google Compute Engine. -
Uses of RunScriptOptions in org.jclouds.openstack.nova.v2_0.compute.options
Subclasses of RunScriptOptions in org.jclouds.openstack.nova.v2_0.compute.options Modifier and Type Class Description class
NovaTemplateOptions
Contains options supported in theComputeService#runNode
operation on the "openstack-nova" provider. -
Uses of RunScriptOptions in org.jclouds.packet.compute.options
Subclasses of RunScriptOptions in org.jclouds.packet.compute.options Modifier and Type Class Description class
PacketTemplateOptions
Custom options for the Packet API. -
Uses of RunScriptOptions in org.jclouds.softlayer.compute.options
Subclasses of RunScriptOptions in org.jclouds.softlayer.compute.options Modifier and Type Class Description class
SoftLayerTemplateOptions
Contains options supported by theComputeService.createNodesInGroup(String, int, TemplateOptions)
andComputeService.createNodesInGroup(String, int, TemplateOptions)
operations on the gogrid provider.
-