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\AIPlatformNotebooks; 19 20class Runtime extends \Google\Model 21{ 22 protected $accessConfigType = RuntimeAccessConfig::class; 23 protected $accessConfigDataType = ''; 24 /** 25 * @var string 26 */ 27 public $createTime; 28 /** 29 * @var string 30 */ 31 public $healthState; 32 protected $metricsType = RuntimeMetrics::class; 33 protected $metricsDataType = ''; 34 /** 35 * @var string 36 */ 37 public $name; 38 protected $softwareConfigType = RuntimeSoftwareConfig::class; 39 protected $softwareConfigDataType = ''; 40 /** 41 * @var string 42 */ 43 public $state; 44 /** 45 * @var string 46 */ 47 public $updateTime; 48 protected $virtualMachineType = VirtualMachine::class; 49 protected $virtualMachineDataType = ''; 50 51 /** 52 * @param RuntimeAccessConfig 53 */ 54 public function setAccessConfig(RuntimeAccessConfig $accessConfig) 55 { 56 $this->accessConfig = $accessConfig; 57 } 58 /** 59 * @return RuntimeAccessConfig 60 */ 61 public function getAccessConfig() 62 { 63 return $this->accessConfig; 64 } 65 /** 66 * @param string 67 */ 68 public function setCreateTime($createTime) 69 { 70 $this->createTime = $createTime; 71 } 72 /** 73 * @return string 74 */ 75 public function getCreateTime() 76 { 77 return $this->createTime; 78 } 79 /** 80 * @param string 81 */ 82 public function setHealthState($healthState) 83 { 84 $this->healthState = $healthState; 85 } 86 /** 87 * @return string 88 */ 89 public function getHealthState() 90 { 91 return $this->healthState; 92 } 93 /** 94 * @param RuntimeMetrics 95 */ 96 public function setMetrics(RuntimeMetrics $metrics) 97 { 98 $this->metrics = $metrics; 99 } 100 /** 101 * @return RuntimeMetrics 102 */ 103 public function getMetrics() 104 { 105 return $this->metrics; 106 } 107 /** 108 * @param string 109 */ 110 public function setName($name) 111 { 112 $this->name = $name; 113 } 114 /** 115 * @return string 116 */ 117 public function getName() 118 { 119 return $this->name; 120 } 121 /** 122 * @param RuntimeSoftwareConfig 123 */ 124 public function setSoftwareConfig(RuntimeSoftwareConfig $softwareConfig) 125 { 126 $this->softwareConfig = $softwareConfig; 127 } 128 /** 129 * @return RuntimeSoftwareConfig 130 */ 131 public function getSoftwareConfig() 132 { 133 return $this->softwareConfig; 134 } 135 /** 136 * @param string 137 */ 138 public function setState($state) 139 { 140 $this->state = $state; 141 } 142 /** 143 * @return string 144 */ 145 public function getState() 146 { 147 return $this->state; 148 } 149 /** 150 * @param string 151 */ 152 public function setUpdateTime($updateTime) 153 { 154 $this->updateTime = $updateTime; 155 } 156 /** 157 * @return string 158 */ 159 public function getUpdateTime() 160 { 161 return $this->updateTime; 162 } 163 /** 164 * @param VirtualMachine 165 */ 166 public function setVirtualMachine(VirtualMachine $virtualMachine) 167 { 168 $this->virtualMachine = $virtualMachine; 169 } 170 /** 171 * @return VirtualMachine 172 */ 173 public function getVirtualMachine() 174 { 175 return $this->virtualMachine; 176 } 177} 178 179// Adding a class alias for backwards compatibility with the previous class name. 180class_alias(Runtime::class, 'Google_Service_AIPlatformNotebooks_Runtime'); 181