Viewing file: BuildBazelRemoteExecutionV2Command.php (3.14 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */
class Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Command extends Google_Collection { protected $collection_key = 'outputPaths'; public $arguments; protected $environmentVariablesType = 'Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2CommandEnvironmentVariable'; protected $environmentVariablesDataType = 'array'; public $outputDirectories; public $outputFiles; public $outputNodeProperties; public $outputPaths; protected $platformType = 'Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Platform'; protected $platformDataType = ''; public $workingDirectory;
public function setArguments($arguments) { $this->arguments = $arguments; } public function getArguments() { return $this->arguments; } /** * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2CommandEnvironmentVariable[] */ public function setEnvironmentVariables($environmentVariables) { $this->environmentVariables = $environmentVariables; } /** * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2CommandEnvironmentVariable[] */ public function getEnvironmentVariables() { return $this->environmentVariables; } public function setOutputDirectories($outputDirectories) { $this->outputDirectories = $outputDirectories; } public function getOutputDirectories() { return $this->outputDirectories; } public function setOutputFiles($outputFiles) { $this->outputFiles = $outputFiles; } public function getOutputFiles() { return $this->outputFiles; } public function setOutputNodeProperties($outputNodeProperties) { $this->outputNodeProperties = $outputNodeProperties; } public function getOutputNodeProperties() { return $this->outputNodeProperties; } public function setOutputPaths($outputPaths) { $this->outputPaths = $outputPaths; } public function getOutputPaths() { return $this->outputPaths; } /** * @param Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Platform */ public function setPlatform(Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Platform $platform) { $this->platform = $platform; } /** * @return Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2Platform */ public function getPlatform() { return $this->platform; } public function setWorkingDirectory($workingDirectory) { $this->workingDirectory = $workingDirectory; } public function getWorkingDirectory() { return $this->workingDirectory; } }
|