Class ScriptBasedExecutionDetails
Details for script-based execution.
Inheritance
ScriptBasedExecutionDetails
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class ScriptBasedExecutionDetails : ExecutionDetails
Properties
Command
Declaration
[JsonProperty(PropertyName = "command")]
public string Command { get; set; }
Property Value
Type |
Description |
string |
Optional command to execute the content.
You can provide any commands/arguments that can't be part of the script.
|
Content
Declaration
[JsonProperty(PropertyName = "content")]
public ContentDetails Content { get; set; }
Property Value
Credentials
Declaration
[JsonProperty(PropertyName = "credentials")]
public List<ConfigAssociationDetails> Credentials { get; set; }
Property Value
IsExecutableContent
Declaration
[JsonProperty(PropertyName = "isExecutableContent")]
public bool? IsExecutableContent { get; set; }
Property Value
Type |
Description |
bool? |
Is the Content an executable file?
|
IsLocked
Declaration
[JsonProperty(PropertyName = "isLocked")]
public bool? IsLocked { get; set; }
Property Value
Type |
Description |
bool? |
Is the script locked to prevent changes directly in Object Storage?
|
Variables
Declaration
[JsonProperty(PropertyName = "variables")]
public TaskVariable Variables { get; set; }
Property Value