-
Notifications
You must be signed in to change notification settings - Fork 598
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [deploy] added support for new custom target type and deploy po…
…licy platform logs (#5561) * feat: added support for new custom target type and deploy policy platform logs docs: small Cloud Deploy API documentation updates PiperOrigin-RevId: 653323174 Source-Link: googleapis/googleapis@9293133 Source-Link: googleapis/googleapis-gen@655395d Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRlcGxveS8uT3dsQm90LnlhbWwiLCJoIjoiNjU1Mzk1ZDhkMDVlMjhlMjEwYzBkZTk3YTlmNWE3OGNmNDRhMDk3OCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
2c4325f
commit 6deeeed
Showing
27 changed files
with
2,132 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
...le-cloud-deploy/protos/google/cloud/deploy/v1/customtargettype_notification_payload.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
syntax = "proto3"; | ||
|
||
package google.cloud.deploy.v1; | ||
|
||
import "google/cloud/deploy/v1/log_enums.proto"; | ||
|
||
option go_package = "cloud.google.com/go/deploy/apiv1/deploypb;deploypb"; | ||
option java_multiple_files = true; | ||
option java_outer_classname = "CustomTargetTypeNotificationPayloadProto"; | ||
option java_package = "com.google.cloud.deploy.v1"; | ||
|
||
// Payload proto for "clouddeploy.googleapis.com/customtargettype_notification" | ||
// Platform Log event that describes the failure to send a custom target type | ||
// status change Pub/Sub notification. | ||
message CustomTargetTypeNotificationEvent { | ||
// Debug message for when a notification fails to send. | ||
string message = 1; | ||
|
||
// Unique identifier of the `CustomTargetType`. | ||
string custom_target_type_uid = 4; | ||
|
||
// The name of the `CustomTargetType`. | ||
string custom_target_type = 2; | ||
|
||
// Type of this notification, e.g. for a Pub/Sub failure. | ||
Type type = 3; | ||
} |
Oops, something went wrong.