JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Service\VMwareEngine; class UnmountDatastoreRequest extends \Google\Model { /** * Required. The resource name of the datastore to unmount. Resource names are * schemeless URIs that follow the conventions in * https://cloud.google.com/apis/design/resource_names. For example: * `projects/my-project/locations/us-central1/datastores/my-datastore` * * @var string */ public $datastore; /** * Optional. The request ID must be a valid UUID with the exception that zero * UUID is not supported (00000000-0000-0000-0000-000000000000). * * @var string */ public $requestId; /** * Required. The resource name of the datastore to unmount. Resource names are * schemeless URIs that follow the conventions in * https://cloud.google.com/apis/design/resource_names. For example: * `projects/my-project/locations/us-central1/datastores/my-datastore` * * @param string $datastore */ public function setDatastore($datastore) { $this->datastore = $datastore; } /** * @return string */ public function getDatastore() { return $this->datastore; } /** * Optional. The request ID must be a valid UUID with the exception that zero * UUID is not supported (00000000-0000-0000-0000-000000000000). * * @param string $requestId */ public function setRequestId($requestId) { $this->requestId = $requestId; } /** * @return string */ public function getRequestId() { return $this->requestId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UnmountDatastoreRequest::class, 'Google_Service_VMwareEngine_UnmountDatastoreRequest');