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 BuildBazelRemoteExecutionV2RequestMetadata extends \Google\Model 21{ 22 public $actionId; 23 public $actionMnemonic; 24 public $configurationId; 25 public $correlatedInvocationsId; 26 public $targetId; 27 protected $toolDetailsType = BuildBazelRemoteExecutionV2ToolDetails::class; 28 protected $toolDetailsDataType = ''; 29 public $toolInvocationId; 30 31 public function setActionId($actionId) 32 { 33 $this->actionId = $actionId; 34 } 35 public function getActionId() 36 { 37 return $this->actionId; 38 } 39 public function setActionMnemonic($actionMnemonic) 40 { 41 $this->actionMnemonic = $actionMnemonic; 42 } 43 public function getActionMnemonic() 44 { 45 return $this->actionMnemonic; 46 } 47 public function setConfigurationId($configurationId) 48 { 49 $this->configurationId = $configurationId; 50 } 51 public function getConfigurationId() 52 { 53 return $this->configurationId; 54 } 55 public function setCorrelatedInvocationsId($correlatedInvocationsId) 56 { 57 $this->correlatedInvocationsId = $correlatedInvocationsId; 58 } 59 public function getCorrelatedInvocationsId() 60 { 61 return $this->correlatedInvocationsId; 62 } 63 public function setTargetId($targetId) 64 { 65 $this->targetId = $targetId; 66 } 67 public function getTargetId() 68 { 69 return $this->targetId; 70 } 71 /** 72 * @param BuildBazelRemoteExecutionV2ToolDetails 73 */ 74 public function setToolDetails(BuildBazelRemoteExecutionV2ToolDetails $toolDetails) 75 { 76 $this->toolDetails = $toolDetails; 77 } 78 /** 79 * @return BuildBazelRemoteExecutionV2ToolDetails 80 */ 81 public function getToolDetails() 82 { 83 return $this->toolDetails; 84 } 85 public function setToolInvocationId($toolInvocationId) 86 { 87 $this->toolInvocationId = $toolInvocationId; 88 } 89 public function getToolInvocationId() 90 { 91 return $this->toolInvocationId; 92 } 93} 94 95// Adding a class alias for backwards compatibility with the previous class name. 96class_alias(BuildBazelRemoteExecutionV2RequestMetadata::class, 'Google_Service_RemoteBuildExecution_BuildBazelRemoteExecutionV2RequestMetadata'); 97