Show / Hide Table of Contents

Class ScriptBasedExecutionDetails

Details for script-based execution.

Inheritance
object
ExecutionDetails
ScriptBasedExecutionDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FleetappsmanagementService.Models
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
Type Description
ContentDetails

Credentials

Declaration
[JsonProperty(PropertyName = "credentials")]
public List<ConfigAssociationDetails> Credentials { get; set; }
Property Value
Type Description
List<ConfigAssociationDetails>

Credentials required for executing the task.

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
Type Description
TaskVariable
In this article
Back to top