@@ -314,8 +314,10 @@ def list_notification_channels(
314
314
]:
315
315
r"""Return a callable for the list notification channels method over gRPC.
316
316
317
- Lists the notification channels that have been
318
- created for the project.
317
+ Lists the notification channels that have been created for the
318
+ project. To list the types of notification channels that are
319
+ supported, use the ``ListNotificationChannelDescriptors``
320
+ method.
319
321
320
322
Returns:
321
323
Callable[[~.ListNotificationChannelsRequest],
@@ -383,6 +385,12 @@ def create_notification_channel(
383
385
single notification endpoint such as an email address,
384
386
SMS number, or PagerDuty service.
385
387
388
+ Design your application to single-thread API calls that
389
+ modify the state of notification channels in a single
390
+ project. This includes calls to
391
+ CreateNotificationChannel, DeleteNotificationChannel and
392
+ UpdateNotificationChannel.
393
+
386
394
Returns:
387
395
Callable[[~.CreateNotificationChannelRequest],
388
396
Awaitable[~.NotificationChannel]]:
@@ -413,6 +421,12 @@ def update_notification_channel(
413
421
Updates a notification channel. Fields not specified
414
422
in the field mask remain unchanged.
415
423
424
+ Design your application to single-thread API calls that
425
+ modify the state of notification channels in a single
426
+ project. This includes calls to
427
+ CreateNotificationChannel, DeleteNotificationChannel and
428
+ UpdateNotificationChannel.
429
+
416
430
Returns:
417
431
Callable[[~.UpdateNotificationChannelRequest],
418
432
Awaitable[~.NotificationChannel]]:
@@ -442,6 +456,12 @@ def delete_notification_channel(
442
456
443
457
Deletes a notification channel.
444
458
459
+ Design your application to single-thread API calls that
460
+ modify the state of notification channels in a single
461
+ project. This includes calls to
462
+ CreateNotificationChannel, DeleteNotificationChannel and
463
+ UpdateNotificationChannel.
464
+
445
465
Returns:
446
466
Callable[[~.DeleteNotificationChannelRequest],
447
467
Awaitable[~.Empty]]:
0 commit comments