xref: /aosp_15_r20/external/googleapis/google/monitoring/v3/alert_service.proto (revision d5c09012810ac0c9f33fe448fb6da8260d444cc9)
1// Copyright 2023 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
15syntax = "proto3";
16
17package google.monitoring.v3;
18
19import "google/api/annotations.proto";
20import "google/api/client.proto";
21import "google/api/field_behavior.proto";
22import "google/api/resource.proto";
23import "google/monitoring/v3/alert.proto";
24import "google/protobuf/empty.proto";
25import "google/protobuf/field_mask.proto";
26
27option csharp_namespace = "Google.Cloud.Monitoring.V3";
28option go_package = "cloud.google.com/go/monitoring/apiv3/v2/monitoringpb;monitoringpb";
29option java_multiple_files = true;
30option java_outer_classname = "AlertServiceProto";
31option java_package = "com.google.monitoring.v3";
32option php_namespace = "Google\\Cloud\\Monitoring\\V3";
33option ruby_package = "Google::Cloud::Monitoring::V3";
34
35// The AlertPolicyService API is used to manage (list, create, delete,
36// edit) alert policies in Cloud Monitoring. An alerting policy is
37// a description of the conditions under which some aspect of your
38// system is considered to be "unhealthy" and the ways to notify
39// people or services about this state. In addition to using this API, alert
40// policies can also be managed through
41// [Cloud Monitoring](https://cloud.google.com/monitoring/docs/),
42// which can be reached by clicking the "Monitoring" tab in
43// [Cloud console](https://console.cloud.google.com/).
44service AlertPolicyService {
45  option (google.api.default_host) = "monitoring.googleapis.com";
46  option (google.api.oauth_scopes) =
47      "https://www.googleapis.com/auth/cloud-platform,"
48      "https://www.googleapis.com/auth/monitoring,"
49      "https://www.googleapis.com/auth/monitoring.read";
50
51  // Lists the existing alerting policies for the workspace.
52  rpc ListAlertPolicies(ListAlertPoliciesRequest)
53      returns (ListAlertPoliciesResponse) {
54    option (google.api.http) = {
55      get: "/v3/{name=projects/*}/alertPolicies"
56    };
57    option (google.api.method_signature) = "name";
58  }
59
60  // Gets a single alerting policy.
61  rpc GetAlertPolicy(GetAlertPolicyRequest) returns (AlertPolicy) {
62    option (google.api.http) = {
63      get: "/v3/{name=projects/*/alertPolicies/*}"
64    };
65    option (google.api.method_signature) = "name";
66  }
67
68  // Creates a new alerting policy.
69  //
70  // Design your application to single-thread API calls that modify the state of
71  // alerting policies in a single project. This includes calls to
72  // CreateAlertPolicy, DeleteAlertPolicy and UpdateAlertPolicy.
73  rpc CreateAlertPolicy(CreateAlertPolicyRequest) returns (AlertPolicy) {
74    option (google.api.http) = {
75      post: "/v3/{name=projects/*}/alertPolicies"
76      body: "alert_policy"
77    };
78    option (google.api.method_signature) = "name,alert_policy";
79  }
80
81  // Deletes an alerting policy.
82  //
83  // Design your application to single-thread API calls that modify the state of
84  // alerting policies in a single project. This includes calls to
85  // CreateAlertPolicy, DeleteAlertPolicy and UpdateAlertPolicy.
86  rpc DeleteAlertPolicy(DeleteAlertPolicyRequest)
87      returns (google.protobuf.Empty) {
88    option (google.api.http) = {
89      delete: "/v3/{name=projects/*/alertPolicies/*}"
90    };
91    option (google.api.method_signature) = "name";
92  }
93
94  // Updates an alerting policy. You can either replace the entire policy with
95  // a new one or replace only certain fields in the current alerting policy by
96  // specifying the fields to be updated via `updateMask`. Returns the
97  // updated alerting policy.
98  //
99  // Design your application to single-thread API calls that modify the state of
100  // alerting policies in a single project. This includes calls to
101  // CreateAlertPolicy, DeleteAlertPolicy and UpdateAlertPolicy.
102  rpc UpdateAlertPolicy(UpdateAlertPolicyRequest) returns (AlertPolicy) {
103    option (google.api.http) = {
104      patch: "/v3/{alert_policy.name=projects/*/alertPolicies/*}"
105      body: "alert_policy"
106    };
107    option (google.api.method_signature) = "update_mask,alert_policy";
108  }
109}
110
111// The protocol for the `CreateAlertPolicy` request.
112message CreateAlertPolicyRequest {
113  // Required. The
114  // [project](https://cloud.google.com/monitoring/api/v3#project_name) in which
115  // to create the alerting policy. The format is:
116  //
117  //     projects/[PROJECT_ID_OR_NUMBER]
118  //
119  // Note that this field names the parent container in which the alerting
120  // policy will be written, not the name of the created policy. |name| must be
121  // a host project of a Metrics Scope, otherwise INVALID_ARGUMENT error will
122  // return. The alerting policy that is returned will have a name that contains
123  // a normalized representation of this name as a prefix but adds a suffix of
124  // the form `/alertPolicies/[ALERT_POLICY_ID]`, identifying the policy in the
125  // container.
126  string name = 3 [
127    (google.api.field_behavior) = REQUIRED,
128    (google.api.resource_reference) = {
129      child_type: "monitoring.googleapis.com/AlertPolicy"
130    }
131  ];
132
133  // Required. The requested alerting policy. You should omit the `name` field
134  // in this policy. The name will be returned in the new policy, including a
135  // new `[ALERT_POLICY_ID]` value.
136  AlertPolicy alert_policy = 2 [(google.api.field_behavior) = REQUIRED];
137}
138
139// The protocol for the `GetAlertPolicy` request.
140message GetAlertPolicyRequest {
141  // Required. The alerting policy to retrieve. The format is:
142  //
143  //     projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID]
144  string name = 3 [
145    (google.api.field_behavior) = REQUIRED,
146    (google.api.resource_reference) = {
147      type: "monitoring.googleapis.com/AlertPolicy"
148    }
149  ];
150}
151
152// The protocol for the `ListAlertPolicies` request.
153message ListAlertPoliciesRequest {
154  // Required. The
155  // [project](https://cloud.google.com/monitoring/api/v3#project_name) whose
156  // alert policies are to be listed. The format is:
157  //
158  //     projects/[PROJECT_ID_OR_NUMBER]
159  //
160  // Note that this field names the parent container in which the alerting
161  // policies to be listed are stored. To retrieve a single alerting policy
162  // by name, use the
163  // [GetAlertPolicy][google.monitoring.v3.AlertPolicyService.GetAlertPolicy]
164  // operation, instead.
165  string name = 4 [
166    (google.api.field_behavior) = REQUIRED,
167    (google.api.resource_reference) = {
168      child_type: "monitoring.googleapis.com/AlertPolicy"
169    }
170  ];
171
172  // If provided, this field specifies the criteria that must be met by
173  // alert policies to be included in the response.
174  //
175  // For more details, see [sorting and
176  // filtering](https://cloud.google.com/monitoring/api/v3/sorting-and-filtering).
177  string filter = 5;
178
179  // A comma-separated list of fields by which to sort the result. Supports
180  // the same set of field references as the `filter` field. Entries can be
181  // prefixed with a minus sign to sort by the field in descending order.
182  //
183  // For more details, see [sorting and
184  // filtering](https://cloud.google.com/monitoring/api/v3/sorting-and-filtering).
185  string order_by = 6;
186
187  // The maximum number of results to return in a single response.
188  int32 page_size = 2;
189
190  // If this field is not empty then it must contain the `nextPageToken` value
191  // returned by a previous call to this method.  Using this field causes the
192  // method to return more results from the previous method call.
193  string page_token = 3;
194}
195
196// The protocol for the `ListAlertPolicies` response.
197message ListAlertPoliciesResponse {
198  // The returned alert policies.
199  repeated AlertPolicy alert_policies = 3;
200
201  // If there might be more results than were returned, then this field is set
202  // to a non-empty value. To see the additional results,
203  // use that value as `page_token` in the next call to this method.
204  string next_page_token = 2;
205
206  // The total number of alert policies in all pages. This number is only an
207  // estimate, and may change in subsequent pages. https://aip.dev/158
208  int32 total_size = 4;
209}
210
211// The protocol for the `UpdateAlertPolicy` request.
212message UpdateAlertPolicyRequest {
213  // Optional. A list of alerting policy field names. If this field is not
214  // empty, each listed field in the existing alerting policy is set to the
215  // value of the corresponding field in the supplied policy (`alert_policy`),
216  // or to the field's default value if the field is not in the supplied
217  // alerting policy.  Fields not listed retain their previous value.
218  //
219  // Examples of valid field masks include `display_name`, `documentation`,
220  // `documentation.content`, `documentation.mime_type`, `user_labels`,
221  // `user_label.nameofkey`, `enabled`, `conditions`, `combiner`, etc.
222  //
223  // If this field is empty, then the supplied alerting policy replaces the
224  // existing policy. It is the same as deleting the existing policy and
225  // adding the supplied policy, except for the following:
226  //
227  // +   The new policy will have the same `[ALERT_POLICY_ID]` as the former
228  //     policy. This gives you continuity with the former policy in your
229  //     notifications and incidents.
230  // +   Conditions in the new policy will keep their former `[CONDITION_ID]` if
231  //     the supplied condition includes the `name` field with that
232  //     `[CONDITION_ID]`. If the supplied condition omits the `name` field,
233  //     then a new `[CONDITION_ID]` is created.
234  google.protobuf.FieldMask update_mask = 2;
235
236  // Required. The updated alerting policy or the updated values for the
237  // fields listed in `update_mask`.
238  // If `update_mask` is not empty, any fields in this policy that are
239  // not in `update_mask` are ignored.
240  AlertPolicy alert_policy = 3 [(google.api.field_behavior) = REQUIRED];
241}
242
243// The protocol for the `DeleteAlertPolicy` request.
244message DeleteAlertPolicyRequest {
245  // Required. The alerting policy to delete. The format is:
246  //
247  //     projects/[PROJECT_ID_OR_NUMBER]/alertPolicies/[ALERT_POLICY_ID]
248  //
249  // For more information, see [AlertPolicy][google.monitoring.v3.AlertPolicy].
250  string name = 3 [
251    (google.api.field_behavior) = REQUIRED,
252    (google.api.resource_reference) = {
253      type: "monitoring.googleapis.com/AlertPolicy"
254    }
255  ];
256}
257