Skip to content
This repository was archived by the owner on Jul 20, 2023. It is now read-only.

Commit 8183015

Browse files
chore: override API mixins when needed (#70)
- [ ] Regenerate this pull request now. PiperOrigin-RevId: 477248447 Source-Link: googleapis/googleapis@4689c73 Source-Link: https://github.com/googleapis/googleapis-gen/commit/c4059786a5cd805a0151d95b477fbc486bcbcedc Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYzQwNTk3ODZhNWNkODA1YTAxNTFkOTViNDc3ZmJjNDg2YmNiY2VkYyJ9 fix!: Fix resource annotations for Cloud Deploy to use common resource name for locations This is technically a breaking change in that it's modifying the type for a resource, but it's a fast-follow fix to the earlier broken definition. PiperOrigin-RevId: 477192133 Source-Link: googleapis/googleapis@f252e11 Source-Link: https://github.com/googleapis/googleapis-gen/commit/34ca7cd6da0ac5920011c8bda01e8bc32b7da444 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMzRjYTdjZDZkYTBhYzU5MjAwMTFjOGJkYTAxZThiYzMyYjdkYTQ0NCJ9 feat: Publish new JobRun resource and associated methods for Google Cloud Deploy PiperOrigin-RevId: 477144554 Source-Link: googleapis/googleapis@59a30fb Source-Link: https://github.com/googleapis/googleapis-gen/commit/4edce039d3cffaa4202f6112d9caf6fc29dec0be Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGVkY2UwMzlkM2NmZmFhNDIwMmY2MTEyZDljYWY2ZmMyOWRlYzBiZSJ9
1 parent eb43244 commit 8183015

15 files changed

Lines changed: 19918 additions & 6849 deletions

protos/google/cloud/deploy/v1/cloud_deploy.proto

Lines changed: 487 additions & 8 deletions
Large diffs are not rendered by default.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
// Copyright 2022 Google LLC
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
syntax = "proto3";
16+
17+
package google.cloud.deploy.v1;
18+
19+
import "google/cloud/deploy/v1/log_enums.proto";
20+
21+
option go_package = "google.golang.org/genproto/googleapis/cloud/deploy/v1;deploy";
22+
option java_multiple_files = true;
23+
option java_outer_classname = "JobRunNotificationPayloadProto";
24+
option java_package = "com.google.cloud.deploy.v1";
25+
26+
// Payload proto for "clouddeploy.googleapis.com/jobrun_notification"
27+
// Platform Log event that describes the failure to send JobRun resource update
28+
// Pub/Sub notification.
29+
message JobRunNotificationEvent {
30+
// Debug message for when a notification fails to send.
31+
string message = 1;
32+
33+
// The name of the `JobRun`.
34+
string job_run = 2;
35+
36+
// Unique identifier of the `DeliveryPipeline`.
37+
string pipeline_uid = 3;
38+
39+
// Unique identifier of the `Release`.
40+
string release_uid = 4;
41+
42+
// Unique identifier of the `Rollout`.
43+
string rollout_uid = 5;
44+
45+
// ID of the `Target`.
46+
string target_id = 6;
47+
48+
// Type of this notification, e.g. for a Pub/Sub failure.
49+
Type type = 7;
50+
}

protos/protos.d.ts

Lines changed: 2866 additions & 308 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/protos.js

Lines changed: 12542 additions & 6387 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)