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()); 
 } 
 } 
 

Ruby

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

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

  require 
  
 "google/cloud/storage_batch_operations" 
 # Lists Storage Batch Operations jobs for a given project. 
 # 
 # @param project_id [String] The ID of your Google Cloud project. 
 # 
 # @example 
 #   list_jobs project_id: "your-project-id" 
 # 
 def 
  
 list_jobs 
  
 project_id 
 : 
  
 client 
  
 = 
  
 Google 
 :: 
 Cloud 
 :: 
  StorageBatchOperations 
 
 . 
  storage_batch_operations 
 
  
 parent 
  
 = 
  
 "projects/ 
 #{ 
 project_id 
 } 
 /locations/global" 
  
 request 
  
 = 
  
 Google 
 :: 
 Cloud 
 :: 
  StorageBatchOperations 
 
 :: 
  V1 
 
 :: 
 ListJobsRequest 
 . 
 new 
  
 parent 
 : 
  
 parent 
 , 
  
 page_size 
 : 
  
 10 
  
 job_list 
  
 = 
  
 client 
 . 
 list_jobs 
  
 request 
  
 job_list 
 . 
 each 
  
 { 
  
 | 
 job 
 | 
  
 puts 
  
 "Job name: 
 #{ 
 job 
 . 
 name 
 } 
 present in the list" 
  
 } 
 end 
 

What's next

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

Design a Mobile Site
View Site in Mobile | Classic
Share by: