/// <summary>Snippet for GetSettings</summary> public void GetSettingsRequestObject() { // Snippet: GetSettings(GetSettingsRequest, CallSettings) // Create client AlertCenterServiceClient alertCenterServiceClient = AlertCenterServiceClient.Create(); // Initialize request argument(s) GetSettingsRequest request = new GetSettingsRequest { CustomerId = "", }; // Make the request Settings response = alertCenterServiceClient.GetSettings(request); // End snippet }
/// <summary>Snippet for UpdateSettings</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void UpdateSettingsRequestObject() { // Create client AlertCenterServiceClient alertCenterServiceClient = AlertCenterServiceClient.Create(); // Initialize request argument(s) UpdateSettingsRequest request = new UpdateSettingsRequest { CustomerId = "", Settings = new Settings(), }; // Make the request Settings response = alertCenterServiceClient.UpdateSettings(request); }
/// <summary>Snippet for BatchUndeleteAlerts</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void BatchUndeleteAlertsRequestObject() { // Create client AlertCenterServiceClient alertCenterServiceClient = AlertCenterServiceClient.Create(); // Initialize request argument(s) BatchUndeleteAlertsRequest request = new BatchUndeleteAlertsRequest { CustomerId = "", AlertId = { "", }, }; // Make the request BatchUndeleteAlertsResponse response = alertCenterServiceClient.BatchUndeleteAlerts(request); }
/// <summary>Snippet for UndeleteAlert</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void UndeleteAlertRequestObject() { // Create client AlertCenterServiceClient alertCenterServiceClient = AlertCenterServiceClient.Create(); // Initialize request argument(s) UndeleteAlertRequest request = new UndeleteAlertRequest { CustomerId = "", AlertId = "", }; // Make the request Alert response = alertCenterServiceClient.UndeleteAlert(request); }
/// <summary>Snippet for GetAlertMetadata</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void GetAlertMetadataRequestObject() { // Create client AlertCenterServiceClient alertCenterServiceClient = AlertCenterServiceClient.Create(); // Initialize request argument(s) GetAlertMetadataRequest request = new GetAlertMetadataRequest { CustomerId = "", AlertId = "", }; // Make the request AlertMetadata response = alertCenterServiceClient.GetAlertMetadata(request); }
/// <summary>Snippet for BatchDeleteAlertsAsync</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public async Task BatchDeleteAlertsRequestObjectAsync() { // Create client AlertCenterServiceClient alertCenterServiceClient = await AlertCenterServiceClient.CreateAsync(); // Initialize request argument(s) BatchDeleteAlertsRequest request = new BatchDeleteAlertsRequest { CustomerId = "", AlertId = { "", }, }; // Make the request BatchDeleteAlertsResponse response = await alertCenterServiceClient.BatchDeleteAlertsAsync(request); }
/// <summary>Snippet for ListAlertFeedback</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void ListAlertFeedbackRequestObject() { // Create client AlertCenterServiceClient alertCenterServiceClient = AlertCenterServiceClient.Create(); // Initialize request argument(s) ListAlertFeedbackRequest request = new ListAlertFeedbackRequest { CustomerId = "", AlertId = "", Filter = "", }; // Make the request ListAlertFeedbackResponse response = alertCenterServiceClient.ListAlertFeedback(request); }
/// <summary>Snippet for GetAlertMetadataAsync</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public async Task GetAlertMetadataRequestObjectAsync() { // Create client AlertCenterServiceClient alertCenterServiceClient = await AlertCenterServiceClient.CreateAsync(); // Initialize request argument(s) GetAlertMetadataRequest request = new GetAlertMetadataRequest { CustomerId = "", AlertId = "", }; // Make the request AlertMetadata response = await alertCenterServiceClient.GetAlertMetadataAsync(request); }
/// <summary>Snippet for UpdateSettingsAsync</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public async Task UpdateSettingsRequestObjectAsync() { // Create client AlertCenterServiceClient alertCenterServiceClient = await AlertCenterServiceClient.CreateAsync(); // Initialize request argument(s) UpdateSettingsRequest request = new UpdateSettingsRequest { CustomerId = "", Settings = new Settings(), }; // Make the request Settings response = await alertCenterServiceClient.UpdateSettingsAsync(request); }
/// <summary>Snippet for CreateAlertFeedback</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void CreateAlertFeedbackRequestObject() { // Create client AlertCenterServiceClient alertCenterServiceClient = AlertCenterServiceClient.Create(); // Initialize request argument(s) CreateAlertFeedbackRequest request = new CreateAlertFeedbackRequest { CustomerId = "", AlertId = "", Feedback = new AlertFeedback(), }; // Make the request AlertFeedback response = alertCenterServiceClient.CreateAlertFeedback(request); }
/// <summary>Snippet for UndeleteAlertAsync</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public async Task UndeleteAlertRequestObjectAsync() { // Create client AlertCenterServiceClient alertCenterServiceClient = await AlertCenterServiceClient.CreateAsync(); // Initialize request argument(s) UndeleteAlertRequest request = new UndeleteAlertRequest { CustomerId = "", AlertId = "", }; // Make the request Alert response = await alertCenterServiceClient.UndeleteAlertAsync(request); }
/// <summary>Snippet for ListAlertsAsync</summary> public async Task ListAlertsRequestObjectAsync() { // Snippet: ListAlertsAsync(ListAlertsRequest, CallSettings) // Create client AlertCenterServiceClient alertCenterServiceClient = await AlertCenterServiceClient.CreateAsync(); // Initialize request argument(s) ListAlertsRequest request = new ListAlertsRequest { CustomerId = "", Filter = "", OrderBy = "", }; // Make the request PagedAsyncEnumerable <ListAlertsResponse, Alert> response = alertCenterServiceClient.ListAlertsAsync(request); // Iterate over all response items, lazily performing RPCs as required await response.ForEachAsync((Alert item) => { // Do something with each item Console.WriteLine(item); }); // Or iterate over pages (of server-defined size), performing one RPC per page await response.AsRawResponses().ForEachAsync((ListAlertsResponse page) => { // Do something with each page of items Console.WriteLine("A page of results:"); foreach (Alert item in page) { // Do something with each item Console.WriteLine(item); } }); // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required int pageSize = 10; Page <Alert> singlePage = await response.ReadPageAsync(pageSize); // Do something with the page of items Console.WriteLine($"A page of {pageSize} results (unless it's the final page):"); foreach (Alert item in singlePage) { // Do something with each item Console.WriteLine(item); } // Store the pageToken, for when the next page is required. string nextPageToken = singlePage.NextPageToken; // End snippet }
/// <summary>Snippet for ListAlertFeedbackAsync</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public async Task ListAlertFeedbackRequestObjectAsync() { // Create client AlertCenterServiceClient alertCenterServiceClient = await AlertCenterServiceClient.CreateAsync(); // Initialize request argument(s) ListAlertFeedbackRequest request = new ListAlertFeedbackRequest { CustomerId = "", AlertId = "", Filter = "", }; // Make the request ListAlertFeedbackResponse response = await alertCenterServiceClient.ListAlertFeedbackAsync(request); }
/// <summary>Snippet for BatchDeleteAlerts</summary> public void BatchDeleteAlertsRequestObject() { // Snippet: BatchDeleteAlerts(BatchDeleteAlertsRequest, CallSettings) // Create client AlertCenterServiceClient alertCenterServiceClient = AlertCenterServiceClient.Create(); // Initialize request argument(s) BatchDeleteAlertsRequest request = new BatchDeleteAlertsRequest { CustomerId = "", AlertId = { "", }, }; // Make the request BatchDeleteAlertsResponse response = alertCenterServiceClient.BatchDeleteAlerts(request); // End snippet }
/// <summary>Snippet for GetSettingsAsync</summary> public async Task GetSettingsRequestObjectAsync() { // Snippet: GetSettingsAsync(GetSettingsRequest, CallSettings) // Additional: GetSettingsAsync(GetSettingsRequest, CancellationToken) // Create client AlertCenterServiceClient alertCenterServiceClient = await AlertCenterServiceClient.CreateAsync(); // Initialize request argument(s) GetSettingsRequest request = new GetSettingsRequest { CustomerId = "", }; // Make the request Settings response = await alertCenterServiceClient.GetSettingsAsync(request); // End snippet }
/// <summary>Snippet for DeleteAlert</summary> public void DeleteAlertRequestObject() { // Snippet: DeleteAlert(DeleteAlertRequest, CallSettings) // Create client AlertCenterServiceClient alertCenterServiceClient = AlertCenterServiceClient.Create(); // Initialize request argument(s) DeleteAlertRequest request = new DeleteAlertRequest { CustomerId = "", AlertId = "", }; // Make the request alertCenterServiceClient.DeleteAlert(request); // End snippet }
/// <summary>Snippet for ListAlerts</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void ListAlertsRequestObject() { // Create client AlertCenterServiceClient alertCenterServiceClient = AlertCenterServiceClient.Create(); // Initialize request argument(s) ListAlertsRequest request = new ListAlertsRequest { CustomerId = "", Filter = "", OrderBy = "", }; // Make the request PagedEnumerable <ListAlertsResponse, Alert> response = alertCenterServiceClient.ListAlerts(request); // Iterate over all response items, lazily performing RPCs as required foreach (Alert item in response) { // Do something with each item Console.WriteLine(item); } // Or iterate over pages (of server-defined size), performing one RPC per page foreach (ListAlertsResponse page in response.AsRawResponses()) { // Do something with each page of items Console.WriteLine("A page of results:"); foreach (Alert item in page) { // Do something with each item Console.WriteLine(item); } } // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required int pageSize = 10; Page <Alert> singlePage = response.ReadPage(pageSize); // Do something with the page of items Console.WriteLine($"A page of {pageSize} results (unless it's the final page):"); foreach (Alert item in singlePage) { // Do something with each item Console.WriteLine(item); } // Store the pageToken, for when the next page is required. string nextPageToken = singlePage.NextPageToken; }
/// <summary>Snippet for DeleteAlertAsync</summary> public async Task DeleteAlertRequestObjectAsync() { // Snippet: DeleteAlertAsync(DeleteAlertRequest, CallSettings) // Additional: DeleteAlertAsync(DeleteAlertRequest, CancellationToken) // Create client AlertCenterServiceClient alertCenterServiceClient = await AlertCenterServiceClient.CreateAsync(); // Initialize request argument(s) DeleteAlertRequest request = new DeleteAlertRequest { CustomerId = "", AlertId = "", }; // Make the request await alertCenterServiceClient.DeleteAlertAsync(request); // End snippet }
/// <summary>Snippet for BatchUndeleteAlertsAsync</summary> public async Task BatchUndeleteAlertsRequestObjectAsync() { // Snippet: BatchUndeleteAlertsAsync(BatchUndeleteAlertsRequest, CallSettings) // Additional: BatchUndeleteAlertsAsync(BatchUndeleteAlertsRequest, CancellationToken) // Create client AlertCenterServiceClient alertCenterServiceClient = await AlertCenterServiceClient.CreateAsync(); // Initialize request argument(s) BatchUndeleteAlertsRequest request = new BatchUndeleteAlertsRequest { CustomerId = "", AlertId = { "", }, }; // Make the request BatchUndeleteAlertsResponse response = await alertCenterServiceClient.BatchUndeleteAlertsAsync(request); // End snippet }
/// <summary>Snippet for ListAlertFeedbackAsync</summary> public async Task ListAlertFeedbackRequestObjectAsync() { // Snippet: ListAlertFeedbackAsync(ListAlertFeedbackRequest, CallSettings) // Additional: ListAlertFeedbackAsync(ListAlertFeedbackRequest, CancellationToken) // Create client AlertCenterServiceClient alertCenterServiceClient = await AlertCenterServiceClient.CreateAsync(); // Initialize request argument(s) ListAlertFeedbackRequest request = new ListAlertFeedbackRequest { CustomerId = "", AlertId = "", Filter = "", }; // Make the request ListAlertFeedbackResponse response = await alertCenterServiceClient.ListAlertFeedbackAsync(request); // End snippet }