Ei kuvausta

AddonsConfig.php 2.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. class Google_Service_Container_AddonsConfig extends Google_Model
  18. {
  19. protected $horizontalPodAutoscalingType = 'Google_Service_Container_HorizontalPodAutoscaling';
  20. protected $horizontalPodAutoscalingDataType = '';
  21. protected $httpLoadBalancingType = 'Google_Service_Container_HttpLoadBalancing';
  22. protected $httpLoadBalancingDataType = '';
  23. protected $kubernetesDashboardType = 'Google_Service_Container_KubernetesDashboard';
  24. protected $kubernetesDashboardDataType = '';
  25. protected $networkPolicyConfigType = 'Google_Service_Container_NetworkPolicyConfig';
  26. protected $networkPolicyConfigDataType = '';
  27. /**
  28. * @param Google_Service_Container_HorizontalPodAutoscaling
  29. */
  30. public function setHorizontalPodAutoscaling(Google_Service_Container_HorizontalPodAutoscaling $horizontalPodAutoscaling)
  31. {
  32. $this->horizontalPodAutoscaling = $horizontalPodAutoscaling;
  33. }
  34. /**
  35. * @return Google_Service_Container_HorizontalPodAutoscaling
  36. */
  37. public function getHorizontalPodAutoscaling()
  38. {
  39. return $this->horizontalPodAutoscaling;
  40. }
  41. /**
  42. * @param Google_Service_Container_HttpLoadBalancing
  43. */
  44. public function setHttpLoadBalancing(Google_Service_Container_HttpLoadBalancing $httpLoadBalancing)
  45. {
  46. $this->httpLoadBalancing = $httpLoadBalancing;
  47. }
  48. /**
  49. * @return Google_Service_Container_HttpLoadBalancing
  50. */
  51. public function getHttpLoadBalancing()
  52. {
  53. return $this->httpLoadBalancing;
  54. }
  55. /**
  56. * @param Google_Service_Container_KubernetesDashboard
  57. */
  58. public function setKubernetesDashboard(Google_Service_Container_KubernetesDashboard $kubernetesDashboard)
  59. {
  60. $this->kubernetesDashboard = $kubernetesDashboard;
  61. }
  62. /**
  63. * @return Google_Service_Container_KubernetesDashboard
  64. */
  65. public function getKubernetesDashboard()
  66. {
  67. return $this->kubernetesDashboard;
  68. }
  69. /**
  70. * @param Google_Service_Container_NetworkPolicyConfig
  71. */
  72. public function setNetworkPolicyConfig(Google_Service_Container_NetworkPolicyConfig $networkPolicyConfig)
  73. {
  74. $this->networkPolicyConfig = $networkPolicyConfig;
  75. }
  76. /**
  77. * @return Google_Service_Container_NetworkPolicyConfig
  78. */
  79. public function getNetworkPolicyConfig()
  80. {
  81. return $this->networkPolicyConfig;
  82. }
  83. }