source: vendor/google/apiclient-services/src/GKEHub/ServiceMeshState.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 2.9 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\GKEHub;
19
20class ServiceMeshState extends \Google\Collection
21{
22 protected $collection_key = 'conditions';
23 protected $analysisMessagesType = ServiceMeshAnalysisMessage::class;
24 protected $analysisMessagesDataType = 'array';
25 protected $conditionsType = ServiceMeshCondition::class;
26 protected $conditionsDataType = 'array';
27 /**
28 * @var string
29 */
30 public $configApiVersion;
31 protected $controlPlaneManagementType = ServiceMeshControlPlaneManagement::class;
32 protected $controlPlaneManagementDataType = '';
33 protected $dataPlaneManagementType = ServiceMeshDataPlaneManagement::class;
34 protected $dataPlaneManagementDataType = '';
35
36 /**
37 * @param ServiceMeshAnalysisMessage[]
38 */
39 public function setAnalysisMessages($analysisMessages)
40 {
41 $this->analysisMessages = $analysisMessages;
42 }
43 /**
44 * @return ServiceMeshAnalysisMessage[]
45 */
46 public function getAnalysisMessages()
47 {
48 return $this->analysisMessages;
49 }
50 /**
51 * @param ServiceMeshCondition[]
52 */
53 public function setConditions($conditions)
54 {
55 $this->conditions = $conditions;
56 }
57 /**
58 * @return ServiceMeshCondition[]
59 */
60 public function getConditions()
61 {
62 return $this->conditions;
63 }
64 /**
65 * @param string
66 */
67 public function setConfigApiVersion($configApiVersion)
68 {
69 $this->configApiVersion = $configApiVersion;
70 }
71 /**
72 * @return string
73 */
74 public function getConfigApiVersion()
75 {
76 return $this->configApiVersion;
77 }
78 /**
79 * @param ServiceMeshControlPlaneManagement
80 */
81 public function setControlPlaneManagement(ServiceMeshControlPlaneManagement $controlPlaneManagement)
82 {
83 $this->controlPlaneManagement = $controlPlaneManagement;
84 }
85 /**
86 * @return ServiceMeshControlPlaneManagement
87 */
88 public function getControlPlaneManagement()
89 {
90 return $this->controlPlaneManagement;
91 }
92 /**
93 * @param ServiceMeshDataPlaneManagement
94 */
95 public function setDataPlaneManagement(ServiceMeshDataPlaneManagement $dataPlaneManagement)
96 {
97 $this->dataPlaneManagement = $dataPlaneManagement;
98 }
99 /**
100 * @return ServiceMeshDataPlaneManagement
101 */
102 public function getDataPlaneManagement()
103 {
104 return $this->dataPlaneManagement;
105 }
106}
107
108// Adding a class alias for backwards compatibility with the previous class name.
109class_alias(ServiceMeshState::class, 'Google_Service_GKEHub_ServiceMeshState');
Note: See TracBrowser for help on using the repository browser.