Storage Batch List Jobs

List storage batch operations jobs

Explore further

For detailed documentation that includes this code sample, see the following:

Code sample

C++

For more information, see the Cloud Storage C++ API reference documentation .

To authenticate to Cloud Storage, set up Application Default Credentials. For more information, see Set up authentication for client libraries .

  []( 
 google 
 :: 
 cloud 
 :: 
 storagebatchoperations_v1 
 :: 
 StorageBatchOperationsClient 
  
 client 
 , 
  
 std 
 :: 
 string 
  
 const 
&  
 project_id 
 ) 
  
 { 
  
 auto 
  
 const 
  
 parent 
  
 = 
  
 std 
 :: 
 string 
 { 
 "projects/" 
 } 
  
 + 
  
 project_id 
  
 + 
  
 "/locations/global" 
 ; 
  
 for 
  
 ( 
 auto 
  
 const 
&  
 job 
  
 : 
  
 client 
 . 
 ListJobs 
 ( 
 parent 
 )) 
  
 { 
  
 if 
  
 ( 
 ! 
 job 
 ) 
  
 throw 
  
 job 
 . 
 status 
 (); 
  
 std 
 :: 
 cout 
 << 
 job 
 - 
> name 
 () 
 << 
 " 
 \n 
 " 
 ; 
  
 } 
 } 
 

PHP

For more information, see the Cloud Storage PHP API reference documentation .

To authenticate to Cloud Storage, set up Application Default Credentials. For more information, see Set up authentication for client libraries .

  use Google\Cloud\StorageBatchOperations\V1\Client\StorageBatchOperationsClient; 
 use Google\Cloud\StorageBatchOperations\V1\ListJobsRequest; 
 /** 
 * List Jobs in a given project. 
 * 
 * @param string $projectId Your Google Cloud project ID. 
 *        (e.g. 'my-project-id') 
 */ 
 function list_jobs(string $projectId): void 
 { 
 // Create a client. 
 $storageBatchOperationsClient = new StorageBatchOperationsClient(); 
 $parent = $storageBatchOperationsClient->locationName($projectId, 'global'); 
 $request = new ListJobsRequest([ 
 'parent' => $parent, 
 ]); 
 $jobs = $storageBatchOperationsClient->listJobs($request); 
 foreach ($jobs as $job) { 
 printf('Job name: %s' . PHP_EOL, $job->getName()); 
 } 
 } 
 

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser .

Create a Mobile Website
View Site in Mobile | Classic
Share by: