1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\RemoteBuildExecution;
19
20class GoogleDevtoolsRemoteworkersV1test2CommandTaskInputs extends \Google\Collection
21{
22  protected $collection_key = 'inlineBlobs';
23  public $arguments;
24  protected $environmentVariablesType = GoogleDevtoolsRemoteworkersV1test2CommandTaskInputsEnvironmentVariable::class;
25  protected $environmentVariablesDataType = 'array';
26  protected $filesType = GoogleDevtoolsRemoteworkersV1test2Digest::class;
27  protected $filesDataType = 'array';
28  protected $inlineBlobsType = GoogleDevtoolsRemoteworkersV1test2Blob::class;
29  protected $inlineBlobsDataType = 'array';
30  public $workingDirectory;
31
32  public function setArguments($arguments)
33  {
34    $this->arguments = $arguments;
35  }
36  public function getArguments()
37  {
38    return $this->arguments;
39  }
40  /**
41   * @param GoogleDevtoolsRemoteworkersV1test2CommandTaskInputsEnvironmentVariable[]
42   */
43  public function setEnvironmentVariables($environmentVariables)
44  {
45    $this->environmentVariables = $environmentVariables;
46  }
47  /**
48   * @return GoogleDevtoolsRemoteworkersV1test2CommandTaskInputsEnvironmentVariable[]
49   */
50  public function getEnvironmentVariables()
51  {
52    return $this->environmentVariables;
53  }
54  /**
55   * @param GoogleDevtoolsRemoteworkersV1test2Digest[]
56   */
57  public function setFiles($files)
58  {
59    $this->files = $files;
60  }
61  /**
62   * @return GoogleDevtoolsRemoteworkersV1test2Digest[]
63   */
64  public function getFiles()
65  {
66    return $this->files;
67  }
68  /**
69   * @param GoogleDevtoolsRemoteworkersV1test2Blob[]
70   */
71  public function setInlineBlobs($inlineBlobs)
72  {
73    $this->inlineBlobs = $inlineBlobs;
74  }
75  /**
76   * @return GoogleDevtoolsRemoteworkersV1test2Blob[]
77   */
78  public function getInlineBlobs()
79  {
80    return $this->inlineBlobs;
81  }
82  public function setWorkingDirectory($workingDirectory)
83  {
84    $this->workingDirectory = $workingDirectory;
85  }
86  public function getWorkingDirectory()
87  {
88    return $this->workingDirectory;
89  }
90}
91
92// Adding a class alias for backwards compatibility with the previous class name.
93class_alias(GoogleDevtoolsRemoteworkersV1test2CommandTaskInputs::class, 'Google_Service_RemoteBuildExecution_GoogleDevtoolsRemoteworkersV1test2CommandTaskInputs');
94