Skip to content

feat(job): migrate region tags to include product prefix #9966

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public static Company generateCompany() {
}
// [END basic_company]

// [START job_create_company]
// [START create_company]

/** Create a company. */
Expand All @@ -84,7 +85,9 @@ public static Company createCompany(Company companyToBeCreated) throws IOExcepti
}
}
// [END create_company]
// [END job_create_company]

// [START job_get_company]
// [START get_company]

/** Get a company. */
Expand All @@ -100,7 +103,9 @@ public static Company getCompany(String companyName) throws IOException {
}
}
// [END get_company]
// [END job_get_company]

// [START job_update_company]
// [START update_company]

/** Updates a company. */
Expand All @@ -125,7 +130,9 @@ public static Company updateCompany(String companyName, Company companyToBeUpdat
}
}
// [END update_company]
// [END job_update_company]

// [START job_update_company_with_field_mask]
// [START update_company_with_field_mask]

/** Updates a company. */
Expand All @@ -151,6 +158,7 @@ public static Company updateCompanyWithFieldMask(
}
}
// [END update_company_with_field_mask]
// [END job_update_company_with_field_mask]

// [START delete_company]

Expand Down