Class SoftwareRecipeStepRunScript
Runs a script through an interpreter.
Implements
Inherited Members
Namespace: Google.Apis.OSConfig.v1beta.Data
Assembly: Google.Apis.OSConfig.v1beta.dll
Syntax
public class SoftwareRecipeStepRunScript : IDirectResponseSchema
Properties
AllowedExitCodes
Return codes that indicate that the software installed or updated successfully. Behaviour defaults to [0]
Declaration
[JsonProperty("allowedExitCodes")]
public virtual IList<int?> AllowedExitCodes { get; set; }
Property Value
Type | Description |
---|---|
IList<int?> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Interpreter
The script interpreter to use to run the script. If no interpreter is specified the script is executed directly, which likely only succeed for scripts with shebang lines.
Declaration
[JsonProperty("interpreter")]
public virtual string Interpreter { get; set; }
Property Value
Type | Description |
---|---|
string |
Script
Required. The shell script to be executed.
Declaration
[JsonProperty("script")]
public virtual string Script { get; set; }
Property Value
Type | Description |
---|---|
string |