[f9c482b] | 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\Container;
|
---|
| 19 |
|
---|
| 20 | class NodePoolAutoConfig extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | protected $linuxNodeConfigType = LinuxNodeConfig::class;
|
---|
| 23 | protected $linuxNodeConfigDataType = '';
|
---|
| 24 | protected $networkTagsType = NetworkTags::class;
|
---|
| 25 | protected $networkTagsDataType = '';
|
---|
| 26 | protected $nodeKubeletConfigType = NodeKubeletConfig::class;
|
---|
| 27 | protected $nodeKubeletConfigDataType = '';
|
---|
| 28 | protected $resourceManagerTagsType = ResourceManagerTags::class;
|
---|
| 29 | protected $resourceManagerTagsDataType = '';
|
---|
| 30 |
|
---|
| 31 | /**
|
---|
| 32 | * @param LinuxNodeConfig
|
---|
| 33 | */
|
---|
| 34 | public function setLinuxNodeConfig(LinuxNodeConfig $linuxNodeConfig)
|
---|
| 35 | {
|
---|
| 36 | $this->linuxNodeConfig = $linuxNodeConfig;
|
---|
| 37 | }
|
---|
| 38 | /**
|
---|
| 39 | * @return LinuxNodeConfig
|
---|
| 40 | */
|
---|
| 41 | public function getLinuxNodeConfig()
|
---|
| 42 | {
|
---|
| 43 | return $this->linuxNodeConfig;
|
---|
| 44 | }
|
---|
| 45 | /**
|
---|
| 46 | * @param NetworkTags
|
---|
| 47 | */
|
---|
| 48 | public function setNetworkTags(NetworkTags $networkTags)
|
---|
| 49 | {
|
---|
| 50 | $this->networkTags = $networkTags;
|
---|
| 51 | }
|
---|
| 52 | /**
|
---|
| 53 | * @return NetworkTags
|
---|
| 54 | */
|
---|
| 55 | public function getNetworkTags()
|
---|
| 56 | {
|
---|
| 57 | return $this->networkTags;
|
---|
| 58 | }
|
---|
| 59 | /**
|
---|
| 60 | * @param NodeKubeletConfig
|
---|
| 61 | */
|
---|
| 62 | public function setNodeKubeletConfig(NodeKubeletConfig $nodeKubeletConfig)
|
---|
| 63 | {
|
---|
| 64 | $this->nodeKubeletConfig = $nodeKubeletConfig;
|
---|
| 65 | }
|
---|
| 66 | /**
|
---|
| 67 | * @return NodeKubeletConfig
|
---|
| 68 | */
|
---|
| 69 | public function getNodeKubeletConfig()
|
---|
| 70 | {
|
---|
| 71 | return $this->nodeKubeletConfig;
|
---|
| 72 | }
|
---|
| 73 | /**
|
---|
| 74 | * @param ResourceManagerTags
|
---|
| 75 | */
|
---|
| 76 | public function setResourceManagerTags(ResourceManagerTags $resourceManagerTags)
|
---|
| 77 | {
|
---|
| 78 | $this->resourceManagerTags = $resourceManagerTags;
|
---|
| 79 | }
|
---|
| 80 | /**
|
---|
| 81 | * @return ResourceManagerTags
|
---|
| 82 | */
|
---|
| 83 | public function getResourceManagerTags()
|
---|
| 84 | {
|
---|
| 85 | return $this->resourceManagerTags;
|
---|
| 86 | }
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 90 | class_alias(NodePoolAutoConfig::class, 'Google_Service_Container_NodePoolAutoConfig');
|
---|