[e3d4e0a] | 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 |
|
---|
| 18 | namespace Google\Service\GKEOnPrem;
|
---|
| 19 |
|
---|
| 20 | class VmwareControlPlaneNodeConfig extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | protected $autoResizeConfigType = VmwareAutoResizeConfig::class;
|
---|
| 23 | protected $autoResizeConfigDataType = '';
|
---|
| 24 | /**
|
---|
| 25 | * @var string
|
---|
| 26 | */
|
---|
| 27 | public $cpus;
|
---|
| 28 | /**
|
---|
| 29 | * @var string
|
---|
| 30 | */
|
---|
| 31 | public $memory;
|
---|
| 32 | /**
|
---|
| 33 | * @var string
|
---|
| 34 | */
|
---|
| 35 | public $replicas;
|
---|
| 36 | protected $vsphereConfigType = VmwareControlPlaneVsphereConfig::class;
|
---|
| 37 | protected $vsphereConfigDataType = '';
|
---|
| 38 |
|
---|
| 39 | /**
|
---|
| 40 | * @param VmwareAutoResizeConfig
|
---|
| 41 | */
|
---|
| 42 | public function setAutoResizeConfig(VmwareAutoResizeConfig $autoResizeConfig)
|
---|
| 43 | {
|
---|
| 44 | $this->autoResizeConfig = $autoResizeConfig;
|
---|
| 45 | }
|
---|
| 46 | /**
|
---|
| 47 | * @return VmwareAutoResizeConfig
|
---|
| 48 | */
|
---|
| 49 | public function getAutoResizeConfig()
|
---|
| 50 | {
|
---|
| 51 | return $this->autoResizeConfig;
|
---|
| 52 | }
|
---|
| 53 | /**
|
---|
| 54 | * @param string
|
---|
| 55 | */
|
---|
| 56 | public function setCpus($cpus)
|
---|
| 57 | {
|
---|
| 58 | $this->cpus = $cpus;
|
---|
| 59 | }
|
---|
| 60 | /**
|
---|
| 61 | * @return string
|
---|
| 62 | */
|
---|
| 63 | public function getCpus()
|
---|
| 64 | {
|
---|
| 65 | return $this->cpus;
|
---|
| 66 | }
|
---|
| 67 | /**
|
---|
| 68 | * @param string
|
---|
| 69 | */
|
---|
| 70 | public function setMemory($memory)
|
---|
| 71 | {
|
---|
| 72 | $this->memory = $memory;
|
---|
| 73 | }
|
---|
| 74 | /**
|
---|
| 75 | * @return string
|
---|
| 76 | */
|
---|
| 77 | public function getMemory()
|
---|
| 78 | {
|
---|
| 79 | return $this->memory;
|
---|
| 80 | }
|
---|
| 81 | /**
|
---|
| 82 | * @param string
|
---|
| 83 | */
|
---|
| 84 | public function setReplicas($replicas)
|
---|
| 85 | {
|
---|
| 86 | $this->replicas = $replicas;
|
---|
| 87 | }
|
---|
| 88 | /**
|
---|
| 89 | * @return string
|
---|
| 90 | */
|
---|
| 91 | public function getReplicas()
|
---|
| 92 | {
|
---|
| 93 | return $this->replicas;
|
---|
| 94 | }
|
---|
| 95 | /**
|
---|
| 96 | * @param VmwareControlPlaneVsphereConfig
|
---|
| 97 | */
|
---|
| 98 | public function setVsphereConfig(VmwareControlPlaneVsphereConfig $vsphereConfig)
|
---|
| 99 | {
|
---|
| 100 | $this->vsphereConfig = $vsphereConfig;
|
---|
| 101 | }
|
---|
| 102 | /**
|
---|
| 103 | * @return VmwareControlPlaneVsphereConfig
|
---|
| 104 | */
|
---|
| 105 | public function getVsphereConfig()
|
---|
| 106 | {
|
---|
| 107 | return $this->vsphereConfig;
|
---|
| 108 | }
|
---|
| 109 | }
|
---|
| 110 |
|
---|
| 111 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 112 | class_alias(VmwareControlPlaneNodeConfig::class, 'Google_Service_GKEOnPrem_VmwareControlPlaneNodeConfig');
|
---|