* The cloud asset API manages the history and inventory of cloud resources.

* *

* For more information about this service, see the API * Documentation *

* * @author Google, Inc. */ class Google_Service_CloudAsset extends Google_Service { /** View and manage your data across Google Cloud Platform services. */ const CLOUD_PLATFORM = "https://www.googleapis.com/auth/cloud-platform"; public $operations; public $v1; /** * Constructs the internal representation of the CloudAsset service. * * @param Google_Client $client */ public function __construct(Google_Client $client) { parent::__construct($client); $this->rootUrl = 'https://cloudasset.googleapis.com/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'cloudasset'; $this->operations = new Google_Service_CloudAsset_Resource_Operations( $this, $this->serviceName, 'operations', array( 'methods' => array( 'get' => array( 'path' => 'v1/{+name}', 'httpMethod' => 'GET', 'parameters' => array( 'name' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ), ) ) ); $this->v1 = new Google_Service_CloudAsset_Resource_V1( $this, $this->serviceName, 'v1', array( 'methods' => array( 'batchGetAssetsHistory' => array( 'path' => 'v1/{+parent}:batchGetAssetsHistory', 'httpMethod' => 'GET', 'parameters' => array( 'parent' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'contentType' => array( 'location' => 'query', 'type' => 'string', ), 'readTimeWindow.endTime' => array( 'location' => 'query', 'type' => 'string', ), 'readTimeWindow.startTime' => array( 'location' => 'query', 'type' => 'string', ), 'assetNames' => array( 'location' => 'query', 'type' => 'string', 'repeated' => true, ), ), ),'exportAssets' => array( 'path' => 'v1/{+parent}:exportAssets', 'httpMethod' => 'POST', 'parameters' => array( 'parent' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ), ) ) ); } }