Configuration of the script to run during a bootstrap action.

 /// <summary>
 /// Sets the ScriptBootstrapAction property
 /// </summary>
 /// <param name="scriptBootstrapAction">The value to set for the ScriptBootstrapAction property </param>
 /// <returns>this instance</returns>
 public BootstrapActionConfig WithScriptBootstrapAction(ScriptBootstrapActionConfig scriptBootstrapAction)
 {
     this.scriptBootstrapAction = scriptBootstrapAction;
     return this;
 }
 /// <summary>
 /// Instantiates BootstrapActionConfig with the parameterized properties
 /// </summary>
 /// <param name="name">The name of the bootstrap action.</param>
 /// <param name="scriptBootstrapAction">The script run by the bootstrap action.</param>
 public BootstrapActionConfig(string name, ScriptBootstrapActionConfig scriptBootstrapAction)
 {
     _name = name;
     _scriptBootstrapAction = scriptBootstrapAction;
 }
 public BootstrapActionConfig WithScriptBootstrapAction(ScriptBootstrapActionConfig scriptBootstrapAction)
 {
     this.scriptBootstrapActionField = scriptBootstrapAction;
     return(this);
 }
 /// <summary>
 /// Instantiates BootstrapActionConfig with the parameterized properties
 /// </summary>
 /// <param name="name">The name of the bootstrap action.</param>
 /// <param name="scriptBootstrapAction">The script run by the bootstrap action.</param>
 public BootstrapActionConfig(string name, ScriptBootstrapActionConfig scriptBootstrapAction)
 {
     _name = name;
     _scriptBootstrapAction = scriptBootstrapAction;
 }