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\OSConfig; 19 20class OSPolicyAssignment extends \Google\Collection 21{ 22 protected $collection_key = 'osPolicies'; 23 /** 24 * @var bool 25 */ 26 public $baseline; 27 /** 28 * @var bool 29 */ 30 public $deleted; 31 /** 32 * @var string 33 */ 34 public $description; 35 /** 36 * @var string 37 */ 38 public $etag; 39 protected $instanceFilterType = OSPolicyAssignmentInstanceFilter::class; 40 protected $instanceFilterDataType = ''; 41 /** 42 * @var string 43 */ 44 public $name; 45 protected $osPoliciesType = OSPolicy::class; 46 protected $osPoliciesDataType = 'array'; 47 /** 48 * @var bool 49 */ 50 public $reconciling; 51 /** 52 * @var string 53 */ 54 public $revisionCreateTime; 55 /** 56 * @var string 57 */ 58 public $revisionId; 59 protected $rolloutType = OSPolicyAssignmentRollout::class; 60 protected $rolloutDataType = ''; 61 /** 62 * @var string 63 */ 64 public $rolloutState; 65 /** 66 * @var string 67 */ 68 public $uid; 69 70 /** 71 * @param bool 72 */ 73 public function setBaseline($baseline) 74 { 75 $this->baseline = $baseline; 76 } 77 /** 78 * @return bool 79 */ 80 public function getBaseline() 81 { 82 return $this->baseline; 83 } 84 /** 85 * @param bool 86 */ 87 public function setDeleted($deleted) 88 { 89 $this->deleted = $deleted; 90 } 91 /** 92 * @return bool 93 */ 94 public function getDeleted() 95 { 96 return $this->deleted; 97 } 98 /** 99 * @param string 100 */ 101 public function setDescription($description) 102 { 103 $this->description = $description; 104 } 105 /** 106 * @return string 107 */ 108 public function getDescription() 109 { 110 return $this->description; 111 } 112 /** 113 * @param string 114 */ 115 public function setEtag($etag) 116 { 117 $this->etag = $etag; 118 } 119 /** 120 * @return string 121 */ 122 public function getEtag() 123 { 124 return $this->etag; 125 } 126 /** 127 * @param OSPolicyAssignmentInstanceFilter 128 */ 129 public function setInstanceFilter(OSPolicyAssignmentInstanceFilter $instanceFilter) 130 { 131 $this->instanceFilter = $instanceFilter; 132 } 133 /** 134 * @return OSPolicyAssignmentInstanceFilter 135 */ 136 public function getInstanceFilter() 137 { 138 return $this->instanceFilter; 139 } 140 /** 141 * @param string 142 */ 143 public function setName($name) 144 { 145 $this->name = $name; 146 } 147 /** 148 * @return string 149 */ 150 public function getName() 151 { 152 return $this->name; 153 } 154 /** 155 * @param OSPolicy[] 156 */ 157 public function setOsPolicies($osPolicies) 158 { 159 $this->osPolicies = $osPolicies; 160 } 161 /** 162 * @return OSPolicy[] 163 */ 164 public function getOsPolicies() 165 { 166 return $this->osPolicies; 167 } 168 /** 169 * @param bool 170 */ 171 public function setReconciling($reconciling) 172 { 173 $this->reconciling = $reconciling; 174 } 175 /** 176 * @return bool 177 */ 178 public function getReconciling() 179 { 180 return $this->reconciling; 181 } 182 /** 183 * @param string 184 */ 185 public function setRevisionCreateTime($revisionCreateTime) 186 { 187 $this->revisionCreateTime = $revisionCreateTime; 188 } 189 /** 190 * @return string 191 */ 192 public function getRevisionCreateTime() 193 { 194 return $this->revisionCreateTime; 195 } 196 /** 197 * @param string 198 */ 199 public function setRevisionId($revisionId) 200 { 201 $this->revisionId = $revisionId; 202 } 203 /** 204 * @return string 205 */ 206 public function getRevisionId() 207 { 208 return $this->revisionId; 209 } 210 /** 211 * @param OSPolicyAssignmentRollout 212 */ 213 public function setRollout(OSPolicyAssignmentRollout $rollout) 214 { 215 $this->rollout = $rollout; 216 } 217 /** 218 * @return OSPolicyAssignmentRollout 219 */ 220 public function getRollout() 221 { 222 return $this->rollout; 223 } 224 /** 225 * @param string 226 */ 227 public function setRolloutState($rolloutState) 228 { 229 $this->rolloutState = $rolloutState; 230 } 231 /** 232 * @return string 233 */ 234 public function getRolloutState() 235 { 236 return $this->rolloutState; 237 } 238 /** 239 * @param string 240 */ 241 public function setUid($uid) 242 { 243 $this->uid = $uid; 244 } 245 /** 246 * @return string 247 */ 248 public function getUid() 249 { 250 return $this->uid; 251 } 252} 253 254// Adding a class alias for backwards compatibility with the previous class name. 255class_alias(OSPolicyAssignment::class, 'Google_Service_OSConfig_OSPolicyAssignment'); 256