Skip to content

Commit 5c440c2

Browse files
yoshi-automationsduskis
authored andcommitted
---
yaml --- r: 20459 b: refs/heads/autosynth-tasks c: 04b9da4 h: refs/heads/master i: 20457: 5b85b80 20455: 695b766
1 parent f4c0e69 commit 5c440c2

5 files changed

Lines changed: 24 additions & 14 deletions

File tree

  • branches/autosynth-tasks
    • google-api-grpc
      • proto-google-cloud-trace-v1/src/main/proto/google/devtools/cloudtrace/v1
      • proto-google-cloud-trace-v2/src/main/proto/google/devtools/cloudtrace/v2
    • google-cloud-clients/google-cloud-trace

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ refs/heads/autosynth-redis: 9e1fe503973c7b4a9ba26afb1fcddc2a57ba795a
140140
refs/heads/autosynth-scheduler: 93995812e12a2fc009f4fd2e31f169b3d3cbbac8
141141
refs/heads/autosynth-spanner: a249d9564d8c27ab4439abc6562d7f3b9b7f655d
142142
refs/heads/autosynth-speech: 75d6c62a9d07d3a3642980502a25d07fbde0f232
143-
refs/heads/autosynth-tasks: 41a04eea905c4c0b55e8daa0acb94d258835abf6
143+
refs/heads/autosynth-tasks: 04b9da4bb170c7dc3658e46e83b4976d84f1c2a4
144144
refs/heads/autosynth-texttospeech: 2dcc5dc22be0f456caa1b6a8a4bcdace2641239c
145145
refs/heads/autosynth-trace: db35fc1080cc51034e9c431c141cbceb53fb19c1
146146
refs/heads/autosynth-websecurityscanner: 55f58d7ce832aed82c4bb5e496af91b6c79fbdc3

branches/autosynth-tasks/google-api-grpc/proto-google-cloud-trace-v1/src/main/proto/google/devtools/cloudtrace/v1/trace.proto

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ option java_outer_classname = "TraceProto";
2727
option java_package = "com.google.devtools.cloudtrace.v1";
2828
option php_namespace = "Google\\Cloud\\Trace\\V1";
2929

30-
3130
// This file describes an API for collecting and viewing traces and spans
3231
// within a trace. A Trace is a collection of spans corresponding to a single
3332
// operation or set of operations for an application. A span is an individual
@@ -36,12 +35,16 @@ option php_namespace = "Google\\Cloud\\Trace\\V1";
3635
service TraceService {
3736
// Returns of a list of traces that match the specified filter conditions.
3837
rpc ListTraces(ListTracesRequest) returns (ListTracesResponse) {
39-
option (google.api.http) = { get: "/v1/projects/{project_id}/traces" };
38+
option (google.api.http) = {
39+
get: "/v1/projects/{project_id}/traces"
40+
};
4041
}
4142

4243
// Gets a single trace by its ID.
4344
rpc GetTrace(GetTraceRequest) returns (Trace) {
44-
option (google.api.http) = { get: "/v1/projects/{project_id}/traces/{trace_id}" };
45+
option (google.api.http) = {
46+
get: "/v1/projects/{project_id}/traces/{trace_id}"
47+
};
4548
}
4649

4750
// Sends new traces to Stackdriver Trace or updates existing traces. If the ID
@@ -50,7 +53,10 @@ service TraceService {
5053
// and any new fields provided are merged with the existing trace data. If the
5154
// ID does not match, a new trace is created.
5255
rpc PatchTraces(PatchTracesRequest) returns (google.protobuf.Empty) {
53-
option (google.api.http) = { patch: "/v1/projects/{project_id}/traces" body: "traces" };
56+
option (google.api.http) = {
57+
patch: "/v1/projects/{project_id}/traces"
58+
body: "traces"
59+
};
5460
}
5561
}
5662

branches/autosynth-tasks/google-api-grpc/proto-google-cloud-trace-v2/src/main/proto/google/devtools/cloudtrace/v2/trace.proto

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ option java_outer_classname = "TraceProto";
2828
option java_package = "com.google.devtools.cloudtrace.v2";
2929
option php_namespace = "Google\\Cloud\\Trace\\V2";
3030

31-
3231
// A span represents a single operation within a trace. Spans can be
3332
// nested to form a trace tree. Often, a trace contains a root span
3433
// that describes the end-to-end latency, and one or more subspans for

branches/autosynth-tasks/google-api-grpc/proto-google-cloud-trace-v2/src/main/proto/google/devtools/cloudtrace/v2/tracing.proto

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ option java_outer_classname = "TracingProto";
2828
option java_package = "com.google.devtools.cloudtrace.v2";
2929
option php_namespace = "Google\\Cloud\\Trace\\V2";
3030

31-
3231
// This file describes an API for collecting and viewing traces and spans
3332
// within a trace. A Trace is a collection of spans corresponding to a single
3433
// operation or set of operations for an application. A span is an individual
@@ -38,12 +37,18 @@ service TraceService {
3837
// Sends new spans to new or existing traces. You cannot update
3938
// existing spans.
4039
rpc BatchWriteSpans(BatchWriteSpansRequest) returns (google.protobuf.Empty) {
41-
option (google.api.http) = { post: "/v2/{name=projects/*}/traces:batchWrite" body: "*" };
40+
option (google.api.http) = {
41+
post: "/v2/{name=projects/*}/traces:batchWrite"
42+
body: "*"
43+
};
4244
}
4345

4446
// Creates a new span.
4547
rpc CreateSpan(Span) returns (Span) {
46-
option (google.api.http) = { post: "/v2/{name=projects/*/traces/*}/spans" body: "*" };
48+
option (google.api.http) = {
49+
post: "/v2/{name=projects/*/traces/*}/spans"
50+
body: "*"
51+
};
4752
}
4853
}
4954

branches/autosynth-tasks/google-cloud-clients/google-cloud-trace/synth.metadata

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"updateTime": "2019-01-17T08:52:44.387918Z",
2+
"updateTime": "2019-02-26T08:54:00.680348Z",
33
"sources": [
44
{
55
"generator": {
66
"name": "artman",
7-
"version": "0.16.6",
8-
"dockerImage": "googleapis/artman@sha256:12722f2ca3fbc3b53cc6aa5f0e569d7d221b46bd876a2136497089dec5e3634e"
7+
"version": "0.16.14",
8+
"dockerImage": "googleapis/artman@sha256:f3d61ae45abaeefb6be5f228cda22732c2f1b00fb687c79c4bd4f2c42bb1e1a7"
99
}
1010
},
1111
{
1212
"git": {
1313
"name": "googleapis",
1414
"remote": "https://github.com/googleapis/googleapis.git",
15-
"sha": "0ac60e21a1aa86c07c1836865b35308ba8178b05",
16-
"internalRef": "229626798"
15+
"sha": "29f098cb03a9983cc9cb15993de5da64419046f2",
16+
"internalRef": "235621085"
1717
}
1818
}
1919
],

0 commit comments

Comments
 (0)