Search in sources :

Example 1 with PatchTracesRequest

use of com.google.devtools.cloudtrace.v1.PatchTracesRequest in project google-cloud-java by GoogleCloudPlatform.

the class TraceServiceClientTest method patchTracesTest.

@Test
@SuppressWarnings("all")
public void patchTracesTest() {
    Empty expectedResponse = Empty.newBuilder().build();
    mockTraceService.addResponse(expectedResponse);
    String projectId = "projectId-1969970175";
    Traces traces = Traces.newBuilder().build();
    client.patchTraces(projectId, traces);
    List<GeneratedMessageV3> actualRequests = mockTraceService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    PatchTracesRequest actualRequest = (PatchTracesRequest) actualRequests.get(0);
    Assert.assertEquals(projectId, actualRequest.getProjectId());
    Assert.assertEquals(traces, actualRequest.getTraces());
}
Also used : Empty(com.google.protobuf.Empty) Traces(com.google.devtools.cloudtrace.v1.Traces) GeneratedMessageV3(com.google.protobuf.GeneratedMessageV3) PatchTracesRequest(com.google.devtools.cloudtrace.v1.PatchTracesRequest) Test(org.junit.Test)

Example 2 with PatchTracesRequest

use of com.google.devtools.cloudtrace.v1.PatchTracesRequest in project google-cloud-java by GoogleCloudPlatform.

the class TraceServiceClient method patchTraces.

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
   * Sends new traces to Stackdriver Trace or updates existing traces. If the ID of a trace that you
   * send matches that of an existing trace, any fields in the existing trace and its spans are
   * overwritten by the provided values, and any new fields provided are merged with the existing
   * trace data. If the ID does not match, a new trace is created.
   *
   * <p>Sample code:
   *
   * <pre><code>
   * try (TraceServiceClient traceServiceClient = TraceServiceClient.create()) {
   *   String projectId = "";
   *   Traces traces = Traces.newBuilder().build();
   *   traceServiceClient.patchTraces(projectId, traces);
   * }
   * </code></pre>
   *
   * @param projectId ID of the Cloud project where the trace data is stored.
   * @param traces The body of the message.
   * @throws com.google.api.gax.grpc.ApiException if the remote call fails
   */
public final void patchTraces(String projectId, Traces traces) {
    PatchTracesRequest request = PatchTracesRequest.newBuilder().setProjectId(projectId).setTraces(traces).build();
    patchTraces(request);
}
Also used : PatchTracesRequest(com.google.devtools.cloudtrace.v1.PatchTracesRequest)

Aggregations

PatchTracesRequest (com.google.devtools.cloudtrace.v1.PatchTracesRequest)2 Traces (com.google.devtools.cloudtrace.v1.Traces)1 Empty (com.google.protobuf.Empty)1 GeneratedMessageV3 (com.google.protobuf.GeneratedMessageV3)1 Test (org.junit.Test)1