Search in sources :

Example 11 with NotificationChannelName

use of com.google.monitoring.v3.NotificationChannelName in project java-monitoring by googleapis.

the class DeleteNotificationChannel method deleteNotificationChannel.

/**
 * Demonstrates deleting a notification channel by name.
 *
 * @param channelName Name of the notification channel to delete.
 */
// [START monitoring_alert_delete_channel]
static void deleteNotificationChannel(String channelName) throws IOException {
    String projectId = System.getProperty("projectId");
    try (NotificationChannelServiceClient client = NotificationChannelServiceClient.create()) {
        NotificationChannelName name = NotificationChannelName.of(projectId, channelName);
        client.deleteNotificationChannel(channelName, false);
        System.out.println("Deleted notification channel " + channelName);
    }
}
Also used : NotificationChannelServiceClient(com.google.cloud.monitoring.v3.NotificationChannelServiceClient) NotificationChannelName(com.google.monitoring.v3.NotificationChannelName)

Example 12 with NotificationChannelName

use of com.google.monitoring.v3.NotificationChannelName in project java-docs-samples by GoogleCloudPlatform.

the class DeleteNotificationChannel method deleteNotificationChannel.

/**
 * Demonstrates deleting a notification channel by name.
 *
 * @param channelName Name of the notification channel to delete.
 */
// [START monitoring_alert_delete_channel]
static void deleteNotificationChannel(String channelName) throws IOException {
    String projectId = System.getProperty("projectId");
    try (NotificationChannelServiceClient client = NotificationChannelServiceClient.create()) {
        NotificationChannelName name = NotificationChannelName.of(projectId, channelName);
        client.deleteNotificationChannel(channelName, false);
        System.out.println("Deleted notification channel " + channelName);
    }
}
Also used : NotificationChannelServiceClient(com.google.cloud.monitoring.v3.NotificationChannelServiceClient) NotificationChannelName(com.google.monitoring.v3.NotificationChannelName)

Example 13 with NotificationChannelName

use of com.google.monitoring.v3.NotificationChannelName in project java-monitoring by googleapis.

the class NotificationChannelServiceClientTest method getNotificationChannelExceptionTest.

@Test
public void getNotificationChannelExceptionTest() throws Exception {
    StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
    mockNotificationChannelService.addException(exception);
    try {
        NotificationChannelName name = NotificationChannelName.ofProjectNotificationChannelName("[PROJECT]", "[NOTIFICATION_CHANNEL]");
        client.getNotificationChannel(name);
        Assert.fail("No exception raised");
    } catch (InvalidArgumentException e) {
    // Expected exception.
    }
}
Also used : InvalidArgumentException(com.google.api.gax.rpc.InvalidArgumentException) StatusRuntimeException(io.grpc.StatusRuntimeException) NotificationChannelName(com.google.monitoring.v3.NotificationChannelName) Test(org.junit.Test)

Example 14 with NotificationChannelName

use of com.google.monitoring.v3.NotificationChannelName in project java-monitoring by googleapis.

the class NotificationChannelServiceClientTest method getNotificationChannelTest.

@Test
public void getNotificationChannelTest() throws Exception {
    NotificationChannel expectedResponse = NotificationChannel.newBuilder().setType("type3575610").setName(NotificationChannelName.ofProjectNotificationChannelName("[PROJECT]", "[NOTIFICATION_CHANNEL]").toString()).setDisplayName("displayName1714148973").setDescription("description-1724546052").putAllLabels(new HashMap<String, String>()).putAllUserLabels(new HashMap<String, String>()).setEnabled(BoolValue.newBuilder().build()).setCreationRecord(MutationRecord.newBuilder().build()).addAllMutationRecords(new ArrayList<MutationRecord>()).build();
    mockNotificationChannelService.addResponse(expectedResponse);
    NotificationChannelName name = NotificationChannelName.ofProjectNotificationChannelName("[PROJECT]", "[NOTIFICATION_CHANNEL]");
    NotificationChannel actualResponse = client.getNotificationChannel(name);
    Assert.assertEquals(expectedResponse, actualResponse);
    List<AbstractMessage> actualRequests = mockNotificationChannelService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    GetNotificationChannelRequest actualRequest = ((GetNotificationChannelRequest) actualRequests.get(0));
    Assert.assertEquals(name.toString(), actualRequest.getName());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : NotificationChannel(com.google.monitoring.v3.NotificationChannel) AbstractMessage(com.google.protobuf.AbstractMessage) HashMap(java.util.HashMap) GetNotificationChannelRequest(com.google.monitoring.v3.GetNotificationChannelRequest) ArrayList(java.util.ArrayList) NotificationChannelName(com.google.monitoring.v3.NotificationChannelName) Test(org.junit.Test)

Aggregations

NotificationChannelName (com.google.monitoring.v3.NotificationChannelName)12 Test (org.junit.Test)10 InvalidArgumentException (com.google.api.gax.rpc.InvalidArgumentException)5 AbstractMessage (com.google.protobuf.AbstractMessage)5 StatusRuntimeException (io.grpc.StatusRuntimeException)5 NotificationChannelServiceClient (com.google.cloud.monitoring.v3.NotificationChannelServiceClient)2 DeleteNotificationChannelRequest (com.google.monitoring.v3.DeleteNotificationChannelRequest)2 NotificationChannel (com.google.monitoring.v3.NotificationChannel)2 SendNotificationChannelVerificationCodeRequest (com.google.monitoring.v3.SendNotificationChannelVerificationCodeRequest)2 Empty (com.google.protobuf.Empty)2 ArrayList (java.util.ArrayList)2 HashMap (java.util.HashMap)2 GetNotificationChannelRequest (com.google.monitoring.v3.GetNotificationChannelRequest)1 GetNotificationChannelVerificationCodeRequest (com.google.monitoring.v3.GetNotificationChannelVerificationCodeRequest)1 GetNotificationChannelVerificationCodeResponse (com.google.monitoring.v3.GetNotificationChannelVerificationCodeResponse)1 VerifyNotificationChannelRequest (com.google.monitoring.v3.VerifyNotificationChannelRequest)1