create method
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.
request
- The metadata request object.
Request parameters:
name
- Required. The project
(https://cloud.google.com/monitoring/api/v3#project_name) on which to
execute the request. The format is: projects/[PROJECT_ID_OR_NUMBER] This
names the container into which the channel will be written, this does not
name the newly created channel. The resulting channel's name will have a
normalized version of this field as a prefix, but will add
/notificationChannels/[CHANNEL_ID] to identify the channel.
Value must have pattern ^projects/\[^/\]+$
.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a NotificationChannel.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<NotificationChannel> create(
NotificationChannel request,
core.String name, {
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v3/' + core.Uri.encodeFull('$name') + '/notificationChannels';
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
);
return NotificationChannel.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}