allowedSuccessCodes = $allowedSuccessCodes;
}
/**
* @return int[]
*/
public function getAllowedSuccessCodes()
{
return $this->allowedSuccessCodes;
}
/**
* @param GcsObject
*/
public function setGcsObject(GcsObject $gcsObject)
{
$this->gcsObject = $gcsObject;
}
/**
* @return GcsObject
*/
public function getGcsObject()
{
return $this->gcsObject;
}
/**
* @param string
*/
public function setInterpreter($interpreter)
{
$this->interpreter = $interpreter;
}
/**
* @return string
*/
public function getInterpreter()
{
return $this->interpreter;
}
/**
* @param string
*/
public function setLocalPath($localPath)
{
$this->localPath = $localPath;
}
/**
* @return string
*/
public function getLocalPath()
{
return $this->localPath;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ExecStepConfig::class, 'Google_Service_OSConfig_ExecStepConfig');