Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

Commit

Permalink
docs: clarify that project number is used as the canonical project id…
Browse files Browse the repository at this point in the history
…entifier for job and job template names (#247)

* docs: clarify that project number is used as the canonical project identifier for job and job template names docs: fix broken link and code formatting feat: add support for allow_missing param on DELETE request fix!: remove Encryption settings that were published due to a sync issue BREAKING CHANGE: requests specifying Encryption settings are rejected by the server

PiperOrigin-RevId: 401033248

Source-Link: googleapis/googleapis@ef9130f

Source-Link: googleapis/googleapis-gen@9ebec33
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOWViZWMzMzQ2YTY0NjkwYzA2M2ViNzJmMWIxYzFkNmQyNzkxNzdjZSJ9

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* Supporess clirr

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Chanseok Oh <chanseok@google.com>
  • Loading branch information
3 people committed Oct 8, 2021
1 parent 93be9af commit 27b43b5
Show file tree
Hide file tree
Showing 30 changed files with 1,755 additions and 6,247 deletions.
Expand Up @@ -539,6 +539,7 @@ public final void deleteJob(String name) {
* DeleteJobRequest request =
* DeleteJobRequest.newBuilder()
* .setName(JobName.of("[PROJECT]", "[LOCATION]", "[JOB]").toString())
* .setAllowMissing(true)
* .build();
* transcoderServiceClient.deleteJob(request);
* }
Expand All @@ -562,6 +563,7 @@ public final void deleteJob(DeleteJobRequest request) {
* DeleteJobRequest request =
* DeleteJobRequest.newBuilder()
* .setName(JobName.of("[PROJECT]", "[LOCATION]", "[JOB]").toString())
* .setAllowMissing(true)
* .build();
* ApiFuture<Empty> future = transcoderServiceClient.deleteJobCallable().futureCall(request);
* // Do something.
Expand Down Expand Up @@ -992,6 +994,7 @@ public final void deleteJobTemplate(String name) {
* DeleteJobTemplateRequest request =
* DeleteJobTemplateRequest.newBuilder()
* .setName(JobTemplateName.of("[PROJECT]", "[LOCATION]", "[JOB_TEMPLATE]").toString())
* .setAllowMissing(true)
* .build();
* transcoderServiceClient.deleteJobTemplate(request);
* }
Expand All @@ -1015,6 +1018,7 @@ public final void deleteJobTemplate(DeleteJobTemplateRequest request) {
* DeleteJobTemplateRequest request =
* DeleteJobTemplateRequest.newBuilder()
* .setName(JobTemplateName.of("[PROJECT]", "[LOCATION]", "[JOB_TEMPLATE]").toString())
* .setAllowMissing(true)
* .build();
* ApiFuture<Empty> future =
* transcoderServiceClient.deleteJobTemplateCallable().futureCall(request);
Expand Down
Expand Up @@ -16,4 +16,33 @@
<className>com/google/cloud/video/transcoder/v1/*OrBuilder</className>
<method>boolean has*(*)</method>
</difference>
<difference>
<differenceType>8001</differenceType>
<className>com/google/cloud/video/transcoder/v1/Encryption*</className>
</difference>
<difference>
<differenceType>6011</differenceType>
<className>com/google/cloud/video/transcoder/v1/MuxStream</className>
<field>ENCRYPTION_FIELD_NUMBER</field>
</difference>
<difference>
<differenceType>7002</differenceType>
<className>com/google/cloud/video/transcoder/v1/MuxStream</className>
<method>*Encryption()</method>
</difference>
<difference>
<differenceType>7002</differenceType>
<className>com/google/cloud/video/transcoder/v1/MuxStream</className>
<method>*EncryptionOrBuilder()</method>
</difference>
<difference>
<differenceType>7002</differenceType>
<className>com/google/cloud/video/transcoder/v1/MuxStream*Builder</className>
<method>*Encryption(*)</method>
</difference>
<difference>
<differenceType>7002</differenceType>
<className>com/google/cloud/video/transcoder/v1/MuxStream*Builder</className>
<method>*Encryption*Builder(*)</method>
</difference>
</differences>

0 comments on commit 27b43b5

Please sign in to comment.