vm = $vm; } /** * @return string */ public function getVm() { return $this->vm; } /** * The VM creation configuration * * @param VmCreationConfig $vmCreationConfig */ public function setVmCreationConfig(VmCreationConfig $vmCreationConfig) { $this->vmCreationConfig = $vmCreationConfig; } /** * @return VmCreationConfig */ public function getVmCreationConfig() { return $this->vmCreationConfig; } /** * The port that will be open on the bastion host. * * @param int $vmPort */ public function setVmPort($vmPort) { $this->vmPort = $vmPort; } /** * @return int */ public function getVmPort() { return $this->vmPort; } /** * The VM selection configuration * * @param VmSelectionConfig $vmSelectionConfig */ public function setVmSelectionConfig(VmSelectionConfig $vmSelectionConfig) { $this->vmSelectionConfig = $vmSelectionConfig; } /** * @return VmSelectionConfig */ public function getVmSelectionConfig() { return $this->vmSelectionConfig; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GenerateSshScriptRequest::class, 'Google_Service_DatabaseMigrationService_GenerateSshScriptRequest');