Search in sources :

Example 6 with ServiceLevelObjective

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

the class ServiceMonitoringServiceClientTest method listServiceLevelObjectivesTest.

@Test
public void listServiceLevelObjectivesTest() throws Exception {
    ServiceLevelObjective responsesElement = ServiceLevelObjective.newBuilder().build();
    ListServiceLevelObjectivesResponse expectedResponse = ListServiceLevelObjectivesResponse.newBuilder().setNextPageToken("").addAllServiceLevelObjectives(Arrays.asList(responsesElement)).build();
    mockServiceMonitoringService.addResponse(expectedResponse);
    ServiceName parent = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]");
    ListServiceLevelObjectivesPagedResponse pagedListResponse = client.listServiceLevelObjectives(parent);
    List<ServiceLevelObjective> resources = Lists.newArrayList(pagedListResponse.iterateAll());
    Assert.assertEquals(1, resources.size());
    Assert.assertEquals(expectedResponse.getServiceLevelObjectivesList().get(0), resources.get(0));
    List<AbstractMessage> actualRequests = mockServiceMonitoringService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    ListServiceLevelObjectivesRequest actualRequest = ((ListServiceLevelObjectivesRequest) actualRequests.get(0));
    Assert.assertEquals(parent.toString(), actualRequest.getParent());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : AbstractMessage(com.google.protobuf.AbstractMessage) ListServiceLevelObjectivesRequest(com.google.monitoring.v3.ListServiceLevelObjectivesRequest) ServiceLevelObjective(com.google.monitoring.v3.ServiceLevelObjective) ServiceName(com.google.monitoring.v3.ServiceName) ListServiceLevelObjectivesPagedResponse(com.google.cloud.monitoring.v3.ServiceMonitoringServiceClient.ListServiceLevelObjectivesPagedResponse) ListServiceLevelObjectivesResponse(com.google.monitoring.v3.ListServiceLevelObjectivesResponse) Test(org.junit.Test)

Example 7 with ServiceLevelObjective

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

the class ServiceMonitoringServiceClientTest method listServiceLevelObjectivesTest2.

@Test
public void listServiceLevelObjectivesTest2() throws Exception {
    ServiceLevelObjective responsesElement = ServiceLevelObjective.newBuilder().build();
    ListServiceLevelObjectivesResponse expectedResponse = ListServiceLevelObjectivesResponse.newBuilder().setNextPageToken("").addAllServiceLevelObjectives(Arrays.asList(responsesElement)).build();
    mockServiceMonitoringService.addResponse(expectedResponse);
    String parent = "parent-995424086";
    ListServiceLevelObjectivesPagedResponse pagedListResponse = client.listServiceLevelObjectives(parent);
    List<ServiceLevelObjective> resources = Lists.newArrayList(pagedListResponse.iterateAll());
    Assert.assertEquals(1, resources.size());
    Assert.assertEquals(expectedResponse.getServiceLevelObjectivesList().get(0), resources.get(0));
    List<AbstractMessage> actualRequests = mockServiceMonitoringService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    ListServiceLevelObjectivesRequest actualRequest = ((ListServiceLevelObjectivesRequest) actualRequests.get(0));
    Assert.assertEquals(parent, actualRequest.getParent());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : AbstractMessage(com.google.protobuf.AbstractMessage) ListServiceLevelObjectivesRequest(com.google.monitoring.v3.ListServiceLevelObjectivesRequest) ServiceLevelObjective(com.google.monitoring.v3.ServiceLevelObjective) ListServiceLevelObjectivesPagedResponse(com.google.cloud.monitoring.v3.ServiceMonitoringServiceClient.ListServiceLevelObjectivesPagedResponse) ListServiceLevelObjectivesResponse(com.google.monitoring.v3.ListServiceLevelObjectivesResponse) Test(org.junit.Test)

Example 8 with ServiceLevelObjective

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

the class ServiceMonitoringServiceClient method deleteServiceLevelObjective.

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
 * Delete the given `ServiceLevelObjective`.
 *
 * <p>Sample code:
 *
 * <pre>{@code
 * try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
 *     ServiceMonitoringServiceClient.create()) {
 *   String name =
 *       ServiceLevelObjectiveName.ofProjectServiceServiceLevelObjectiveName(
 *               "[PROJECT]", "[SERVICE]", "[SERVICE_LEVEL_OBJECTIVE]")
 *           .toString();
 *   serviceMonitoringServiceClient.deleteServiceLevelObjective(name);
 * }
 * }</pre>
 *
 * @param name Required. Resource name of the `ServiceLevelObjective` to delete. The format is:
 *     <p>projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]/serviceLevelObjectives/[SLO_NAME]
 * @throws com.google.api.gax.rpc.ApiException if the remote call fails
 */
public final void deleteServiceLevelObjective(String name) {
    DeleteServiceLevelObjectiveRequest request = DeleteServiceLevelObjectiveRequest.newBuilder().setName(name).build();
    deleteServiceLevelObjective(request);
}
Also used : DeleteServiceLevelObjectiveRequest(com.google.monitoring.v3.DeleteServiceLevelObjectiveRequest)

Example 9 with ServiceLevelObjective

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

the class ServiceMonitoringServiceClientTest method createServiceLevelObjectiveTest.

@Test
public void createServiceLevelObjectiveTest() throws Exception {
    ServiceLevelObjective expectedResponse = ServiceLevelObjective.newBuilder().setName(ServiceLevelObjectiveName.ofProjectServiceServiceLevelObjectiveName("[PROJECT]", "[SERVICE]", "[SERVICE_LEVEL_OBJECTIVE]").toString()).setDisplayName("displayName1714148973").setServiceLevelIndicator(ServiceLevelIndicator.newBuilder().build()).setGoal(3178259).putAllUserLabels(new HashMap<String, String>()).build();
    mockServiceMonitoringService.addResponse(expectedResponse);
    ServiceName parent = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]");
    ServiceLevelObjective serviceLevelObjective = ServiceLevelObjective.newBuilder().build();
    ServiceLevelObjective actualResponse = client.createServiceLevelObjective(parent, serviceLevelObjective);
    Assert.assertEquals(expectedResponse, actualResponse);
    List<AbstractMessage> actualRequests = mockServiceMonitoringService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    CreateServiceLevelObjectiveRequest actualRequest = ((CreateServiceLevelObjectiveRequest) actualRequests.get(0));
    Assert.assertEquals(parent.toString(), actualRequest.getParent());
    Assert.assertEquals(serviceLevelObjective, actualRequest.getServiceLevelObjective());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : AbstractMessage(com.google.protobuf.AbstractMessage) ServiceLevelObjective(com.google.monitoring.v3.ServiceLevelObjective) HashMap(java.util.HashMap) ServiceName(com.google.monitoring.v3.ServiceName) CreateServiceLevelObjectiveRequest(com.google.monitoring.v3.CreateServiceLevelObjectiveRequest) Test(org.junit.Test)

Example 10 with ServiceLevelObjective

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

the class ServiceMonitoringServiceClientTest method createServiceLevelObjectiveExceptionTest2.

@Test
public void createServiceLevelObjectiveExceptionTest2() throws Exception {
    StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
    mockServiceMonitoringService.addException(exception);
    try {
        String parent = "parent-995424086";
        ServiceLevelObjective serviceLevelObjective = ServiceLevelObjective.newBuilder().build();
        client.createServiceLevelObjective(parent, serviceLevelObjective);
        Assert.fail("No exception raised");
    } catch (InvalidArgumentException e) {
    // Expected exception.
    }
}
Also used : InvalidArgumentException(com.google.api.gax.rpc.InvalidArgumentException) ServiceLevelObjective(com.google.monitoring.v3.ServiceLevelObjective) StatusRuntimeException(io.grpc.StatusRuntimeException) Test(org.junit.Test)

Aggregations

ServiceLevelObjective (com.google.monitoring.v3.ServiceLevelObjective)10 Test (org.junit.Test)10 AbstractMessage (com.google.protobuf.AbstractMessage)7 HashMap (java.util.HashMap)5 InvalidArgumentException (com.google.api.gax.rpc.InvalidArgumentException)3 ServiceName (com.google.monitoring.v3.ServiceName)3 StatusRuntimeException (io.grpc.StatusRuntimeException)3 ListServiceLevelObjectivesPagedResponse (com.google.cloud.monitoring.v3.ServiceMonitoringServiceClient.ListServiceLevelObjectivesPagedResponse)2 CreateServiceLevelObjectiveRequest (com.google.monitoring.v3.CreateServiceLevelObjectiveRequest)2 DeleteServiceLevelObjectiveRequest (com.google.monitoring.v3.DeleteServiceLevelObjectiveRequest)2 GetServiceLevelObjectiveRequest (com.google.monitoring.v3.GetServiceLevelObjectiveRequest)2 ListServiceLevelObjectivesRequest (com.google.monitoring.v3.ListServiceLevelObjectivesRequest)2 ListServiceLevelObjectivesResponse (com.google.monitoring.v3.ListServiceLevelObjectivesResponse)2 ServiceLevelObjectiveName (com.google.monitoring.v3.ServiceLevelObjectiveName)1 UpdateServiceLevelObjectiveRequest (com.google.monitoring.v3.UpdateServiceLevelObjectiveRequest)1