<?php
/*
* 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.
*/
/**
* The "addresses" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $addresses = $computeService->addresses;
* </code>
*/
class Google_AddressesServiceResource extends Google_ServiceResource {
/**
* Retrieves the list of addresses grouped by scope. (addresses.aggregatedList)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_AddressAggregatedList
*/
public function aggregatedList($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('aggregatedList', array($params));
if ($this->useObjects()) {
return new Google_AddressAggregatedList($data);
} else {
return $data;
}
}
/**
* Deletes the specified address resource. (addresses.delete)
*
* @param string $project Name of the project scoping this request.
* @param string $region Name of the region scoping this request.
* @param string $address Name of the address resource to delete.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function delete($project, $region, $address, $optParams = array()) {
$params = array('project' => $project, 'region' => $region, 'address' => $address);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Returns the specified address resource. (addresses.get)
*
* @param string $project Name of the project scoping this request.
* @param string $region Name of the region scoping this request.
* @param string $address Name of the address resource to return.
* @param array $optParams Optional parameters.
* @return Google_Address
*/
public function get($project, $region, $address, $optParams = array()) {
$params = array('project' => $project, 'region' => $region, 'address' => $address);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Address($data);
} else {
return $data;
}
}
/**
* Creates an address resource in the specified project using the data included in the request.
* (addresses.insert)
*
* @param string $project Name of the project scoping this request.
* @param string $region Name of the region scoping this request.
* @param Google_Address $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function insert($project, $region, Google_Address $postBody, $optParams = array()) {
$params = array('project' => $project, 'region' => $region, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Retrieves the list of address resources contained within the specified region. (addresses.list)
*
* @param string $project Name of the project scoping this request.
* @param string $region Name of the region scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_AddressList
*/
public function listAddresses($project, $region, $optParams = array()) {
$params = array('project' => $project, 'region' => $region);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_AddressList($data);
} else {
return $data;
}
}
}
/**
* The "disks" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $disks = $computeService->disks;
* </code>
*/
class Google_DisksServiceResource extends Google_ServiceResource {
/**
* Retrieves the list of disks grouped by scope. (disks.aggregatedList)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_DiskAggregatedList
*/
public function aggregatedList($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('aggregatedList', array($params));
if ($this->useObjects()) {
return new Google_DiskAggregatedList($data);
} else {
return $data;
}
}
/**
* (disks.createSnapshot)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param string $disk Name of the persistent disk resource to delete.
* @param Google_Snapshot $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function createSnapshot($project, $zone, $disk, Google_Snapshot $postBody, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'disk' => $disk, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('createSnapshot', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Deletes the specified persistent disk resource. (disks.delete)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param string $disk Name of the persistent disk resource to delete.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function delete($project, $zone, $disk, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'disk' => $disk);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Returns the specified persistent disk resource. (disks.get)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param string $disk Name of the persistent disk resource to return.
* @param array $optParams Optional parameters.
* @return Google_Disk
*/
public function get($project, $zone, $disk, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'disk' => $disk);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Disk($data);
} else {
return $data;
}
}
/**
* Creates a persistent disk resource in the specified project using the data included in the
* request. (disks.insert)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param Google_Disk $postBody
* @param array $optParams Optional parameters.
*
* @opt_param string sourceImage Optional. Source image to restore onto a disk.
* @return Google_Operation
*/
public function insert($project, $zone, Google_Disk $postBody, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Retrieves the list of persistent disk resources contained within the specified zone. (disks.list)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_DiskList
*/
public function listDisks($project, $zone, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_DiskList($data);
} else {
return $data;
}
}
}
/**
* The "firewalls" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $firewalls = $computeService->firewalls;
* </code>
*/
class Google_FirewallsServiceResource extends Google_ServiceResource {
/**
* Deletes the specified firewall resource. (firewalls.delete)
*
* @param string $project Name of the project scoping this request.
* @param string $firewall Name of the firewall resource to delete.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function delete($project, $firewall, $optParams = array()) {
$params = array('project' => $project, 'firewall' => $firewall);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Returns the specified firewall resource. (firewalls.get)
*
* @param string $project Name of the project scoping this request.
* @param string $firewall Name of the firewall resource to return.
* @param array $optParams Optional parameters.
* @return Google_Firewall
*/
public function get($project, $firewall, $optParams = array()) {
$params = array('project' => $project, 'firewall' => $firewall);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Firewall($data);
} else {
return $data;
}
}
/**
* Creates a firewall resource in the specified project using the data included in the request.
* (firewalls.insert)
*
* @param string $project Name of the project scoping this request.
* @param Google_Firewall $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function insert($project, Google_Firewall $postBody, $optParams = array()) {
$params = array('project' => $project, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Retrieves the list of firewall resources available to the specified project. (firewalls.list)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_FirewallList
*/
public function listFirewalls($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_FirewallList($data);
} else {
return $data;
}
}
/**
* Updates the specified firewall resource with the data included in the request. This method
* supports patch semantics. (firewalls.patch)
*
* @param string $project Name of the project scoping this request.
* @param string $firewall Name of the firewall resource to update.
* @param Google_Firewall $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function patch($project, $firewall, Google_Firewall $postBody, $optParams = array()) {
$params = array('project' => $project, 'firewall' => $firewall, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('patch', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Updates the specified firewall resource with the data included in the request. (firewalls.update)
*
* @param string $project Name of the project scoping this request.
* @param string $firewall Name of the firewall resource to update.
* @param Google_Firewall $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function update($project, $firewall, Google_Firewall $postBody, $optParams = array()) {
$params = array('project' => $project, 'firewall' => $firewall, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('update', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
}
/**
* The "globalOperations" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $globalOperations = $computeService->globalOperations;
* </code>
*/
class Google_GlobalOperationsServiceResource extends Google_ServiceResource {
/**
* Retrieves the list of all operations grouped by scope. (globalOperations.aggregatedList)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_OperationAggregatedList
*/
public function aggregatedList($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('aggregatedList', array($params));
if ($this->useObjects()) {
return new Google_OperationAggregatedList($data);
} else {
return $data;
}
}
/**
* Deletes the specified operation resource. (globalOperations.delete)
*
* @param string $project Name of the project scoping this request.
* @param string $operation Name of the operation resource to delete.
* @param array $optParams Optional parameters.
*/
public function delete($project, $operation, $optParams = array()) {
$params = array('project' => $project, 'operation' => $operation);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
return $data;
}
/**
* Retrieves the specified operation resource. (globalOperations.get)
*
* @param string $project Name of the project scoping this request.
* @param string $operation Name of the operation resource to return.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function get($project, $operation, $optParams = array()) {
$params = array('project' => $project, 'operation' => $operation);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Retrieves the list of operation resources contained within the specified project.
* (globalOperations.list)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_OperationList
*/
public function listGlobalOperations($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_OperationList($data);
} else {
return $data;
}
}
}
/**
* The "images" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $images = $computeService->images;
* </code>
*/
class Google_ImagesServiceResource extends Google_ServiceResource {
/**
* Deletes the specified image resource. (images.delete)
*
* @param string $project Name of the project scoping this request.
* @param string $image Name of the image resource to delete.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function delete($project, $image, $optParams = array()) {
$params = array('project' => $project, 'image' => $image);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Sets the deprecation status of an image. If no message body is given, clears the deprecation
* status instead. (images.deprecate)
*
* @param string $project Name of the project scoping this request.
* @param string $image Image name.
* @param Google_DeprecationStatus $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function deprecate($project, $image, Google_DeprecationStatus $postBody, $optParams = array()) {
$params = array('project' => $project, 'image' => $image, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('deprecate', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Returns the specified image resource. (images.get)
*
* @param string $project Name of the project scoping this request.
* @param string $image Name of the image resource to return.
* @param array $optParams Optional parameters.
* @return Google_Image
*/
public function get($project, $image, $optParams = array()) {
$params = array('project' => $project, 'image' => $image);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Image($data);
} else {
return $data;
}
}
/**
* Creates an image resource in the specified project using the data included in the request.
* (images.insert)
*
* @param string $project Name of the project scoping this request.
* @param Google_Image $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function insert($project, Google_Image $postBody, $optParams = array()) {
$params = array('project' => $project, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Retrieves the list of image resources available to the specified project. (images.list)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_ImageList
*/
public function listImages($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_ImageList($data);
} else {
return $data;
}
}
}
/**
* The "instances" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $instances = $computeService->instances;
* </code>
*/
class Google_InstancesServiceResource extends Google_ServiceResource {
/**
* Adds an access config to an instance's network interface. (instances.addAccessConfig)
*
* @param string $project Project name.
* @param string $zone Name of the zone scoping this request.
* @param string $instance Instance name.
* @param string $networkInterface Network interface name.
* @param Google_AccessConfig $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function addAccessConfig($project, $zone, $instance, $networkInterface, Google_AccessConfig $postBody, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'networkInterface' => $networkInterface, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('addAccessConfig', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* (instances.aggregatedList)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_InstanceAggregatedList
*/
public function aggregatedList($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('aggregatedList', array($params));
if ($this->useObjects()) {
return new Google_InstanceAggregatedList($data);
} else {
return $data;
}
}
/**
* Attaches a disk resource to an instance. (instances.attachDisk)
*
* @param string $project Project name.
* @param string $zone Name of the zone scoping this request.
* @param string $instance Instance name.
* @param Google_AttachedDisk $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function attachDisk($project, $zone, $instance, Google_AttachedDisk $postBody, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('attachDisk', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Deletes the specified instance resource. (instances.delete)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param string $instance Name of the instance resource to delete.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function delete($project, $zone, $instance, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'instance' => $instance);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Deletes an access config from an instance's network interface. (instances.deleteAccessConfig)
*
* @param string $project Project name.
* @param string $zone Name of the zone scoping this request.
* @param string $instance Instance name.
* @param string $accessConfig Access config name.
* @param string $networkInterface Network interface name.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function deleteAccessConfig($project, $zone, $instance, $accessConfig, $networkInterface, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'accessConfig' => $accessConfig, 'networkInterface' => $networkInterface);
$params = array_merge($params, $optParams);
$data = $this->__call('deleteAccessConfig', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Detaches a disk from an instance. (instances.detachDisk)
*
* @param string $project Project name.
* @param string $zone Name of the zone scoping this request.
* @param string $instance Instance name.
* @param string $deviceName Disk device name to detach.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function detachDisk($project, $zone, $instance, $deviceName, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'deviceName' => $deviceName);
$params = array_merge($params, $optParams);
$data = $this->__call('detachDisk', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Returns the specified instance resource. (instances.get)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param string $instance Name of the instance resource to return.
* @param array $optParams Optional parameters.
* @return Google_Instance
*/
public function get($project, $zone, $instance, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'instance' => $instance);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Instance($data);
} else {
return $data;
}
}
/**
* Returns the specified instance's serial port output. (instances.getSerialPortOutput)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param string $instance Name of the instance scoping this request.
* @param array $optParams Optional parameters.
* @return Google_SerialPortOutput
*/
public function getSerialPortOutput($project, $zone, $instance, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'instance' => $instance);
$params = array_merge($params, $optParams);
$data = $this->__call('getSerialPortOutput', array($params));
if ($this->useObjects()) {
return new Google_SerialPortOutput($data);
} else {
return $data;
}
}
/**
* Creates an instance resource in the specified project using the data included in the request.
* (instances.insert)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param Google_Instance $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function insert($project, $zone, Google_Instance $postBody, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Retrieves the list of instance resources contained within the specified zone. (instances.list)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_InstanceList
*/
public function listInstances($project, $zone, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_InstanceList($data);
} else {
return $data;
}
}
/**
* Performs a hard reset on the instance. (instances.reset)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param string $instance Name of the instance scoping this request.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function reset($project, $zone, $instance, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'instance' => $instance);
$params = array_merge($params, $optParams);
$data = $this->__call('reset', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Sets metadata for the specified instance to the data included in the request.
* (instances.setMetadata)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param string $instance Name of the instance scoping this request.
* @param Google_Metadata $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function setMetadata($project, $zone, $instance, Google_Metadata $postBody, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('setMetadata', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Sets tags for the specified instance to the data included in the request. (instances.setTags)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param string $instance Name of the instance scoping this request.
* @param Google_Tags $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function setTags($project, $zone, $instance, Google_Tags $postBody, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'instance' => $instance, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('setTags', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
}
/**
* The "kernels" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $kernels = $computeService->kernels;
* </code>
*/
class Google_KernelsServiceResource extends Google_ServiceResource {
/**
* Returns the specified kernel resource. (kernels.get)
*
* @param string $project Name of the project scoping this request.
* @param string $kernel Name of the kernel resource to return.
* @param array $optParams Optional parameters.
* @return Google_Kernel
*/
public function get($project, $kernel, $optParams = array()) {
$params = array('project' => $project, 'kernel' => $kernel);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Kernel($data);
} else {
return $data;
}
}
/**
* Retrieves the list of kernel resources available to the specified project. (kernels.list)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_KernelList
*/
public function listKernels($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_KernelList($data);
} else {
return $data;
}
}
}
/**
* The "machineTypes" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $machineTypes = $computeService->machineTypes;
* </code>
*/
class Google_MachineTypesServiceResource extends Google_ServiceResource {
/**
* Retrieves the list of machine type resources grouped by scope. (machineTypes.aggregatedList)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_MachineTypeAggregatedList
*/
public function aggregatedList($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('aggregatedList', array($params));
if ($this->useObjects()) {
return new Google_MachineTypeAggregatedList($data);
} else {
return $data;
}
}
/**
* Returns the specified machine type resource. (machineTypes.get)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param string $machineType Name of the machine type resource to return.
* @param array $optParams Optional parameters.
* @return Google_MachineType
*/
public function get($project, $zone, $machineType, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'machineType' => $machineType);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_MachineType($data);
} else {
return $data;
}
}
/**
* Retrieves the list of machine type resources available to the specified project.
* (machineTypes.list)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_MachineTypeList
*/
public function listMachineTypes($project, $zone, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_MachineTypeList($data);
} else {
return $data;
}
}
}
/**
* The "networks" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $networks = $computeService->networks;
* </code>
*/
class Google_NetworksServiceResource extends Google_ServiceResource {
/**
* Deletes the specified network resource. (networks.delete)
*
* @param string $project Name of the project scoping this request.
* @param string $network Name of the network resource to delete.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function delete($project, $network, $optParams = array()) {
$params = array('project' => $project, 'network' => $network);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Returns the specified network resource. (networks.get)
*
* @param string $project Name of the project scoping this request.
* @param string $network Name of the network resource to return.
* @param array $optParams Optional parameters.
* @return Google_Network
*/
public function get($project, $network, $optParams = array()) {
$params = array('project' => $project, 'network' => $network);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Network($data);
} else {
return $data;
}
}
/**
* Creates a network resource in the specified project using the data included in the request.
* (networks.insert)
*
* @param string $project Name of the project scoping this request.
* @param Google_Network $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function insert($project, Google_Network $postBody, $optParams = array()) {
$params = array('project' => $project, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Retrieves the list of network resources available to the specified project. (networks.list)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_NetworkList
*/
public function listNetworks($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_NetworkList($data);
} else {
return $data;
}
}
}
/**
* The "projects" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $projects = $computeService->projects;
* </code>
*/
class Google_ProjectsServiceResource extends Google_ServiceResource {
/**
* Returns the specified project resource. (projects.get)
*
* @param string $project Name of the project resource to retrieve.
* @param array $optParams Optional parameters.
* @return Google_Project
*/
public function get($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Project($data);
} else {
return $data;
}
}
/**
* Sets metadata common to all instances within the specified project using the data included in the
* request. (projects.setCommonInstanceMetadata)
*
* @param string $project Name of the project scoping this request.
* @param Google_Metadata $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function setCommonInstanceMetadata($project, Google_Metadata $postBody, $optParams = array()) {
$params = array('project' => $project, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('setCommonInstanceMetadata', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
}
/**
* The "regionOperations" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $regionOperations = $computeService->regionOperations;
* </code>
*/
class Google_RegionOperationsServiceResource extends Google_ServiceResource {
/**
* Deletes the specified region-specific operation resource. (regionOperations.delete)
*
* @param string $project Name of the project scoping this request.
* @param string $region Name of the region scoping this request.
* @param string $operation Name of the operation resource to delete.
* @param array $optParams Optional parameters.
*/
public function delete($project, $region, $operation, $optParams = array()) {
$params = array('project' => $project, 'region' => $region, 'operation' => $operation);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
return $data;
}
/**
* Retrieves the specified region-specific operation resource. (regionOperations.get)
*
* @param string $project Name of the project scoping this request.
* @param string $region Name of the zone scoping this request.
* @param string $operation Name of the operation resource to return.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function get($project, $region, $operation, $optParams = array()) {
$params = array('project' => $project, 'region' => $region, 'operation' => $operation);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Retrieves the list of operation resources contained within the specified region.
* (regionOperations.list)
*
* @param string $project Name of the project scoping this request.
* @param string $region Name of the region scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_OperationList
*/
public function listRegionOperations($project, $region, $optParams = array()) {
$params = array('project' => $project, 'region' => $region);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_OperationList($data);
} else {
return $data;
}
}
}
/**
* The "regions" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $regions = $computeService->regions;
* </code>
*/
class Google_RegionsServiceResource extends Google_ServiceResource {
/**
* Returns the specified region resource. (regions.get)
*
* @param string $project Name of the project scoping this request.
* @param string $region Name of the region resource to return.
* @param array $optParams Optional parameters.
* @return Google_Region
*/
public function get($project, $region, $optParams = array()) {
$params = array('project' => $project, 'region' => $region);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Region($data);
} else {
return $data;
}
}
/**
* Retrieves the list of region resources available to the specified project. (regions.list)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_RegionList
*/
public function listRegions($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_RegionList($data);
} else {
return $data;
}
}
}
/**
* The "routes" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $routes = $computeService->routes;
* </code>
*/
class Google_RoutesServiceResource extends Google_ServiceResource {
/**
* Deletes the specified route resource. (routes.delete)
*
* @param string $project Name of the project scoping this request.
* @param string $route Name of the route resource to delete.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function delete($project, $route, $optParams = array()) {
$params = array('project' => $project, 'route' => $route);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Returns the specified route resource. (routes.get)
*
* @param string $project Name of the project scoping this request.
* @param string $route Name of the route resource to return.
* @param array $optParams Optional parameters.
* @return Google_Route
*/
public function get($project, $route, $optParams = array()) {
$params = array('project' => $project, 'route' => $route);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Route($data);
} else {
return $data;
}
}
/**
* Creates a route resource in the specified project using the data included in the request.
* (routes.insert)
*
* @param string $project Name of the project scoping this request.
* @param Google_Route $postBody
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function insert($project, Google_Route $postBody, $optParams = array()) {
$params = array('project' => $project, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Retrieves the list of route resources available to the specified project. (routes.list)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_RouteList
*/
public function listRoutes($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_RouteList($data);
} else {
return $data;
}
}
}
/**
* The "snapshots" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $snapshots = $computeService->snapshots;
* </code>
*/
class Google_SnapshotsServiceResource extends Google_ServiceResource {
/**
* Deletes the specified persistent disk snapshot resource. (snapshots.delete)
*
* @param string $project Name of the project scoping this request.
* @param string $snapshot Name of the persistent disk snapshot resource to delete.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function delete($project, $snapshot, $optParams = array()) {
$params = array('project' => $project, 'snapshot' => $snapshot);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Returns the specified persistent disk snapshot resource. (snapshots.get)
*
* @param string $project Name of the project scoping this request.
* @param string $snapshot Name of the persistent disk snapshot resource to return.
* @param array $optParams Optional parameters.
* @return Google_Snapshot
*/
public function get($project, $snapshot, $optParams = array()) {
$params = array('project' => $project, 'snapshot' => $snapshot);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Snapshot($data);
} else {
return $data;
}
}
/**
* Retrieves the list of persistent disk snapshot resources contained within the specified project.
* (snapshots.list)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_SnapshotList
*/
public function listSnapshots($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_SnapshotList($data);
} else {
return $data;
}
}
}
/**
* The "zoneOperations" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $zoneOperations = $computeService->zoneOperations;
* </code>
*/
class Google_ZoneOperationsServiceResource extends Google_ServiceResource {
/**
* Deletes the specified zone-specific operation resource. (zoneOperations.delete)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param string $operation Name of the operation resource to delete.
* @param array $optParams Optional parameters.
*/
public function delete($project, $zone, $operation, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
$params = array_merge($params, $optParams);
$data = $this->__call('delete', array($params));
return $data;
}
/**
* Retrieves the specified zone-specific operation resource. (zoneOperations.get)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param string $operation Name of the operation resource to return.
* @param array $optParams Optional parameters.
* @return Google_Operation
*/
public function get($project, $zone, $operation, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Operation($data);
} else {
return $data;
}
}
/**
* Retrieves the list of operation resources contained within the specified zone.
* (zoneOperations.list)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_OperationList
*/
public function listZoneOperations($project, $zone, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_OperationList($data);
} else {
return $data;
}
}
}
/**
* The "zones" collection of methods.
* Typical usage is:
* <code>
* $computeService = new Google_ComputeService(...);
* $zones = $computeService->zones;
* </code>
*/
class Google_ZonesServiceResource extends Google_ServiceResource {
/**
* Returns the specified zone resource. (zones.get)
*
* @param string $project Name of the project scoping this request.
* @param string $zone Name of the zone resource to return.
* @param array $optParams Optional parameters.
* @return Google_Zone
*/
public function get($project, $zone, $optParams = array()) {
$params = array('project' => $project, 'zone' => $zone);
$params = array_merge($params, $optParams);
$data = $this->__call('get', array($params));
if ($this->useObjects()) {
return new Google_Zone($data);
} else {
return $data;
}
}
/**
* Retrieves the list of zone resources available to the specified project. (zones.list)
*
* @param string $project Name of the project scoping this request.
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter expression for filtering listed resources.
* @opt_param string maxResults Optional. Maximum count of results to be returned. Maximum and default value is 100.
* @opt_param string pageToken Optional. Tag returned by a previous list request truncated by maxResults. Used to continue a previous list request.
* @return Google_ZoneList
*/
public function listZones($project, $optParams = array()) {
$params = array('project' => $project);
$params = array_merge($params, $optParams);
$data = $this->__call('list', array($params));
if ($this->useObjects()) {
return new Google_ZoneList($data);
} else {
return $data;
}
}
}
/**
* Service definition for Google_Compute (v1beta15).
*
* <p>
* API for the Google Compute Engine service.
* </p>
*
* <p>
* For more information about this service, see the
* <a href="https://developers.google.com/compute/docs/reference/v1beta15" target="_blank">API Documentation</a>
* </p>
*
* @author Google, Inc.
*/
class Google_ComputeService extends Google_Service {
public $addresses;
public $disks;
public $firewalls;
public $globalOperations;
public $images;
public $instances;
public $kernels;
public $machineTypes;
public $networks;
public $projects;
public $regionOperations;
public $regions;
public $routes;
public $snapshots;
public $zoneOperations;
public $zones;
/**
* Constructs the internal representation of the Compute service.
*
* @param Google_Client $client
*/
public function __construct(Google_Client $client) {
$this->servicePath = 'compute/v1beta15/projects/';
$this->version = 'v1beta15';
$this->serviceName = 'compute';
$client->addService($this->serviceName, $this->version);
$this->addresses = new Google_AddressesServiceResource($this, $this->serviceName, 'addresses', json_decode('{"methods": {"aggregatedList": {"id": "compute.addresses.aggregatedList", "path": "{project}/aggregated/addresses", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "AddressAggregatedList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "delete": {"id": "compute.addresses.delete", "path": "{project}/regions/{region}/addresses/{address}", "httpMethod": "DELETE", "parameters": {"address": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "region": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "get": {"id": "compute.addresses.get", "path": "{project}/regions/{region}/addresses/{address}", "httpMethod": "GET", "parameters": {"address": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "region": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Address"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "insert": {"id": "compute.addresses.insert", "path": "{project}/regions/{region}/addresses", "httpMethod": "POST", "parameters": {"project": {"type": "string", "required": true, "location": "path"}, "region": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Address"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "list": {"id": "compute.addresses.list", "path": "{project}/regions/{region}/addresses", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}, "region": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "AddressList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
$this->disks = new Google_DisksServiceResource($this, $this->serviceName, 'disks', json_decode('{"methods": {"aggregatedList": {"id": "compute.disks.aggregatedList", "path": "{project}/aggregated/disks", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "DiskAggregatedList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "createSnapshot": {"id": "compute.disks.createSnapshot", "path": "{project}/zones/{zone}/disks/{disk}/createSnapshot", "httpMethod": "POST", "parameters": {"disk": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Snapshot"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "delete": {"id": "compute.disks.delete", "path": "{project}/zones/{zone}/disks/{disk}", "httpMethod": "DELETE", "parameters": {"disk": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "get": {"id": "compute.disks.get", "path": "{project}/zones/{zone}/disks/{disk}", "httpMethod": "GET", "parameters": {"disk": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Disk"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "insert": {"id": "compute.disks.insert", "path": "{project}/zones/{zone}/disks", "httpMethod": "POST", "parameters": {"project": {"type": "string", "required": true, "location": "path"}, "sourceImage": {"type": "string", "location": "query"}, "zone": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Disk"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "list": {"id": "compute.disks.list", "path": "{project}/zones/{zone}/disks", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "DiskList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
$this->firewalls = new Google_FirewallsServiceResource($this, $this->serviceName, 'firewalls', json_decode('{"methods": {"delete": {"id": "compute.firewalls.delete", "path": "{project}/global/firewalls/{firewall}", "httpMethod": "DELETE", "parameters": {"firewall": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "get": {"id": "compute.firewalls.get", "path": "{project}/global/firewalls/{firewall}", "httpMethod": "GET", "parameters": {"firewall": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Firewall"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "insert": {"id": "compute.firewalls.insert", "path": "{project}/global/firewalls", "httpMethod": "POST", "parameters": {"project": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Firewall"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "list": {"id": "compute.firewalls.list", "path": "{project}/global/firewalls", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "FirewallList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "patch": {"id": "compute.firewalls.patch", "path": "{project}/global/firewalls/{firewall}", "httpMethod": "PATCH", "parameters": {"firewall": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Firewall"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "update": {"id": "compute.firewalls.update", "path": "{project}/global/firewalls/{firewall}", "httpMethod": "PUT", "parameters": {"firewall": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Firewall"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}}}', true));
$this->globalOperations = new Google_GlobalOperationsServiceResource($this, $this->serviceName, 'globalOperations', json_decode('{"methods": {"aggregatedList": {"id": "compute.globalOperations.aggregatedList", "path": "{project}/aggregated/operations", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "OperationAggregatedList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "delete": {"id": "compute.globalOperations.delete", "path": "{project}/global/operations/{operation}", "httpMethod": "DELETE", "parameters": {"operation": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "get": {"id": "compute.globalOperations.get", "path": "{project}/global/operations/{operation}", "httpMethod": "GET", "parameters": {"operation": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "list": {"id": "compute.globalOperations.list", "path": "{project}/global/operations", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "OperationList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
$this->images = new Google_ImagesServiceResource($this, $this->serviceName, 'images', json_decode('{"methods": {"delete": {"id": "compute.images.delete", "path": "{project}/global/images/{image}", "httpMethod": "DELETE", "parameters": {"image": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "deprecate": {"id": "compute.images.deprecate", "path": "{project}/global/images/{image}/deprecate", "httpMethod": "POST", "parameters": {"image": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "DeprecationStatus"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "get": {"id": "compute.images.get", "path": "{project}/global/images/{image}", "httpMethod": "GET", "parameters": {"image": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Image"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "insert": {"id": "compute.images.insert", "path": "{project}/global/images", "httpMethod": "POST", "parameters": {"project": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Image"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/devstorage.read_only"]}, "list": {"id": "compute.images.list", "path": "{project}/global/images", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "ImageList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
$this->instances = new Google_InstancesServiceResource($this, $this->serviceName, 'instances', json_decode('{"methods": {"addAccessConfig": {"id": "compute.instances.addAccessConfig", "path": "{project}/zones/{zone}/instances/{instance}/addAccessConfig", "httpMethod": "POST", "parameters": {"instance": {"type": "string", "required": true, "location": "path"}, "networkInterface": {"type": "string", "required": true, "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "AccessConfig"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "aggregatedList": {"id": "compute.instances.aggregatedList", "path": "{project}/aggregated/instances", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "InstanceAggregatedList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "attachDisk": {"id": "compute.instances.attachDisk", "path": "{project}/zones/{zone}/instances/{instance}/attachDisk", "httpMethod": "POST", "parameters": {"instance": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "AttachedDisk"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "delete": {"id": "compute.instances.delete", "path": "{project}/zones/{zone}/instances/{instance}", "httpMethod": "DELETE", "parameters": {"instance": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "deleteAccessConfig": {"id": "compute.instances.deleteAccessConfig", "path": "{project}/zones/{zone}/instances/{instance}/deleteAccessConfig", "httpMethod": "POST", "parameters": {"accessConfig": {"type": "string", "required": true, "location": "query"}, "instance": {"type": "string", "required": true, "location": "path"}, "networkInterface": {"type": "string", "required": true, "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "detachDisk": {"id": "compute.instances.detachDisk", "path": "{project}/zones/{zone}/instances/{instance}/detachDisk", "httpMethod": "POST", "parameters": {"deviceName": {"type": "string", "required": true, "location": "query"}, "instance": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "get": {"id": "compute.instances.get", "path": "{project}/zones/{zone}/instances/{instance}", "httpMethod": "GET", "parameters": {"instance": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Instance"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "getSerialPortOutput": {"id": "compute.instances.getSerialPortOutput", "path": "{project}/zones/{zone}/instances/{instance}/serialPort", "httpMethod": "GET", "parameters": {"instance": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "SerialPortOutput"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "insert": {"id": "compute.instances.insert", "path": "{project}/zones/{zone}/instances", "httpMethod": "POST", "parameters": {"project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Instance"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "list": {"id": "compute.instances.list", "path": "{project}/zones/{zone}/instances", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "InstanceList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "reset": {"id": "compute.instances.reset", "path": "{project}/zones/{zone}/instances/{instance}/reset", "httpMethod": "POST", "parameters": {"instance": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "setMetadata": {"id": "compute.instances.setMetadata", "path": "{project}/zones/{zone}/instances/{instance}/setMetadata", "httpMethod": "POST", "parameters": {"instance": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Metadata"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "setTags": {"id": "compute.instances.setTags", "path": "{project}/zones/{zone}/instances/{instance}/setTags", "httpMethod": "POST", "parameters": {"instance": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Tags"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}}}', true));
$this->kernels = new Google_KernelsServiceResource($this, $this->serviceName, 'kernels', json_decode('{"methods": {"get": {"id": "compute.kernels.get", "path": "{project}/global/kernels/{kernel}", "httpMethod": "GET", "parameters": {"kernel": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Kernel"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "list": {"id": "compute.kernels.list", "path": "{project}/global/kernels", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "KernelList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
$this->machineTypes = new Google_MachineTypesServiceResource($this, $this->serviceName, 'machineTypes', json_decode('{"methods": {"aggregatedList": {"id": "compute.machineTypes.aggregatedList", "path": "{project}/aggregated/machineTypes", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "MachineTypeAggregatedList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "get": {"id": "compute.machineTypes.get", "path": "{project}/zones/{zone}/machineTypes/{machineType}", "httpMethod": "GET", "parameters": {"machineType": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "MachineType"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "list": {"id": "compute.machineTypes.list", "path": "{project}/zones/{zone}/machineTypes", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "MachineTypeList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
$this->networks = new Google_NetworksServiceResource($this, $this->serviceName, 'networks', json_decode('{"methods": {"delete": {"id": "compute.networks.delete", "path": "{project}/global/networks/{network}", "httpMethod": "DELETE", "parameters": {"network": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "get": {"id": "compute.networks.get", "path": "{project}/global/networks/{network}", "httpMethod": "GET", "parameters": {"network": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Network"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "insert": {"id": "compute.networks.insert", "path": "{project}/global/networks", "httpMethod": "POST", "parameters": {"project": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Network"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "list": {"id": "compute.networks.list", "path": "{project}/global/networks", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "NetworkList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
$this->projects = new Google_ProjectsServiceResource($this, $this->serviceName, 'projects', json_decode('{"methods": {"get": {"id": "compute.projects.get", "path": "{project}", "httpMethod": "GET", "parameters": {"project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Project"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "setCommonInstanceMetadata": {"id": "compute.projects.setCommonInstanceMetadata", "path": "{project}/setCommonInstanceMetadata", "httpMethod": "POST", "parameters": {"project": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Metadata"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}}}', true));
$this->regionOperations = new Google_RegionOperationsServiceResource($this, $this->serviceName, 'regionOperations', json_decode('{"methods": {"delete": {"id": "compute.regionOperations.delete", "path": "{project}/regions/{region}/operations/{operation}", "httpMethod": "DELETE", "parameters": {"operation": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "region": {"type": "string", "required": true, "location": "path"}}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "get": {"id": "compute.regionOperations.get", "path": "{project}/regions/{region}/operations/{operation}", "httpMethod": "GET", "parameters": {"operation": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "region": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "list": {"id": "compute.regionOperations.list", "path": "{project}/regions/{region}/operations", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}, "region": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "OperationList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
$this->regions = new Google_RegionsServiceResource($this, $this->serviceName, 'regions', json_decode('{"methods": {"get": {"id": "compute.regions.get", "path": "{project}/regions/{region}", "httpMethod": "GET", "parameters": {"project": {"type": "string", "required": true, "location": "path"}, "region": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Region"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "list": {"id": "compute.regions.list", "path": "{project}/regions", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "RegionList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
$this->routes = new Google_RoutesServiceResource($this, $this->serviceName, 'routes', json_decode('{"methods": {"delete": {"id": "compute.routes.delete", "path": "{project}/global/routes/{route}", "httpMethod": "DELETE", "parameters": {"project": {"type": "string", "required": true, "location": "path"}, "route": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "get": {"id": "compute.routes.get", "path": "{project}/global/routes/{route}", "httpMethod": "GET", "parameters": {"project": {"type": "string", "required": true, "location": "path"}, "route": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Route"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "insert": {"id": "compute.routes.insert", "path": "{project}/global/routes", "httpMethod": "POST", "parameters": {"project": {"type": "string", "required": true, "location": "path"}}, "request": {"$ref": "Route"}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "list": {"id": "compute.routes.list", "path": "{project}/global/routes", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "RouteList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
$this->snapshots = new Google_SnapshotsServiceResource($this, $this->serviceName, 'snapshots', json_decode('{"methods": {"delete": {"id": "compute.snapshots.delete", "path": "{project}/global/snapshots/{snapshot}", "httpMethod": "DELETE", "parameters": {"project": {"type": "string", "required": true, "location": "path"}, "snapshot": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "get": {"id": "compute.snapshots.get", "path": "{project}/global/snapshots/{snapshot}", "httpMethod": "GET", "parameters": {"project": {"type": "string", "required": true, "location": "path"}, "snapshot": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Snapshot"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "list": {"id": "compute.snapshots.list", "path": "{project}/global/snapshots", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "SnapshotList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
$this->zoneOperations = new Google_ZoneOperationsServiceResource($this, $this->serviceName, 'zoneOperations', json_decode('{"methods": {"delete": {"id": "compute.zoneOperations.delete", "path": "{project}/zones/{zone}/operations/{operation}", "httpMethod": "DELETE", "parameters": {"operation": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "scopes": ["https://www.googleapis.com/auth/compute"]}, "get": {"id": "compute.zoneOperations.get", "path": "{project}/zones/{zone}/operations/{operation}", "httpMethod": "GET", "parameters": {"operation": {"type": "string", "required": true, "location": "path"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Operation"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "list": {"id": "compute.zoneOperations.list", "path": "{project}/zones/{zone}/operations", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "OperationList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
$this->zones = new Google_ZonesServiceResource($this, $this->serviceName, 'zones', json_decode('{"methods": {"get": {"id": "compute.zones.get", "path": "{project}/zones/{zone}", "httpMethod": "GET", "parameters": {"project": {"type": "string", "required": true, "location": "path"}, "zone": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "Zone"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}, "list": {"id": "compute.zones.list", "path": "{project}/zones", "httpMethod": "GET", "parameters": {"filter": {"type": "string", "location": "query"}, "maxResults": {"type": "integer", "default": "100", "format": "uint32", "minimum": "0", "maximum": "100", "location": "query"}, "pageToken": {"type": "string", "location": "query"}, "project": {"type": "string", "required": true, "location": "path"}}, "response": {"$ref": "ZoneList"}, "scopes": ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/compute.readonly"]}}}', true));
}
}
class Google_AccessConfig extends Google_Model {
public $kind;
public $name;
public $natIP;
public $type;
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setNatIP( $natIP) {
$this->natIP = $natIP;
}
public function getNatIP() {
return $this->natIP;
}
public function setType( $type) {
$this->type = $type;
}
public function getType() {
return $this->type;
}
}
class Google_Address extends Google_Model {
public $address;
public $creationTimestamp;
public $description;
public $id;
public $kind;
public $name;
public $region;
public $selfLink;
public $status;
public $user;
public function setAddress( $address) {
$this->address = $address;
}
public function getAddress() {
return $this->address;
}
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setRegion( $region) {
$this->region = $region;
}
public function getRegion() {
return $this->region;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
public function setStatus( $status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
public function setUser( $user) {
$this->user = $user;
}
public function getUser() {
return $this->user;
}
}
class Google_AddressAggregatedList extends Google_Model {
public $id;
protected $__itemsType = 'Google_AddressesScopedList';
protected $__itemsDataType = 'map';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(Google_AddressesScopedList $items) {
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_AddressList extends Google_Model {
public $id;
protected $__itemsType = 'Google_Address';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_Address) */ $items) {
$this->assertIsArray($items, 'Google_Address', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_AddressesScopedList extends Google_Model {
protected $__addressesType = 'Google_Address';
protected $__addressesDataType = 'array';
public $addresses;
protected $__warningType = 'Google_AddressesScopedListWarning';
protected $__warningDataType = '';
public $warning;
public function setAddresses(/* array(Google_Address) */ $addresses) {
$this->assertIsArray($addresses, 'Google_Address', __METHOD__);
$this->addresses = $addresses;
}
public function getAddresses() {
return $this->addresses;
}
public function setWarning(Google_AddressesScopedListWarning $warning) {
$this->warning = $warning;
}
public function getWarning() {
return $this->warning;
}
}
class Google_AddressesScopedListWarning extends Google_Model {
public $code;
protected $__dataType = 'Google_AddressesScopedListWarningData';
protected $__dataDataType = 'array';
public $data;
public $message;
public function setCode( $code) {
$this->code = $code;
}
public function getCode() {
return $this->code;
}
public function setData(/* array(Google_AddressesScopedListWarningData) */ $data) {
$this->assertIsArray($data, 'Google_AddressesScopedListWarningData', __METHOD__);
$this->data = $data;
}
public function getData() {
return $this->data;
}
public function setMessage( $message) {
$this->message = $message;
}
public function getMessage() {
return $this->message;
}
}
class Google_AddressesScopedListWarningData extends Google_Model {
public $key;
public $value;
public function setKey( $key) {
$this->key = $key;
}
public function getKey() {
return $this->key;
}
public function setValue( $value) {
$this->value = $value;
}
public function getValue() {
return $this->value;
}
}
class Google_AttachedDisk extends Google_Model {
public $boot;
public $deviceName;
public $index;
public $kind;
public $mode;
public $source;
public $type;
public function setBoot( $boot) {
$this->boot = $boot;
}
public function getBoot() {
return $this->boot;
}
public function setDeviceName( $deviceName) {
$this->deviceName = $deviceName;
}
public function getDeviceName() {
return $this->deviceName;
}
public function setIndex( $index) {
$this->index = $index;
}
public function getIndex() {
return $this->index;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setMode( $mode) {
$this->mode = $mode;
}
public function getMode() {
return $this->mode;
}
public function setSource( $source) {
$this->source = $source;
}
public function getSource() {
return $this->source;
}
public function setType( $type) {
$this->type = $type;
}
public function getType() {
return $this->type;
}
}
class Google_DeprecationStatus extends Google_Model {
public $deleted;
public $deprecated;
public $obsolete;
public $replacement;
public $state;
public function setDeleted( $deleted) {
$this->deleted = $deleted;
}
public function getDeleted() {
return $this->deleted;
}
public function setDeprecated( $deprecated) {
$this->deprecated = $deprecated;
}
public function getDeprecated() {
return $this->deprecated;
}
public function setObsolete( $obsolete) {
$this->obsolete = $obsolete;
}
public function getObsolete() {
return $this->obsolete;
}
public function setReplacement( $replacement) {
$this->replacement = $replacement;
}
public function getReplacement() {
return $this->replacement;
}
public function setState( $state) {
$this->state = $state;
}
public function getState() {
return $this->state;
}
}
class Google_Disk extends Google_Model {
public $creationTimestamp;
public $description;
public $id;
public $kind;
public $name;
public $options;
public $selfLink;
public $sizeGb;
public $sourceSnapshot;
public $sourceSnapshotId;
public $status;
public $zone;
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setOptions( $options) {
$this->options = $options;
}
public function getOptions() {
return $this->options;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
public function setSizeGb( $sizeGb) {
$this->sizeGb = $sizeGb;
}
public function getSizeGb() {
return $this->sizeGb;
}
public function setSourceSnapshot( $sourceSnapshot) {
$this->sourceSnapshot = $sourceSnapshot;
}
public function getSourceSnapshot() {
return $this->sourceSnapshot;
}
public function setSourceSnapshotId( $sourceSnapshotId) {
$this->sourceSnapshotId = $sourceSnapshotId;
}
public function getSourceSnapshotId() {
return $this->sourceSnapshotId;
}
public function setStatus( $status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
public function setZone( $zone) {
$this->zone = $zone;
}
public function getZone() {
return $this->zone;
}
}
class Google_DiskAggregatedList extends Google_Model {
public $id;
protected $__itemsType = 'Google_DisksScopedList';
protected $__itemsDataType = 'map';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(Google_DisksScopedList $items) {
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_DiskList extends Google_Model {
public $id;
protected $__itemsType = 'Google_Disk';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_Disk) */ $items) {
$this->assertIsArray($items, 'Google_Disk', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_DisksScopedList extends Google_Model {
protected $__disksType = 'Google_Disk';
protected $__disksDataType = 'array';
public $disks;
protected $__warningType = 'Google_DisksScopedListWarning';
protected $__warningDataType = '';
public $warning;
public function setDisks(/* array(Google_Disk) */ $disks) {
$this->assertIsArray($disks, 'Google_Disk', __METHOD__);
$this->disks = $disks;
}
public function getDisks() {
return $this->disks;
}
public function setWarning(Google_DisksScopedListWarning $warning) {
$this->warning = $warning;
}
public function getWarning() {
return $this->warning;
}
}
class Google_DisksScopedListWarning extends Google_Model {
public $code;
protected $__dataType = 'Google_DisksScopedListWarningData';
protected $__dataDataType = 'array';
public $data;
public $message;
public function setCode( $code) {
$this->code = $code;
}
public function getCode() {
return $this->code;
}
public function setData(/* array(Google_DisksScopedListWarningData) */ $data) {
$this->assertIsArray($data, 'Google_DisksScopedListWarningData', __METHOD__);
$this->data = $data;
}
public function getData() {
return $this->data;
}
public function setMessage( $message) {
$this->message = $message;
}
public function getMessage() {
return $this->message;
}
}
class Google_DisksScopedListWarningData extends Google_Model {
public $key;
public $value;
public function setKey( $key) {
$this->key = $key;
}
public function getKey() {
return $this->key;
}
public function setValue( $value) {
$this->value = $value;
}
public function getValue() {
return $this->value;
}
}
class Google_Firewall extends Google_Model {
protected $__allowedType = 'Google_FirewallAllowed';
protected $__allowedDataType = 'array';
public $allowed;
public $creationTimestamp;
public $description;
public $id;
public $kind;
public $name;
public $network;
public $selfLink;
public $sourceRanges;
public $sourceTags;
public $targetTags;
public function setAllowed(/* array(Google_FirewallAllowed) */ $allowed) {
$this->assertIsArray($allowed, 'Google_FirewallAllowed', __METHOD__);
$this->allowed = $allowed;
}
public function getAllowed() {
return $this->allowed;
}
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setNetwork( $network) {
$this->network = $network;
}
public function getNetwork() {
return $this->network;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
public function setSourceRanges(/* array(Google_string) */ $sourceRanges) {
$this->assertIsArray($sourceRanges, 'Google_string', __METHOD__);
$this->sourceRanges = $sourceRanges;
}
public function getSourceRanges() {
return $this->sourceRanges;
}
public function setSourceTags(/* array(Google_string) */ $sourceTags) {
$this->assertIsArray($sourceTags, 'Google_string', __METHOD__);
$this->sourceTags = $sourceTags;
}
public function getSourceTags() {
return $this->sourceTags;
}
public function setTargetTags(/* array(Google_string) */ $targetTags) {
$this->assertIsArray($targetTags, 'Google_string', __METHOD__);
$this->targetTags = $targetTags;
}
public function getTargetTags() {
return $this->targetTags;
}
}
class Google_FirewallAllowed extends Google_Model {
public $IPProtocol;
public $ports;
public function setIPProtocol( $IPProtocol) {
$this->IPProtocol = $IPProtocol;
}
public function getIPProtocol() {
return $this->IPProtocol;
}
public function setPorts(/* array(Google_string) */ $ports) {
$this->assertIsArray($ports, 'Google_string', __METHOD__);
$this->ports = $ports;
}
public function getPorts() {
return $this->ports;
}
}
class Google_FirewallList extends Google_Model {
public $id;
protected $__itemsType = 'Google_Firewall';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_Firewall) */ $items) {
$this->assertIsArray($items, 'Google_Firewall', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_Image extends Google_Model {
public $creationTimestamp;
protected $__deprecatedType = 'Google_DeprecationStatus';
protected $__deprecatedDataType = '';
public $deprecated;
public $description;
public $id;
public $kind;
public $name;
public $preferredKernel;
protected $__rawDiskType = 'Google_ImageRawDisk';
protected $__rawDiskDataType = '';
public $rawDisk;
public $selfLink;
public $sourceType;
public $status;
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDeprecated(Google_DeprecationStatus $deprecated) {
$this->deprecated = $deprecated;
}
public function getDeprecated() {
return $this->deprecated;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setPreferredKernel( $preferredKernel) {
$this->preferredKernel = $preferredKernel;
}
public function getPreferredKernel() {
return $this->preferredKernel;
}
public function setRawDisk(Google_ImageRawDisk $rawDisk) {
$this->rawDisk = $rawDisk;
}
public function getRawDisk() {
return $this->rawDisk;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
public function setSourceType( $sourceType) {
$this->sourceType = $sourceType;
}
public function getSourceType() {
return $this->sourceType;
}
public function setStatus( $status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
}
class Google_ImageList extends Google_Model {
public $id;
protected $__itemsType = 'Google_Image';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_Image) */ $items) {
$this->assertIsArray($items, 'Google_Image', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_ImageRawDisk extends Google_Model {
public $containerType;
public $sha1Checksum;
public $source;
public function setContainerType( $containerType) {
$this->containerType = $containerType;
}
public function getContainerType() {
return $this->containerType;
}
public function setSha1Checksum( $sha1Checksum) {
$this->sha1Checksum = $sha1Checksum;
}
public function getSha1Checksum() {
return $this->sha1Checksum;
}
public function setSource( $source) {
$this->source = $source;
}
public function getSource() {
return $this->source;
}
}
class Google_Instance extends Google_Model {
public $canIpForward;
public $creationTimestamp;
public $description;
protected $__disksType = 'Google_AttachedDisk';
protected $__disksDataType = 'array';
public $disks;
public $id;
public $image;
public $kernel;
public $kind;
public $machineType;
protected $__metadataType = 'Google_Metadata';
protected $__metadataDataType = '';
public $metadata;
public $name;
protected $__networkInterfacesType = 'Google_NetworkInterface';
protected $__networkInterfacesDataType = 'array';
public $networkInterfaces;
public $selfLink;
protected $__serviceAccountsType = 'Google_ServiceAccount';
protected $__serviceAccountsDataType = 'array';
public $serviceAccounts;
public $status;
public $statusMessage;
protected $__tagsType = 'Google_Tags';
protected $__tagsDataType = '';
public $tags;
public $zone;
public function setCanIpForward( $canIpForward) {
$this->canIpForward = $canIpForward;
}
public function getCanIpForward() {
return $this->canIpForward;
}
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setDisks(/* array(Google_AttachedDisk) */ $disks) {
$this->assertIsArray($disks, 'Google_AttachedDisk', __METHOD__);
$this->disks = $disks;
}
public function getDisks() {
return $this->disks;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setImage( $image) {
$this->image = $image;
}
public function getImage() {
return $this->image;
}
public function setKernel( $kernel) {
$this->kernel = $kernel;
}
public function getKernel() {
return $this->kernel;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setMachineType( $machineType) {
$this->machineType = $machineType;
}
public function getMachineType() {
return $this->machineType;
}
public function setMetadata(Google_Metadata $metadata) {
$this->metadata = $metadata;
}
public function getMetadata() {
return $this->metadata;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setNetworkInterfaces(/* array(Google_NetworkInterface) */ $networkInterfaces) {
$this->assertIsArray($networkInterfaces, 'Google_NetworkInterface', __METHOD__);
$this->networkInterfaces = $networkInterfaces;
}
public function getNetworkInterfaces() {
return $this->networkInterfaces;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
public function setServiceAccounts(/* array(Google_ServiceAccount) */ $serviceAccounts) {
$this->assertIsArray($serviceAccounts, 'Google_ServiceAccount', __METHOD__);
$this->serviceAccounts = $serviceAccounts;
}
public function getServiceAccounts() {
return $this->serviceAccounts;
}
public function setStatus( $status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
public function setStatusMessage( $statusMessage) {
$this->statusMessage = $statusMessage;
}
public function getStatusMessage() {
return $this->statusMessage;
}
public function setTags(Google_Tags $tags) {
$this->tags = $tags;
}
public function getTags() {
return $this->tags;
}
public function setZone( $zone) {
$this->zone = $zone;
}
public function getZone() {
return $this->zone;
}
}
class Google_InstanceAggregatedList extends Google_Model {
public $id;
protected $__itemsType = 'Google_InstancesScopedList';
protected $__itemsDataType = 'map';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(Google_InstancesScopedList $items) {
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_InstanceList extends Google_Model {
public $id;
protected $__itemsType = 'Google_Instance';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_Instance) */ $items) {
$this->assertIsArray($items, 'Google_Instance', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_InstancesScopedList extends Google_Model {
protected $__instancesType = 'Google_Instance';
protected $__instancesDataType = 'array';
public $instances;
protected $__warningType = 'Google_InstancesScopedListWarning';
protected $__warningDataType = '';
public $warning;
public function setInstances(/* array(Google_Instance) */ $instances) {
$this->assertIsArray($instances, 'Google_Instance', __METHOD__);
$this->instances = $instances;
}
public function getInstances() {
return $this->instances;
}
public function setWarning(Google_InstancesScopedListWarning $warning) {
$this->warning = $warning;
}
public function getWarning() {
return $this->warning;
}
}
class Google_InstancesScopedListWarning extends Google_Model {
public $code;
protected $__dataType = 'Google_InstancesScopedListWarningData';
protected $__dataDataType = 'array';
public $data;
public $message;
public function setCode( $code) {
$this->code = $code;
}
public function getCode() {
return $this->code;
}
public function setData(/* array(Google_InstancesScopedListWarningData) */ $data) {
$this->assertIsArray($data, 'Google_InstancesScopedListWarningData', __METHOD__);
$this->data = $data;
}
public function getData() {
return $this->data;
}
public function setMessage( $message) {
$this->message = $message;
}
public function getMessage() {
return $this->message;
}
}
class Google_InstancesScopedListWarningData extends Google_Model {
public $key;
public $value;
public function setKey( $key) {
$this->key = $key;
}
public function getKey() {
return $this->key;
}
public function setValue( $value) {
$this->value = $value;
}
public function getValue() {
return $this->value;
}
}
class Google_Kernel extends Google_Model {
public $creationTimestamp;
protected $__deprecatedType = 'Google_DeprecationStatus';
protected $__deprecatedDataType = '';
public $deprecated;
public $description;
public $id;
public $kind;
public $name;
public $selfLink;
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDeprecated(Google_DeprecationStatus $deprecated) {
$this->deprecated = $deprecated;
}
public function getDeprecated() {
return $this->deprecated;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_KernelList extends Google_Model {
public $id;
protected $__itemsType = 'Google_Kernel';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_Kernel) */ $items) {
$this->assertIsArray($items, 'Google_Kernel', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_MachineType extends Google_Model {
public $creationTimestamp;
protected $__deprecatedType = 'Google_DeprecationStatus';
protected $__deprecatedDataType = '';
public $deprecated;
public $description;
public $guestCpus;
public $id;
public $imageSpaceGb;
public $kind;
public $maximumPersistentDisks;
public $maximumPersistentDisksSizeGb;
public $memoryMb;
public $name;
protected $__scratchDisksType = 'Google_MachineTypeScratchDisks';
protected $__scratchDisksDataType = 'array';
public $scratchDisks;
public $selfLink;
public $zone;
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDeprecated(Google_DeprecationStatus $deprecated) {
$this->deprecated = $deprecated;
}
public function getDeprecated() {
return $this->deprecated;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setGuestCpus( $guestCpus) {
$this->guestCpus = $guestCpus;
}
public function getGuestCpus() {
return $this->guestCpus;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setImageSpaceGb( $imageSpaceGb) {
$this->imageSpaceGb = $imageSpaceGb;
}
public function getImageSpaceGb() {
return $this->imageSpaceGb;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setMaximumPersistentDisks( $maximumPersistentDisks) {
$this->maximumPersistentDisks = $maximumPersistentDisks;
}
public function getMaximumPersistentDisks() {
return $this->maximumPersistentDisks;
}
public function setMaximumPersistentDisksSizeGb( $maximumPersistentDisksSizeGb) {
$this->maximumPersistentDisksSizeGb = $maximumPersistentDisksSizeGb;
}
public function getMaximumPersistentDisksSizeGb() {
return $this->maximumPersistentDisksSizeGb;
}
public function setMemoryMb( $memoryMb) {
$this->memoryMb = $memoryMb;
}
public function getMemoryMb() {
return $this->memoryMb;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setScratchDisks(/* array(Google_MachineTypeScratchDisks) */ $scratchDisks) {
$this->assertIsArray($scratchDisks, 'Google_MachineTypeScratchDisks', __METHOD__);
$this->scratchDisks = $scratchDisks;
}
public function getScratchDisks() {
return $this->scratchDisks;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
public function setZone( $zone) {
$this->zone = $zone;
}
public function getZone() {
return $this->zone;
}
}
class Google_MachineTypeAggregatedList extends Google_Model {
public $id;
protected $__itemsType = 'Google_MachineTypesScopedList';
protected $__itemsDataType = 'map';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(Google_MachineTypesScopedList $items) {
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_MachineTypeList extends Google_Model {
public $id;
protected $__itemsType = 'Google_MachineType';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_MachineType) */ $items) {
$this->assertIsArray($items, 'Google_MachineType', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_MachineTypeScratchDisks extends Google_Model {
public $diskGb;
public function setDiskGb( $diskGb) {
$this->diskGb = $diskGb;
}
public function getDiskGb() {
return $this->diskGb;
}
}
class Google_MachineTypesScopedList extends Google_Model {
protected $__machineTypesType = 'Google_MachineType';
protected $__machineTypesDataType = 'array';
public $machineTypes;
protected $__warningType = 'Google_MachineTypesScopedListWarning';
protected $__warningDataType = '';
public $warning;
public function setMachineTypes(/* array(Google_MachineType) */ $machineTypes) {
$this->assertIsArray($machineTypes, 'Google_MachineType', __METHOD__);
$this->machineTypes = $machineTypes;
}
public function getMachineTypes() {
return $this->machineTypes;
}
public function setWarning(Google_MachineTypesScopedListWarning $warning) {
$this->warning = $warning;
}
public function getWarning() {
return $this->warning;
}
}
class Google_MachineTypesScopedListWarning extends Google_Model {
public $code;
protected $__dataType = 'Google_MachineTypesScopedListWarningData';
protected $__dataDataType = 'array';
public $data;
public $message;
public function setCode( $code) {
$this->code = $code;
}
public function getCode() {
return $this->code;
}
public function setData(/* array(Google_MachineTypesScopedListWarningData) */ $data) {
$this->assertIsArray($data, 'Google_MachineTypesScopedListWarningData', __METHOD__);
$this->data = $data;
}
public function getData() {
return $this->data;
}
public function setMessage( $message) {
$this->message = $message;
}
public function getMessage() {
return $this->message;
}
}
class Google_MachineTypesScopedListWarningData extends Google_Model {
public $key;
public $value;
public function setKey( $key) {
$this->key = $key;
}
public function getKey() {
return $this->key;
}
public function setValue( $value) {
$this->value = $value;
}
public function getValue() {
return $this->value;
}
}
class Google_Metadata extends Google_Model {
public $fingerprint;
protected $__itemsType = 'Google_MetadataItems';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public function setFingerprint( $fingerprint) {
$this->fingerprint = $fingerprint;
}
public function getFingerprint() {
return $this->fingerprint;
}
public function setItems(/* array(Google_MetadataItems) */ $items) {
$this->assertIsArray($items, 'Google_MetadataItems', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
}
class Google_MetadataItems extends Google_Model {
public $key;
public $value;
public function setKey( $key) {
$this->key = $key;
}
public function getKey() {
return $this->key;
}
public function setValue( $value) {
$this->value = $value;
}
public function getValue() {
return $this->value;
}
}
class Google_Network extends Google_Model {
public $IPv4Range;
public $creationTimestamp;
public $description;
public $gatewayIPv4;
public $id;
public $kind;
public $name;
public $selfLink;
public function setIPv4Range( $IPv4Range) {
$this->IPv4Range = $IPv4Range;
}
public function getIPv4Range() {
return $this->IPv4Range;
}
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setGatewayIPv4( $gatewayIPv4) {
$this->gatewayIPv4 = $gatewayIPv4;
}
public function getGatewayIPv4() {
return $this->gatewayIPv4;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_NetworkInterface extends Google_Model {
protected $__accessConfigsType = 'Google_AccessConfig';
protected $__accessConfigsDataType = 'array';
public $accessConfigs;
public $name;
public $network;
public $networkIP;
public function setAccessConfigs(/* array(Google_AccessConfig) */ $accessConfigs) {
$this->assertIsArray($accessConfigs, 'Google_AccessConfig', __METHOD__);
$this->accessConfigs = $accessConfigs;
}
public function getAccessConfigs() {
return $this->accessConfigs;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setNetwork( $network) {
$this->network = $network;
}
public function getNetwork() {
return $this->network;
}
public function setNetworkIP( $networkIP) {
$this->networkIP = $networkIP;
}
public function getNetworkIP() {
return $this->networkIP;
}
}
class Google_NetworkList extends Google_Model {
public $id;
protected $__itemsType = 'Google_Network';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_Network) */ $items) {
$this->assertIsArray($items, 'Google_Network', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_Operation extends Google_Model {
public $clientOperationId;
public $creationTimestamp;
public $endTime;
protected $__errorType = 'Google_OperationError';
protected $__errorDataType = '';
public $error;
public $httpErrorMessage;
public $httpErrorStatusCode;
public $id;
public $insertTime;
public $kind;
public $name;
public $operationType;
public $progress;
public $region;
public $selfLink;
public $startTime;
public $status;
public $statusMessage;
public $targetId;
public $targetLink;
public $user;
protected $__warningsType = 'Google_OperationWarnings';
protected $__warningsDataType = 'array';
public $warnings;
public $zone;
public function setClientOperationId( $clientOperationId) {
$this->clientOperationId = $clientOperationId;
}
public function getClientOperationId() {
return $this->clientOperationId;
}
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setEndTime( $endTime) {
$this->endTime = $endTime;
}
public function getEndTime() {
return $this->endTime;
}
public function setError(Google_OperationError $error) {
$this->error = $error;
}
public function getError() {
return $this->error;
}
public function setHttpErrorMessage( $httpErrorMessage) {
$this->httpErrorMessage = $httpErrorMessage;
}
public function getHttpErrorMessage() {
return $this->httpErrorMessage;
}
public function setHttpErrorStatusCode( $httpErrorStatusCode) {
$this->httpErrorStatusCode = $httpErrorStatusCode;
}
public function getHttpErrorStatusCode() {
return $this->httpErrorStatusCode;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setInsertTime( $insertTime) {
$this->insertTime = $insertTime;
}
public function getInsertTime() {
return $this->insertTime;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setOperationType( $operationType) {
$this->operationType = $operationType;
}
public function getOperationType() {
return $this->operationType;
}
public function setProgress( $progress) {
$this->progress = $progress;
}
public function getProgress() {
return $this->progress;
}
public function setRegion( $region) {
$this->region = $region;
}
public function getRegion() {
return $this->region;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
public function setStartTime( $startTime) {
$this->startTime = $startTime;
}
public function getStartTime() {
return $this->startTime;
}
public function setStatus( $status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
public function setStatusMessage( $statusMessage) {
$this->statusMessage = $statusMessage;
}
public function getStatusMessage() {
return $this->statusMessage;
}
public function setTargetId( $targetId) {
$this->targetId = $targetId;
}
public function getTargetId() {
return $this->targetId;
}
public function setTargetLink( $targetLink) {
$this->targetLink = $targetLink;
}
public function getTargetLink() {
return $this->targetLink;
}
public function setUser( $user) {
$this->user = $user;
}
public function getUser() {
return $this->user;
}
public function setWarnings(/* array(Google_OperationWarnings) */ $warnings) {
$this->assertIsArray($warnings, 'Google_OperationWarnings', __METHOD__);
$this->warnings = $warnings;
}
public function getWarnings() {
return $this->warnings;
}
public function setZone( $zone) {
$this->zone = $zone;
}
public function getZone() {
return $this->zone;
}
}
class Google_OperationAggregatedList extends Google_Model {
public $id;
protected $__itemsType = 'Google_OperationsScopedList';
protected $__itemsDataType = 'map';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(Google_OperationsScopedList $items) {
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_OperationError extends Google_Model {
protected $__errorsType = 'Google_OperationErrorErrors';
protected $__errorsDataType = 'array';
public $errors;
public function setErrors(/* array(Google_OperationErrorErrors) */ $errors) {
$this->assertIsArray($errors, 'Google_OperationErrorErrors', __METHOD__);
$this->errors = $errors;
}
public function getErrors() {
return $this->errors;
}
}
class Google_OperationErrorErrors extends Google_Model {
public $code;
public $location;
public $message;
public function setCode( $code) {
$this->code = $code;
}
public function getCode() {
return $this->code;
}
public function setLocation( $location) {
$this->location = $location;
}
public function getLocation() {
return $this->location;
}
public function setMessage( $message) {
$this->message = $message;
}
public function getMessage() {
return $this->message;
}
}
class Google_OperationList extends Google_Model {
public $id;
protected $__itemsType = 'Google_Operation';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_Operation) */ $items) {
$this->assertIsArray($items, 'Google_Operation', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_OperationWarnings extends Google_Model {
public $code;
protected $__dataType = 'Google_OperationWarningsData';
protected $__dataDataType = 'array';
public $data;
public $message;
public function setCode( $code) {
$this->code = $code;
}
public function getCode() {
return $this->code;
}
public function setData(/* array(Google_OperationWarningsData) */ $data) {
$this->assertIsArray($data, 'Google_OperationWarningsData', __METHOD__);
$this->data = $data;
}
public function getData() {
return $this->data;
}
public function setMessage( $message) {
$this->message = $message;
}
public function getMessage() {
return $this->message;
}
}
class Google_OperationWarningsData extends Google_Model {
public $key;
public $value;
public function setKey( $key) {
$this->key = $key;
}
public function getKey() {
return $this->key;
}
public function setValue( $value) {
$this->value = $value;
}
public function getValue() {
return $this->value;
}
}
class Google_OperationsScopedList extends Google_Model {
protected $__operationsType = 'Google_Operation';
protected $__operationsDataType = 'array';
public $operations;
protected $__warningType = 'Google_OperationsScopedListWarning';
protected $__warningDataType = '';
public $warning;
public function setOperations(/* array(Google_Operation) */ $operations) {
$this->assertIsArray($operations, 'Google_Operation', __METHOD__);
$this->operations = $operations;
}
public function getOperations() {
return $this->operations;
}
public function setWarning(Google_OperationsScopedListWarning $warning) {
$this->warning = $warning;
}
public function getWarning() {
return $this->warning;
}
}
class Google_OperationsScopedListWarning extends Google_Model {
public $code;
protected $__dataType = 'Google_OperationsScopedListWarningData';
protected $__dataDataType = 'array';
public $data;
public $message;
public function setCode( $code) {
$this->code = $code;
}
public function getCode() {
return $this->code;
}
public function setData(/* array(Google_OperationsScopedListWarningData) */ $data) {
$this->assertIsArray($data, 'Google_OperationsScopedListWarningData', __METHOD__);
$this->data = $data;
}
public function getData() {
return $this->data;
}
public function setMessage( $message) {
$this->message = $message;
}
public function getMessage() {
return $this->message;
}
}
class Google_OperationsScopedListWarningData extends Google_Model {
public $key;
public $value;
public function setKey( $key) {
$this->key = $key;
}
public function getKey() {
return $this->key;
}
public function setValue( $value) {
$this->value = $value;
}
public function getValue() {
return $this->value;
}
}
class Google_Project extends Google_Model {
protected $__commonInstanceMetadataType = 'Google_Metadata';
protected $__commonInstanceMetadataDataType = '';
public $commonInstanceMetadata;
public $creationTimestamp;
public $description;
public $id;
public $kind;
public $name;
protected $__quotasType = 'Google_Quota';
protected $__quotasDataType = 'array';
public $quotas;
public $selfLink;
public function setCommonInstanceMetadata(Google_Metadata $commonInstanceMetadata) {
$this->commonInstanceMetadata = $commonInstanceMetadata;
}
public function getCommonInstanceMetadata() {
return $this->commonInstanceMetadata;
}
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setQuotas(/* array(Google_Quota) */ $quotas) {
$this->assertIsArray($quotas, 'Google_Quota', __METHOD__);
$this->quotas = $quotas;
}
public function getQuotas() {
return $this->quotas;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_Quota extends Google_Model {
public $limit;
public $metric;
public $usage;
public function setLimit( $limit) {
$this->limit = $limit;
}
public function getLimit() {
return $this->limit;
}
public function setMetric( $metric) {
$this->metric = $metric;
}
public function getMetric() {
return $this->metric;
}
public function setUsage( $usage) {
$this->usage = $usage;
}
public function getUsage() {
return $this->usage;
}
}
class Google_Region extends Google_Model {
public $creationTimestamp;
protected $__deprecatedType = 'Google_DeprecationStatus';
protected $__deprecatedDataType = '';
public $deprecated;
public $description;
public $id;
public $kind;
public $name;
protected $__quotasType = 'Google_Quota';
protected $__quotasDataType = 'array';
public $quotas;
public $selfLink;
public $status;
public $zones;
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDeprecated(Google_DeprecationStatus $deprecated) {
$this->deprecated = $deprecated;
}
public function getDeprecated() {
return $this->deprecated;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setQuotas(/* array(Google_Quota) */ $quotas) {
$this->assertIsArray($quotas, 'Google_Quota', __METHOD__);
$this->quotas = $quotas;
}
public function getQuotas() {
return $this->quotas;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
public function setStatus( $status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
public function setZones(/* array(Google_string) */ $zones) {
$this->assertIsArray($zones, 'Google_string', __METHOD__);
$this->zones = $zones;
}
public function getZones() {
return $this->zones;
}
}
class Google_RegionList extends Google_Model {
public $id;
protected $__itemsType = 'Google_Region';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_Region) */ $items) {
$this->assertIsArray($items, 'Google_Region', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_Route extends Google_Model {
public $creationTimestamp;
public $description;
public $destRange;
public $id;
public $kind;
public $name;
public $network;
public $nextHopGateway;
public $nextHopInstance;
public $nextHopIp;
public $nextHopNetwork;
public $priority;
public $selfLink;
public $tags;
protected $__warningsType = 'Google_RouteWarnings';
protected $__warningsDataType = 'array';
public $warnings;
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setDestRange( $destRange) {
$this->destRange = $destRange;
}
public function getDestRange() {
return $this->destRange;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setNetwork( $network) {
$this->network = $network;
}
public function getNetwork() {
return $this->network;
}
public function setNextHopGateway( $nextHopGateway) {
$this->nextHopGateway = $nextHopGateway;
}
public function getNextHopGateway() {
return $this->nextHopGateway;
}
public function setNextHopInstance( $nextHopInstance) {
$this->nextHopInstance = $nextHopInstance;
}
public function getNextHopInstance() {
return $this->nextHopInstance;
}
public function setNextHopIp( $nextHopIp) {
$this->nextHopIp = $nextHopIp;
}
public function getNextHopIp() {
return $this->nextHopIp;
}
public function setNextHopNetwork( $nextHopNetwork) {
$this->nextHopNetwork = $nextHopNetwork;
}
public function getNextHopNetwork() {
return $this->nextHopNetwork;
}
public function setPriority( $priority) {
$this->priority = $priority;
}
public function getPriority() {
return $this->priority;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
public function setTags(/* array(Google_string) */ $tags) {
$this->assertIsArray($tags, 'Google_string', __METHOD__);
$this->tags = $tags;
}
public function getTags() {
return $this->tags;
}
public function setWarnings(/* array(Google_RouteWarnings) */ $warnings) {
$this->assertIsArray($warnings, 'Google_RouteWarnings', __METHOD__);
$this->warnings = $warnings;
}
public function getWarnings() {
return $this->warnings;
}
}
class Google_RouteList extends Google_Model {
public $id;
protected $__itemsType = 'Google_Route';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_Route) */ $items) {
$this->assertIsArray($items, 'Google_Route', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_RouteWarnings extends Google_Model {
public $code;
protected $__dataType = 'Google_RouteWarningsData';
protected $__dataDataType = 'array';
public $data;
public $message;
public function setCode( $code) {
$this->code = $code;
}
public function getCode() {
return $this->code;
}
public function setData(/* array(Google_RouteWarningsData) */ $data) {
$this->assertIsArray($data, 'Google_RouteWarningsData', __METHOD__);
$this->data = $data;
}
public function getData() {
return $this->data;
}
public function setMessage( $message) {
$this->message = $message;
}
public function getMessage() {
return $this->message;
}
}
class Google_RouteWarningsData extends Google_Model {
public $key;
public $value;
public function setKey( $key) {
$this->key = $key;
}
public function getKey() {
return $this->key;
}
public function setValue( $value) {
$this->value = $value;
}
public function getValue() {
return $this->value;
}
}
class Google_SerialPortOutput extends Google_Model {
public $contents;
public $kind;
public $selfLink;
public function setContents( $contents) {
$this->contents = $contents;
}
public function getContents() {
return $this->contents;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_ServiceAccount extends Google_Model {
public $email;
public $scopes;
public function setEmail( $email) {
$this->email = $email;
}
public function getEmail() {
return $this->email;
}
public function setScopes(/* array(Google_string) */ $scopes) {
$this->assertIsArray($scopes, 'Google_string', __METHOD__);
$this->scopes = $scopes;
}
public function getScopes() {
return $this->scopes;
}
}
class Google_Snapshot extends Google_Model {
public $creationTimestamp;
public $description;
public $diskSizeGb;
public $id;
public $kind;
public $name;
public $selfLink;
public $sourceDisk;
public $sourceDiskId;
public $status;
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setDiskSizeGb( $diskSizeGb) {
$this->diskSizeGb = $diskSizeGb;
}
public function getDiskSizeGb() {
return $this->diskSizeGb;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
public function setSourceDisk( $sourceDisk) {
$this->sourceDisk = $sourceDisk;
}
public function getSourceDisk() {
return $this->sourceDisk;
}
public function setSourceDiskId( $sourceDiskId) {
$this->sourceDiskId = $sourceDiskId;
}
public function getSourceDiskId() {
return $this->sourceDiskId;
}
public function setStatus( $status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
}
class Google_SnapshotList extends Google_Model {
public $id;
protected $__itemsType = 'Google_Snapshot';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_Snapshot) */ $items) {
$this->assertIsArray($items, 'Google_Snapshot', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_Tags extends Google_Model {
public $fingerprint;
public $items;
public function setFingerprint( $fingerprint) {
$this->fingerprint = $fingerprint;
}
public function getFingerprint() {
return $this->fingerprint;
}
public function setItems(/* array(Google_string) */ $items) {
$this->assertIsArray($items, 'Google_string', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
}
class Google_Zone extends Google_Model {
public $creationTimestamp;
protected $__deprecatedType = 'Google_DeprecationStatus';
protected $__deprecatedDataType = '';
public $deprecated;
public $description;
public $id;
public $kind;
protected $__maintenanceWindowsType = 'Google_ZoneMaintenanceWindows';
protected $__maintenanceWindowsDataType = 'array';
public $maintenanceWindows;
public $name;
protected $__quotasType = 'Google_Quota';
protected $__quotasDataType = 'array';
public $quotas;
public $region;
public $selfLink;
public $status;
public function setCreationTimestamp( $creationTimestamp) {
$this->creationTimestamp = $creationTimestamp;
}
public function getCreationTimestamp() {
return $this->creationTimestamp;
}
public function setDeprecated(Google_DeprecationStatus $deprecated) {
$this->deprecated = $deprecated;
}
public function getDeprecated() {
return $this->deprecated;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setMaintenanceWindows(/* array(Google_ZoneMaintenanceWindows) */ $maintenanceWindows) {
$this->assertIsArray($maintenanceWindows, 'Google_ZoneMaintenanceWindows', __METHOD__);
$this->maintenanceWindows = $maintenanceWindows;
}
public function getMaintenanceWindows() {
return $this->maintenanceWindows;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setQuotas(/* array(Google_Quota) */ $quotas) {
$this->assertIsArray($quotas, 'Google_Quota', __METHOD__);
$this->quotas = $quotas;
}
public function getQuotas() {
return $this->quotas;
}
public function setRegion( $region) {
$this->region = $region;
}
public function getRegion() {
return $this->region;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
public function setStatus( $status) {
$this->status = $status;
}
public function getStatus() {
return $this->status;
}
}
class Google_ZoneList extends Google_Model {
public $id;
protected $__itemsType = 'Google_Zone';
protected $__itemsDataType = 'array';
public $items;
public $kind;
public $nextPageToken;
public $selfLink;
public function setId( $id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setItems(/* array(Google_Zone) */ $items) {
$this->assertIsArray($items, 'Google_Zone', __METHOD__);
$this->items = $items;
}
public function getItems() {
return $this->items;
}
public function setKind( $kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setNextPageToken( $nextPageToken) {
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken() {
return $this->nextPageToken;
}
public function setSelfLink( $selfLink) {
$this->selfLink = $selfLink;
}
public function getSelfLink() {
return $this->selfLink;
}
}
class Google_ZoneMaintenanceWindows extends Google_Model {
public $beginTime;
public $description;
public $endTime;
public $name;
public function setBeginTime( $beginTime) {
$this->beginTime = $beginTime;
}
public function getBeginTime() {
return $this->beginTime;
}
public function setDescription( $description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setEndTime( $endTime) {
$this->endTime = $endTime;
}
public function getEndTime() {
return $this->endTime;
}
public function setName( $name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
}
|