source: vendor/google/apiclient-services/src/TrafficDirectorService/PerXdsConfig.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 3.3 KB
Line 
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\TrafficDirectorService;
19
20class PerXdsConfig extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $clientStatus;
26 protected $clusterConfigType = ClustersConfigDump::class;
27 protected $clusterConfigDataType = '';
28 protected $endpointConfigType = EndpointsConfigDump::class;
29 protected $endpointConfigDataType = '';
30 protected $listenerConfigType = ListenersConfigDump::class;
31 protected $listenerConfigDataType = '';
32 protected $routeConfigType = RoutesConfigDump::class;
33 protected $routeConfigDataType = '';
34 protected $scopedRouteConfigType = ScopedRoutesConfigDump::class;
35 protected $scopedRouteConfigDataType = '';
36 /**
37 * @var string
38 */
39 public $status;
40
41 /**
42 * @param string
43 */
44 public function setClientStatus($clientStatus)
45 {
46 $this->clientStatus = $clientStatus;
47 }
48 /**
49 * @return string
50 */
51 public function getClientStatus()
52 {
53 return $this->clientStatus;
54 }
55 /**
56 * @param ClustersConfigDump
57 */
58 public function setClusterConfig(ClustersConfigDump $clusterConfig)
59 {
60 $this->clusterConfig = $clusterConfig;
61 }
62 /**
63 * @return ClustersConfigDump
64 */
65 public function getClusterConfig()
66 {
67 return $this->clusterConfig;
68 }
69 /**
70 * @param EndpointsConfigDump
71 */
72 public function setEndpointConfig(EndpointsConfigDump $endpointConfig)
73 {
74 $this->endpointConfig = $endpointConfig;
75 }
76 /**
77 * @return EndpointsConfigDump
78 */
79 public function getEndpointConfig()
80 {
81 return $this->endpointConfig;
82 }
83 /**
84 * @param ListenersConfigDump
85 */
86 public function setListenerConfig(ListenersConfigDump $listenerConfig)
87 {
88 $this->listenerConfig = $listenerConfig;
89 }
90 /**
91 * @return ListenersConfigDump
92 */
93 public function getListenerConfig()
94 {
95 return $this->listenerConfig;
96 }
97 /**
98 * @param RoutesConfigDump
99 */
100 public function setRouteConfig(RoutesConfigDump $routeConfig)
101 {
102 $this->routeConfig = $routeConfig;
103 }
104 /**
105 * @return RoutesConfigDump
106 */
107 public function getRouteConfig()
108 {
109 return $this->routeConfig;
110 }
111 /**
112 * @param ScopedRoutesConfigDump
113 */
114 public function setScopedRouteConfig(ScopedRoutesConfigDump $scopedRouteConfig)
115 {
116 $this->scopedRouteConfig = $scopedRouteConfig;
117 }
118 /**
119 * @return ScopedRoutesConfigDump
120 */
121 public function getScopedRouteConfig()
122 {
123 return $this->scopedRouteConfig;
124 }
125 /**
126 * @param string
127 */
128 public function setStatus($status)
129 {
130 $this->status = $status;
131 }
132 /**
133 * @return string
134 */
135 public function getStatus()
136 {
137 return $this->status;
138 }
139}
140
141// Adding a class alias for backwards compatibility with the previous class name.
142class_alias(PerXdsConfig::class, 'Google_Service_TrafficDirectorService_PerXdsConfig');
Note: See TracBrowser for help on using the repository browser.