use of com.google.monitoring.v3.ServiceName in project java-monitoring by googleapis.
the class ServiceMonitoringServiceClientTest method createServiceLevelObjectiveExceptionTest.
@Test
public void createServiceLevelObjectiveExceptionTest() throws Exception {
StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
mockServiceMonitoringService.addException(exception);
try {
ServiceName parent = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]");
ServiceLevelObjective serviceLevelObjective = ServiceLevelObjective.newBuilder().build();
client.createServiceLevelObjective(parent, serviceLevelObjective);
Assert.fail("No exception raised");
} catch (InvalidArgumentException e) {
// Expected exception.
}
}
use of com.google.monitoring.v3.ServiceName in project java-monitoring by googleapis.
the class ServiceMonitoringServiceClientTest method getServiceExceptionTest.
@Test
public void getServiceExceptionTest() throws Exception {
StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
mockServiceMonitoringService.addException(exception);
try {
ServiceName name = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]");
client.getService(name);
Assert.fail("No exception raised");
} catch (InvalidArgumentException e) {
// Expected exception.
}
}
use of com.google.monitoring.v3.ServiceName 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()));
}
use of com.google.monitoring.v3.ServiceName in project java-monitoring by googleapis.
the class ServiceMonitoringServiceClient method deleteService.
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Soft delete this `Service`.
*
* <p>Sample code:
*
* <pre>{@code
* try (ServiceMonitoringServiceClient serviceMonitoringServiceClient =
* ServiceMonitoringServiceClient.create()) {
* ServiceName name = ServiceName.ofProjectServiceName("[PROJECT]", "[SERVICE]");
* serviceMonitoringServiceClient.deleteService(name);
* }
* }</pre>
*
* @param name Required. Resource name of the `Service` to delete. The format is:
* <p>projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final void deleteService(ServiceName name) {
DeleteServiceRequest request = DeleteServiceRequest.newBuilder().setName(name == null ? null : name.toString()).build();
deleteService(request);
}
use of com.google.monitoring.v3.ServiceName 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()));
}
Aggregations