1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
//! MockClient helpers for Cloud Monitoring API API.
//!
//! Auto-generated extension methods for ergonomic test setup.
//! **Do not edit manually** — modify the manifest and re-run codegen.
#[cfg(any(test, feature = "test-support"))]
use crate::mock_client::{ExpectationBuilder, MockClient};
/// Extension trait for MockClient with Cloud Monitoring API helpers.
#[cfg(any(test, feature = "test-support"))]
pub trait MonitoringMockHelpers {
/// Helper to expect `list_metric_descriptors`: Lists metric descriptors that match a filter.
fn expect_list_metric_descriptors(
&mut self,
name: &str,
filter: &str,
page_size: &str,
page_token: &str,
) -> ExpectationBuilder<'_>;
/// Helper to expect `get_metric_descriptor`: Gets a single metric descriptor.
fn expect_get_metric_descriptor(&mut self, name: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `list_monitored_resource_descriptors`: Lists monitored resource descriptors
/// that match a filter.
fn expect_list_monitored_resource_descriptors(
&mut self,
name: &str,
filter: &str,
page_size: &str,
page_token: &str,
) -> ExpectationBuilder<'_>;
/// Helper to expect `get_monitored_resource_descriptor`: Gets a single monitored resource
/// descriptor.
fn expect_get_monitored_resource_descriptor(&mut self, name: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `list_alert_policies`: Lists the existing alerting policies for the
/// workspace.
fn expect_list_alert_policies(
&mut self,
name: &str,
filter: &str,
page_size: &str,
page_token: &str,
) -> ExpectationBuilder<'_>;
/// Helper to expect `create_alert_policy`: Creates a new alerting policy.Design your
/// application to single-thread API calls that modify the state of alerting policies in a
/// single project. This includes calls to CreateAlertPolicy, DeleteAlertPolicy and
/// UpdateAlertPolicy.
fn expect_create_alert_policy(&mut self, name: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `delete_alert_policy`: Deletes an alerting policy.Design your application
/// to single-thread API calls that modify the state of alerting policies in a single project.
/// This includes calls to CreateAlertPolicy, DeleteAlertPolicy and UpdateAlertPolicy.
fn expect_delete_alert_policy(&mut self, name: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `list_notification_channels`: Lists the notification channels that have
/// been created for the project. To list the types of notification channels that are supported,
/// use the ListNotificationChannelDescriptors method.
fn expect_list_notification_channels(
&mut self,
name: &str,
filter: &str,
page_size: &str,
page_token: &str,
) -> ExpectationBuilder<'_>;
/// Helper to expect `create_notification_channel`: Creates a new notification channel,
/// representing a single notification endpoint such as an email address, SMS number, or
/// PagerDuty service.Design your application to single-thread API calls that modify the state
/// of notification channels in a single project. This includes calls to
/// CreateNotificationChannel, DeleteNotificationChannel and UpdateNotificationChannel.
fn expect_create_notification_channel(&mut self, name: &str) -> ExpectationBuilder<'_>;
/// Helper to expect `delete_notification_channel`: Deletes a notification channel.Design your
/// application to single-thread API calls that modify the state of notification channels in a
/// single project. This includes calls to CreateNotificationChannel, DeleteNotificationChannel
/// and UpdateNotificationChannel.
fn expect_delete_notification_channel(&mut self, name: &str) -> ExpectationBuilder<'_>;
}
#[cfg(any(test, feature = "test-support"))]
impl MonitoringMockHelpers for MockClient {
/// Helper to expect `list_metric_descriptors`: Lists metric descriptors that match a filter.
fn expect_list_metric_descriptors(
&mut self,
name: &str,
filter: &str,
page_size: &str,
page_token: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let mut path = format!("/v3/{name}/metricDescriptors");
let mut __qp: Vec<String> = Vec::new();
if !filter.is_empty() {
__qp.push(format!("filter={}", filter));
}
if !page_size.is_empty() {
__qp.push(format!("pageSize={}", page_size));
}
if !page_token.is_empty() {
__qp.push(format!("pageToken={}", page_token));
}
if !__qp.is_empty() {
path = format!("{}?{}", path, __qp.join("&"));
}
self.expect_get(&path)
}
/// Helper to expect `get_metric_descriptor`: Gets a single metric descriptor.
fn expect_get_metric_descriptor(
&mut self,
name: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/v3/{name}");
self.expect_get(&path)
}
/// Helper to expect `list_monitored_resource_descriptors`: Lists monitored resource descriptors
/// that match a filter.
fn expect_list_monitored_resource_descriptors(
&mut self,
name: &str,
filter: &str,
page_size: &str,
page_token: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let mut path = format!("/v3/{name}/monitoredResourceDescriptors");
let mut __qp: Vec<String> = Vec::new();
if !filter.is_empty() {
__qp.push(format!("filter={}", filter));
}
if !page_size.is_empty() {
__qp.push(format!("pageSize={}", page_size));
}
if !page_token.is_empty() {
__qp.push(format!("pageToken={}", page_token));
}
if !__qp.is_empty() {
path = format!("{}?{}", path, __qp.join("&"));
}
self.expect_get(&path)
}
/// Helper to expect `get_monitored_resource_descriptor`: Gets a single monitored resource
/// descriptor.
fn expect_get_monitored_resource_descriptor(
&mut self,
name: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/v3/{name}");
self.expect_get(&path)
}
/// Helper to expect `list_alert_policies`: Lists the existing alerting policies for the
/// workspace.
fn expect_list_alert_policies(
&mut self,
name: &str,
filter: &str,
page_size: &str,
page_token: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let mut path = format!("/v3/{name}/alertPolicies");
let mut __qp: Vec<String> = Vec::new();
if !filter.is_empty() {
__qp.push(format!("filter={}", filter));
}
if !page_size.is_empty() {
__qp.push(format!("pageSize={}", page_size));
}
if !page_token.is_empty() {
__qp.push(format!("pageToken={}", page_token));
}
if !__qp.is_empty() {
path = format!("{}?{}", path, __qp.join("&"));
}
self.expect_get(&path)
}
/// Helper to expect `create_alert_policy`: Creates a new alerting policy.Design your
/// application to single-thread API calls that modify the state of alerting policies in a
/// single project. This includes calls to CreateAlertPolicy, DeleteAlertPolicy and
/// UpdateAlertPolicy.
fn expect_create_alert_policy(
&mut self,
name: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/v3/{name}/alertPolicies");
self.expect_post(&path)
}
/// Helper to expect `delete_alert_policy`: Deletes an alerting policy.Design your application
/// to single-thread API calls that modify the state of alerting policies in a single project.
/// This includes calls to CreateAlertPolicy, DeleteAlertPolicy and UpdateAlertPolicy.
fn expect_delete_alert_policy(
&mut self,
name: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/v3/{name}");
self.expect_delete(&path)
}
/// Helper to expect `list_notification_channels`: Lists the notification channels that have
/// been created for the project. To list the types of notification channels that are supported,
/// use the ListNotificationChannelDescriptors method.
fn expect_list_notification_channels(
&mut self,
name: &str,
filter: &str,
page_size: &str,
page_token: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let mut path = format!("/v3/{name}/notificationChannels");
let mut __qp: Vec<String> = Vec::new();
if !filter.is_empty() {
__qp.push(format!("filter={}", filter));
}
if !page_size.is_empty() {
__qp.push(format!("pageSize={}", page_size));
}
if !page_token.is_empty() {
__qp.push(format!("pageToken={}", page_token));
}
if !__qp.is_empty() {
path = format!("{}?{}", path, __qp.join("&"));
}
self.expect_get(&path)
}
/// Helper to expect `create_notification_channel`: Creates a new notification channel,
/// representing a single notification endpoint such as an email address, SMS number, or
/// PagerDuty service.Design your application to single-thread API calls that modify the state
/// of notification channels in a single project. This includes calls to
/// CreateNotificationChannel, DeleteNotificationChannel and UpdateNotificationChannel.
fn expect_create_notification_channel(
&mut self,
name: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/v3/{name}/notificationChannels");
self.expect_post(&path)
}
/// Helper to expect `delete_notification_channel`: Deletes a notification channel.Design your
/// application to single-thread API calls that modify the state of notification channels in a
/// single project. This includes calls to CreateNotificationChannel, DeleteNotificationChannel
/// and UpdateNotificationChannel.
fn expect_delete_notification_channel(
&mut self,
name: &str,
) -> crate::mock_client::ExpectationBuilder<'_> {
let path = format!("/v3/{name}");
self.expect_delete(&path)
}
}