Skip to content

Commit 38d25f4

Browse files
authored
chore: migrate to owlbot (#606)
1 parent 2ec5e29 commit 38d25f4

28 files changed

+121
-64
lines changed

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchAutocompleteJobTitle.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,16 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Complete job title given partial text (autocomplete)
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchAutocompleteJobTitle [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"] [--query "[partially typed job title]"] [--num_results 5] [--language_code "en-US"]']
20+
// usage: gradle run
21+
// -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchAutocompleteJobTitle
22+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
23+
// tenancy is optional)"] [--query "[partially typed job title]"] [--num_results 5] [--language_code
24+
// "en-US"]']
2125

2226
package com.google.cloud.examples.talent.v4beta1;
2327

2428
import com.google.cloud.talent.v4beta1.CompleteQueryRequest;
2529
import com.google.cloud.talent.v4beta1.CompleteQueryResponse;
26-
import com.google.cloud.talent.v4beta1.CompleteQueryResponse.CompletionResult;
2730
import com.google.cloud.talent.v4beta1.CompletionClient;
2831
import com.google.cloud.talent.v4beta1.TenantName;
2932
import com.google.cloud.talent.v4beta1.TenantOrProjectName;

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchBatchCreateJobs.java

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,31 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
// DO NOT EDIT! This is a generated sample ("LongRunningRequestAsync", "job_search_batch_create_jobs")
16+
// DO NOT EDIT! This is a generated sample ("LongRunningRequestAsync",
17+
// "job_search_batch_create_jobs")
1718
// sample-metadata:
1819
// title:
1920
// description: Batch Create Jobs
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchBatchCreateJobs [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"] [--company_name_one "Company name, e.g. projects/your-project/companies/company-id"] [--requisition_id_one "Job requisition ID, aka Posting ID. Unique per job."] [--title_one "Software Engineer"] [--description_one "This is a description of this <i>wonderful</i> job!"] [--job_application_url_one "https://www.example.org/job-posting/123"] [--address_one "1600 Amphitheatre Parkway, Mountain View, CA 94043"] [--language_code_one "en-US"] [--company_name_two "Company name, e.g. projects/your-project/companies/company-id"] [--requisition_id_two "Job requisition ID, aka Posting ID. Unique per job."] [--title_two "Quality Assurance"] [--description_two "This is a description of this <i>wonderful</i> job!"] [--job_application_url_two "https://www.example.org/job-posting/123"] [--address_two "111 8th Avenue, New York, NY 10011"] [--language_code_two "en-US"]']
21+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchBatchCreateJobs
22+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
23+
// tenancy is optional)"] [--company_name_one "Company name, e.g.
24+
// projects/your-project/companies/company-id"] [--requisition_id_one "Job requisition ID, aka
25+
// Posting ID. Unique per job."] [--title_one "Software Engineer"] [--description_one "This is a
26+
// description of this <i>wonderful</i> job!"] [--job_application_url_one
27+
// "https://www.example.org/job-posting/123"] [--address_one "1600 Amphitheatre Parkway, Mountain
28+
// View, CA 94043"] [--language_code_one "en-US"] [--company_name_two "Company name, e.g.
29+
// projects/your-project/companies/company-id"] [--requisition_id_two "Job requisition ID, aka
30+
// Posting ID. Unique per job."] [--title_two "Quality Assurance"] [--description_two "This is a
31+
// description of this <i>wonderful</i> job!"] [--job_application_url_two
32+
// "https://www.example.org/job-posting/123"] [--address_two "111 8th Avenue, New York, NY 10011"]
33+
// [--language_code_two "en-US"]']
2134

2235
package com.google.cloud.examples.talent.v4beta1;
2336

2437
import com.google.api.gax.longrunning.OperationFuture;
2538
import com.google.cloud.talent.v4beta1.BatchCreateJobsRequest;
2639
import com.google.cloud.talent.v4beta1.BatchOperationMetadata;
2740
import com.google.cloud.talent.v4beta1.Job;
28-
import com.google.cloud.talent.v4beta1.Job.ApplicationInfo;
2941
import com.google.cloud.talent.v4beta1.JobOperationResult;
3042
import com.google.cloud.talent.v4beta1.JobServiceClient;
3143
import com.google.cloud.talent.v4beta1.TenantName;

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchBatchDeleteJob.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Batch delete jobs using a filter
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchBatchDeleteJob [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"] [--filter "[Query]"]']
20+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchBatchDeleteJob
21+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
22+
// tenancy is optional)"] [--filter "[Query]"]']
2123

2224
package com.google.cloud.examples.talent.v4beta1;
2325

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchBatchUpdateJobs.java

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,33 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
// DO NOT EDIT! This is a generated sample ("LongRunningRequestAsync", "job_search_batch_update_jobs")
16+
// DO NOT EDIT! This is a generated sample ("LongRunningRequestAsync",
17+
// "job_search_batch_update_jobs")
1718
// sample-metadata:
1819
// title:
1920
// description: Batch Update Jobs
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchBatchUpdateJobs [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"] [--job_name_one "job name, e.g. projects/your-project/tenants/tenant-id/jobs/job-id"] [--company_name_one "Company name, e.g. projects/your-project/companies/company-id"] [--requisition_id_one "Job requisition ID, aka Posting ID. Unique per job."] [--title_one "Software Engineer"] [--description_one "This is a description of this <i>wonderful</i> job!"] [--job_application_url_one "https://www.example.org/job-posting/123"] [--address_one "1600 Amphitheatre Parkway, Mountain View, CA 94043"] [--language_code_one "en-US"] [--job_name_two "job name, e.g. projects/your-project/tenants/tenant-id/jobs/job-id"] [--company_name_two "Company name, e.g. projects/your-project/companies/company-id"] [--requisition_id_two "Job requisition ID, aka Posting ID. Unique per job."] [--title_two "Quality Assurance"] [--description_two "This is a description of this <i>wonderful</i> job!"] [--job_application_url_two "https://www.example.org/job-posting/123"] [--address_two "111 8th Avenue, New York, NY 10011"] [--language_code_two "en-US"]']
21+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchBatchUpdateJobs
22+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
23+
// tenancy is optional)"] [--job_name_one "job name, e.g.
24+
// projects/your-project/tenants/tenant-id/jobs/job-id"] [--company_name_one "Company name, e.g.
25+
// projects/your-project/companies/company-id"] [--requisition_id_one "Job requisition ID, aka
26+
// Posting ID. Unique per job."] [--title_one "Software Engineer"] [--description_one "This is a
27+
// description of this <i>wonderful</i> job!"] [--job_application_url_one
28+
// "https://www.example.org/job-posting/123"] [--address_one "1600 Amphitheatre Parkway, Mountain
29+
// View, CA 94043"] [--language_code_one "en-US"] [--job_name_two "job name, e.g.
30+
// projects/your-project/tenants/tenant-id/jobs/job-id"] [--company_name_two "Company name, e.g.
31+
// projects/your-project/companies/company-id"] [--requisition_id_two "Job requisition ID, aka
32+
// Posting ID. Unique per job."] [--title_two "Quality Assurance"] [--description_two "This is a
33+
// description of this <i>wonderful</i> job!"] [--job_application_url_two
34+
// "https://www.example.org/job-posting/123"] [--address_two "111 8th Avenue, New York, NY 10011"]
35+
// [--language_code_two "en-US"]']
2136

2237
package com.google.cloud.examples.talent.v4beta1;
2338

2439
import com.google.api.gax.longrunning.OperationFuture;
2540
import com.google.cloud.talent.v4beta1.BatchOperationMetadata;
2641
import com.google.cloud.talent.v4beta1.BatchUpdateJobsRequest;
2742
import com.google.cloud.talent.v4beta1.Job;
28-
import com.google.cloud.talent.v4beta1.Job.ApplicationInfo;
2943
import com.google.cloud.talent.v4beta1.JobOperationResult;
3044
import com.google.cloud.talent.v4beta1.JobServiceClient;
3145
import com.google.cloud.talent.v4beta1.TenantName;

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchCommuteSearch.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Search Jobs using commute distance
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCommuteSearch [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"]']
20+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCommuteSearch
21+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
22+
// tenancy is optional)"]']
2123

2224
package com.google.cloud.examples.talent.v4beta1;
2325

@@ -28,7 +30,6 @@
2830
import com.google.cloud.talent.v4beta1.JobServiceClient;
2931
import com.google.cloud.talent.v4beta1.RequestMetadata;
3032
import com.google.cloud.talent.v4beta1.SearchJobsRequest;
31-
import com.google.cloud.talent.v4beta1.SearchJobsResponse.MatchingJob;
3233
import com.google.cloud.talent.v4beta1.TenantName;
3334
import com.google.cloud.talent.v4beta1.TenantOrProjectName;
3435
import com.google.protobuf.Duration;

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchCreateClientEvent.java

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Creates a client event
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCreateClientEvent [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"] [--request_id "[request_id from ResponseMetadata]"] [--event_id "[Set this to a unique identifier]"]']
20+
// usage: gradle run
21+
// -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCreateClientEvent
22+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
23+
// tenancy is optional)"] [--request_id "[request_id from ResponseMetadata]"] [--event_id "[Set this
24+
// to a unique identifier]"]']
2125

2226
package com.google.cloud.examples.talent.v4beta1;
2327

@@ -76,7 +80,8 @@ public static void sampleCreateClientEvent(
7680

7781
// The timestamp of the event as seconds of UTC time since Unix epoch
7882
// For more information on how to create google.protobuf.Timestamps
79-
// See: https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/timestamp.proto
83+
// See:
84+
// https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/timestamp.proto
8085
long seconds = 0L;
8186
Timestamp createTime = Timestamp.newBuilder().setSeconds(seconds).build();
8287

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchCreateCompany.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Create Company
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCreateCompany [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"] [--display_name "My Company Name"] [--external_id "Identifier of this company in my system"]']
20+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCreateCompany
21+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
22+
// tenancy is optional)"] [--display_name "My Company Name"] [--external_id "Identifier of this
23+
// company in my system"]']
2124

2225
package com.google.cloud.examples.talent.v4beta1;
2326

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchCreateJob.java

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,19 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Create Job
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCreateJob [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"] [--company_name "Company name, e.g. projects/your-project/companies/company-id"] [--requisition_id "Job requisition ID, aka Posting ID. Unique per job."] [--title "Software Engineer"] [--description "This is a description of this <i>wonderful</i> job!"] [--job_application_url "https://www.example.org/job-posting/123"] [--address_one "1600 Amphitheatre Parkway, Mountain View, CA 94043"] [--address_two "111 8th Avenue, New York, NY 10011"] [--language_code "en-US"]']
20+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCreateJob
21+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
22+
// tenancy is optional)"] [--company_name "Company name, e.g.
23+
// projects/your-project/companies/company-id"] [--requisition_id "Job requisition ID, aka Posting
24+
// ID. Unique per job."] [--title "Software Engineer"] [--description "This is a description of this
25+
// <i>wonderful</i> job!"] [--job_application_url "https://www.example.org/job-posting/123"]
26+
// [--address_one "1600 Amphitheatre Parkway, Mountain View, CA 94043"] [--address_two "111 8th
27+
// Avenue, New York, NY 10011"] [--language_code "en-US"]']
2128

2229
package com.google.cloud.examples.talent.v4beta1;
2330

2431
import com.google.cloud.talent.v4beta1.CreateJobRequest;
2532
import com.google.cloud.talent.v4beta1.Job;
26-
import com.google.cloud.talent.v4beta1.Job.ApplicationInfo;
2733
import com.google.cloud.talent.v4beta1.JobServiceClient;
2834
import com.google.cloud.talent.v4beta1.TenantName;
2935
import com.google.cloud.talent.v4beta1.TenantOrProjectName;

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchCreateJobCustomAttributes.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Create Job with Custom Attributes
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCreateJobCustomAttributes [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"] [--company_name "Company name, e.g. projects/your-project/companies/company-id"] [--requisition_id "Job requisition ID, aka Posting ID. Unique per job."] [--language_code "en-US"]']
20+
// usage: gradle run
21+
// -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCreateJobCustomAttributes
22+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
23+
// tenancy is optional)"] [--company_name "Company name, e.g.
24+
// projects/your-project/companies/company-id"] [--requisition_id "Job requisition ID, aka Posting
25+
// ID. Unique per job."] [--language_code "en-US"]']
2126

2227
package com.google.cloud.examples.talent.v4beta1;
2328

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchCreateTenant.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Create Tenant for scoping resources, e.g. companies and jobs
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCreateTenant [--args='[--project_id "Your Google Cloud Project ID"] [--external_id "Your Unique Identifier for Tenant"]']
20+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCreateTenant
21+
// [--args='[--project_id "Your Google Cloud Project ID"] [--external_id "Your Unique Identifier for
22+
// Tenant"]']
2123

2224
package com.google.cloud.examples.talent.v4beta1;
2325

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchCustomRankingSearch.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,17 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Search Jobs using custom rankings
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCustomRankingSearch [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"]']
20+
// usage: gradle run
21+
// -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchCustomRankingSearch
22+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
23+
// tenancy is optional)"]']
2124

2225
package com.google.cloud.examples.talent.v4beta1;
2326

2427
import com.google.cloud.talent.v4beta1.Job;
2528
import com.google.cloud.talent.v4beta1.JobServiceClient;
2629
import com.google.cloud.talent.v4beta1.RequestMetadata;
2730
import com.google.cloud.talent.v4beta1.SearchJobsRequest;
28-
import com.google.cloud.talent.v4beta1.SearchJobsRequest.CustomRankingInfo;
29-
import com.google.cloud.talent.v4beta1.SearchJobsResponse.MatchingJob;
3031
import com.google.cloud.talent.v4beta1.TenantName;
3132
import com.google.cloud.talent.v4beta1.TenantOrProjectName;
3233
import org.apache.commons.cli.CommandLine;

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchDeleteCompany.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Delete Company
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchDeleteCompany [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"] [--company_id "ID of the company to delete"]']
20+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchDeleteCompany
21+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
22+
// tenancy is optional)"] [--company_id "ID of the company to delete"]']
2123

2224
package com.google.cloud.examples.talent.v4beta1;
2325

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchDeleteJob.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Delete Job
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchDeleteJob [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"] [--job_id "Company ID"]']
20+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchDeleteJob
21+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
22+
// tenancy is optional)"] [--job_id "Company ID"]']
2123

2224
package com.google.cloud.examples.talent.v4beta1;
2325

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchDeleteTenant.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Delete Tenant
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchDeleteTenant [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID)"]']
20+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchDeleteTenant
21+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID)"]']
2122

2223
package com.google.cloud.examples.talent.v4beta1;
2324

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchGetCompany.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Get Company
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchGetCompany [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"] [--company_id "Company ID"]']
20+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchGetCompany
21+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
22+
// tenancy is optional)"] [--company_id "Company ID"]']
2123

2224
package com.google.cloud.examples.talent.v4beta1;
2325

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchGetJob.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Get Job
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchGetJob [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using tenancy is optional)"] [--job_id "Job ID"]']
20+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchGetJob
21+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID (using
22+
// tenancy is optional)"] [--job_id "Job ID"]']
2123

2224
package com.google.cloud.examples.talent.v4beta1;
2325

talent/generated/src/main/java/com/google/cloud/examples/talent/v4beta1/JobSearchGetTenant.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
// sample-metadata:
1818
// title:
1919
// description: Get Tenant by name
20-
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchGetTenant [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID"]']
20+
// usage: gradle run -PmainClass=com.google.cloud.examples.talent.v4beta1.JobSearchGetTenant
21+
// [--args='[--project_id "Your Google Cloud Project ID"] [--tenant_id "Your Tenant ID"]']
2122

2223
package com.google.cloud.examples.talent.v4beta1;
2324

0 commit comments

Comments
 (0)