Show / Hide Table of Contents

Class StackScriptArgs

Inheritance
System.Object
InputArgs
ResourceArgs
StackScriptArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Linode
Assembly: Pulumi.Linode.dll
Syntax
public sealed class StackScriptArgs : ResourceArgs

Constructors

View Source

StackScriptArgs()

Declaration
public StackScriptArgs()

Properties

View Source

Description

A description for the StackScript.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Images

An array of Image IDs representing the Images that this StackScript is compatible for deploying with.

Declaration
public InputList<string> Images { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

IsPublic

This determines whether other users can use your StackScript. Once a StackScript is made public, it cannot be made private. Changing is_public forces the creation of a new StackScript

Declaration
public Input<bool> IsPublic { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Label

The StackScript's label is for display purposes only.

Declaration
public Input<string> Label { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RevNote

This field allows you to add notes for the set of revisions made to this StackScript.

Declaration
public Input<string> RevNote { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Script

The script to execute when provisioning a new Linode with this StackScript.

Declaration
public Input<string> Script { get; set; }
Property Value
Type Description
Input<System.String>
View Source

UserDefinedFields

This is a list of fields defined with a special syntax inside this StackScript that allow for supplying customized parameters during deployment.

Declaration
public InputList<StackScriptUserDefinedFieldArgs> UserDefinedFields { get; set; }
Property Value
Type Description
InputList<StackScriptUserDefinedFieldArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.