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 BuildBazelRemoteExecutionV2ExecutedActionMetadata extends \Google\Collection 21{ 22 protected $collection_key = 'auxiliaryMetadata'; 23 public $auxiliaryMetadata; 24 public $executionCompletedTimestamp; 25 public $executionStartTimestamp; 26 public $inputFetchCompletedTimestamp; 27 public $inputFetchStartTimestamp; 28 public $outputUploadCompletedTimestamp; 29 public $outputUploadStartTimestamp; 30 public $queuedTimestamp; 31 public $worker; 32 public $workerCompletedTimestamp; 33 public $workerStartTimestamp; 34 35 public function setAuxiliaryMetadata($auxiliaryMetadata) 36 { 37 $this->auxiliaryMetadata = $auxiliaryMetadata; 38 } 39 public function getAuxiliaryMetadata() 40 { 41 return $this->auxiliaryMetadata; 42 } 43 public function setExecutionCompletedTimestamp($executionCompletedTimestamp) 44 { 45 $this->executionCompletedTimestamp = $executionCompletedTimestamp; 46 } 47 public function getExecutionCompletedTimestamp() 48 { 49 return $this->executionCompletedTimestamp; 50 } 51 public function setExecutionStartTimestamp($executionStartTimestamp) 52 { 53 $this->executionStartTimestamp = $executionStartTimestamp; 54 } 55 public function getExecutionStartTimestamp() 56 { 57 return $this->executionStartTimestamp; 58 } 59 public function setInputFetchCompletedTimestamp($inputFetchCompletedTimestamp) 60 { 61 $this->inputFetchCompletedTimestamp = $inputFetchCompletedTimestamp; 62 } 63 public function getInputFetchCompletedTimestamp() 64 { 65 return $this->inputFetchCompletedTimestamp; 66 } 67 public function setInputFetchStartTimestamp($inputFetchStartTimestamp) 68 { 69 $this->inputFetchStartTimestamp = $inputFetchStartTimestamp; 70 } 71 public function getInputFetchStartTimestamp() 72 { 73 return $this->inputFetchStartTimestamp; 74 } 75 public function setOutputUploadCompletedTimestamp($outputUploadCompletedTimestamp) 76 { 77 $this->outputUploadCompletedTimestamp = $outputUploadCompletedTimestamp; 78 } 79 public function getOutputUploadCompletedTimestamp() 80 { 81 return $this->outputUploadCompletedTimestamp; 82 } 83 public function setOutputUploadStartTimestamp($outputUploadStartTimestamp) 84 { 85 $this->outputUploadStartTimestamp = $outputUploadStartTimestamp; 86 } 87 public function getOutputUploadStartTimestamp() 88 { 89 return $this->outputUploadStartTimestamp; 90 } 91 public function setQueuedTimestamp($queuedTimestamp) 92 { 93 $this->queuedTimestamp = $queuedTimestamp; 94 } 95 public function getQueuedTimestamp() 96 { 97 return $this->queuedTimestamp; 98 } 99 public function setWorker($worker) 100 { 101 $this->worker = $worker; 102 } 103 public function getWorker() 104 { 105 return $this->worker; 106 } 107 public function setWorkerCompletedTimestamp($workerCompletedTimestamp) 108 { 109 $this->workerCompletedTimestamp = $workerCompletedTimestamp; 110 } 111 public function getWorkerCompletedTimestamp() 112 { 113 return $this->workerCompletedTimestamp; 114 } 115 public function setWorkerStartTimestamp($workerStartTimestamp) 116 { 117 $this->workerStartTimestamp = $workerStartTimestamp; 118 } 119 public function getWorkerStartTimestamp() 120 { 121 return $this->workerStartTimestamp; 122 } 123} 124 125// Adding a class alias for backwards compatibility with the previous class name. 126class_alias(BuildBazelRemoteExecutionV2ExecutedActionMetadata::class, 'Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2ExecutedActionMetadata'); 127