delays = $delays; } /** * @return RolloutPlanWaveOrchestrationOptionsDelay[] */ public function getDelays() { return $this->delays; } /** * Optional. Maximum number of locations to be orchestrated in parallel. * * @param string $maxConcurrentLocations */ public function setMaxConcurrentLocations($maxConcurrentLocations) { $this->maxConcurrentLocations = $maxConcurrentLocations; } /** * @return string */ public function getMaxConcurrentLocations() { return $this->maxConcurrentLocations; } /** * Optional. Maximum number of resources to be orchestrated per location in * parallel. * * @param string $maxConcurrentResourcesPerLocation */ public function setMaxConcurrentResourcesPerLocation($maxConcurrentResourcesPerLocation) { $this->maxConcurrentResourcesPerLocation = $maxConcurrentResourcesPerLocation; } /** * @return string */ public function getMaxConcurrentResourcesPerLocation() { return $this->maxConcurrentResourcesPerLocation; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RolloutPlanWaveOrchestrationOptions::class, 'Google_Service_Compute_RolloutPlanWaveOrchestrationOptions');