mirror of
https://github.com/restic/restic.git
synced 2025-12-23 01:46:17 +00:00
Upadte vendored dependencies
This commit is contained in:
667
vendor/google.golang.org/api/cloudtrace/v2/cloudtrace-api.json
generated
vendored
667
vendor/google.golang.org/api/cloudtrace/v2/cloudtrace-api.json
generated
vendored
@@ -1,267 +1,7 @@
|
||||
{
|
||||
"basePath": "",
|
||||
"id": "cloudtrace:v2",
|
||||
"documentationLink": "https://cloud.google.com/trace",
|
||||
"revision": "20170927",
|
||||
"discoveryVersion": "v1",
|
||||
"version_module": true,
|
||||
"schemas": {
|
||||
"Empty": {
|
||||
"description": "A generic empty message that you can re-use to avoid defining duplicated\nempty messages in your APIs. A typical example is to use it as the request\nor the response type of an API method. For instance:\n\n service Foo {\n rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);\n }\n\nThe JSON representation for `Empty` is empty JSON object `{}`.",
|
||||
"type": "object",
|
||||
"properties": {},
|
||||
"id": "Empty"
|
||||
},
|
||||
"Span": {
|
||||
"description": "A span represents a single operation within a trace. Spans can be\nnested to form a trace tree. Often, a trace contains a root span\nthat describes the end-to-end latency, and one or more subspans for\nits sub-operations. A trace can also contain multiple root spans,\nor none at all. Spans do not need to be contiguous—there may be\ngaps or overlaps between spans in a trace.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"parentSpanId": {
|
||||
"description": "The [SPAN_ID] of this span's parent span. If this is a root span,\nthen this field must be empty.",
|
||||
"type": "string"
|
||||
},
|
||||
"endTime": {
|
||||
"format": "google-datetime",
|
||||
"description": "The end time of the span. On the client side, this is the time kept by\nthe local machine where the span execution ends. On the server side, this\nis the time when the server application handler stops running.",
|
||||
"type": "string"
|
||||
},
|
||||
"startTime": {
|
||||
"format": "google-datetime",
|
||||
"description": "The start time of the span. On the client side, this is the time kept by\nthe local machine where the span execution starts. On the server side, this\nis the time when the server's application handler starts running.",
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"description": "A description of the span's operation (up to 128 bytes).\nStackdriver Trace displays the description in the\n{% dynamic print site_values.console_name %}.\nFor example, the display name can be a qualified method name or a file name\nand a line number where the operation is called. A best practice is to use\nthe same display name within an application and at the same call point.\nThis makes it easier to correlate spans in different traces.",
|
||||
"$ref": "TruncatableString"
|
||||
},
|
||||
"timeEvents": {
|
||||
"$ref": "TimeEvents",
|
||||
"description": "The included time events. There can be up to 32 annotations and 128 network\nevents per span."
|
||||
},
|
||||
"links": {
|
||||
"$ref": "Links",
|
||||
"description": "A maximum of 128 links are allowed per Span."
|
||||
},
|
||||
"attributes": {
|
||||
"description": "A set of attributes on the span. There is a limit of 32 attributes per\nspan.",
|
||||
"$ref": "Attributes"
|
||||
},
|
||||
"spanId": {
|
||||
"description": "The [SPAN_ID] portion of the span's resource name.",
|
||||
"type": "string"
|
||||
},
|
||||
"childSpanCount": {
|
||||
"format": "uint32",
|
||||
"description": "An optional number of child spans that were generated while this span\nwas active. If set, allows implementation to detect missing child spans.",
|
||||
"type": "integer"
|
||||
},
|
||||
"sameProcessAsParentSpan": {
|
||||
"description": "A highly recommended but not required flag that identifies when a trace\ncrosses a process boundary. True when the parent_span belongs to the\nsame process as the current span.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"status": {
|
||||
"$ref": "Status",
|
||||
"description": "An optional final status for this span."
|
||||
},
|
||||
"name": {
|
||||
"description": "The resource name of the span in the following format:\n\n projects/[PROJECT_ID]/traces/[TRACE_ID]/spans/SPAN_ID is a unique identifier for a trace within a project.\n[SPAN_ID] is a unique identifier for a span within a trace,\nassigned when the span is created.",
|
||||
"type": "string"
|
||||
},
|
||||
"stackTrace": {
|
||||
"$ref": "StackTrace",
|
||||
"description": "Stack trace captured at the start of the span."
|
||||
}
|
||||
},
|
||||
"id": "Span"
|
||||
},
|
||||
"AttributeValue": {
|
||||
"description": "The allowed types for [VALUE] in a `[KEY]:[VALUE]` attribute.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"boolValue": {
|
||||
"description": "A Boolean value represented by `true` or `false`.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"stringValue": {
|
||||
"$ref": "TruncatableString",
|
||||
"description": "A string up to 256 bytes long."
|
||||
},
|
||||
"intValue": {
|
||||
"format": "int64",
|
||||
"description": "A 64-bit signed integer.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"id": "AttributeValue"
|
||||
},
|
||||
"Attributes": {
|
||||
"description": "A set of attributes, each in the format `[KEY]:[VALUE]`.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"droppedAttributesCount": {
|
||||
"format": "int32",
|
||||
"description": "The number of attributes that were discarded. Attributes can be discarded\nbecause their keys are too long or because there are too many attributes.\nIf this value is 0 then all attributes are valid.",
|
||||
"type": "integer"
|
||||
},
|
||||
"attributeMap": {
|
||||
"additionalProperties": {
|
||||
"$ref": "AttributeValue"
|
||||
},
|
||||
"description": "The set of attributes. Each attribute's key can be up to 128 bytes\nlong. The value can be a string up to 256 bytes, an integer, or the\nBoolean values `true` and `false`. For example:\n\n \"/instance_id\": \"my-instance\"\n \"/http/user_agent\": \"\"\n \"/http/request_bytes\": 300\n \"abc.com/myattribute\": true",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"id": "Attributes"
|
||||
},
|
||||
"Links": {
|
||||
"description": "A collection of links, which are references from this span to a span\nin the same or different trace.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"droppedLinksCount": {
|
||||
"format": "int32",
|
||||
"description": "The number of dropped links after the maximum size was enforced. If\nthis value is 0, then no links were dropped.",
|
||||
"type": "integer"
|
||||
},
|
||||
"link": {
|
||||
"description": "A collection of links.",
|
||||
"items": {
|
||||
"$ref": "Link"
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"id": "Links"
|
||||
},
|
||||
"StackTrace": {
|
||||
"description": "A call stack appearing in a trace.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"stackTraceHashId": {
|
||||
"format": "uint64",
|
||||
"description": "The hash ID is used to conserve network bandwidth for duplicate\nstack traces within a single trace.\n\nOften multiple spans will have identical stack traces.\nThe first occurrence of a stack trace should contain both the\n`stackFrame` content and a value in `stackTraceHashId`.\n\nSubsequent spans within the same request can refer\nto that stack trace by only setting `stackTraceHashId`.",
|
||||
"type": "string"
|
||||
},
|
||||
"stackFrames": {
|
||||
"description": "Stack frames in this stack trace. A maximum of 128 frames are allowed.",
|
||||
"$ref": "StackFrames"
|
||||
}
|
||||
},
|
||||
"id": "StackTrace"
|
||||
},
|
||||
"TruncatableString": {
|
||||
"description": "Represents a string that might be shortened to a specified length.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"truncatedByteCount": {
|
||||
"format": "int32",
|
||||
"description": "The number of bytes removed from the original string. If this\nvalue is 0, then the string was not shortened.",
|
||||
"type": "integer"
|
||||
},
|
||||
"value": {
|
||||
"description": "The shortened string. For example, if the original string was 500\nbytes long and the limit of the string was 128 bytes, then this\nvalue contains the first 128 bytes of the 500-byte string. Note that\ntruncation always happens on the character boundary, to ensure that\ntruncated string is still valid UTF8. In case of multi-byte characters,\nsize of truncated string can be less than truncation limit.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"id": "TruncatableString"
|
||||
},
|
||||
"TimeEvent": {
|
||||
"description": "A time-stamped annotation or network event in the Span.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"annotation": {
|
||||
"$ref": "Annotation",
|
||||
"description": "Text annotation with a set of attributes."
|
||||
},
|
||||
"time": {
|
||||
"format": "google-datetime",
|
||||
"description": "The timestamp indicating the time the event occurred.",
|
||||
"type": "string"
|
||||
},
|
||||
"networkEvent": {
|
||||
"$ref": "NetworkEvent",
|
||||
"description": "An event describing an RPC message sent/received on the network."
|
||||
}
|
||||
},
|
||||
"id": "TimeEvent"
|
||||
},
|
||||
"NetworkEvent": {
|
||||
"description": "An event describing an RPC message sent or received on the network.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"time": {
|
||||
"format": "google-datetime",
|
||||
"description": "For sent messages, this is the time at which the first bit was sent.\nFor received messages, this is the time at which the last bit was\nreceived.",
|
||||
"type": "string"
|
||||
},
|
||||
"uncompressedMessageSize": {
|
||||
"format": "uint64",
|
||||
"description": "The number of uncompressed bytes sent or received.",
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"enumDescriptions": [
|
||||
"Unknown event type.",
|
||||
"Indicates a sent RPC message.",
|
||||
"Indicates a received RPC message."
|
||||
],
|
||||
"enum": [
|
||||
"TYPE_UNSPECIFIED",
|
||||
"SENT",
|
||||
"RECV"
|
||||
],
|
||||
"description": "Type of NetworkEvent. Indicates whether the RPC message was sent or\nreceived.",
|
||||
"type": "string"
|
||||
},
|
||||
"messageId": {
|
||||
"format": "uint64",
|
||||
"description": "An identifier for the message, which must be unique in this span.",
|
||||
"type": "string"
|
||||
},
|
||||
"compressedMessageSize": {
|
||||
"format": "uint64",
|
||||
"description": "The number of compressed bytes sent or received.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"id": "NetworkEvent"
|
||||
},
|
||||
"StackFrame": {
|
||||
"description": "Represents a single stack frame in a stack trace.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"lineNumber": {
|
||||
"format": "int64",
|
||||
"description": "The line number in `file_name` where the function call appears.",
|
||||
"type": "string"
|
||||
},
|
||||
"loadModule": {
|
||||
"$ref": "Module",
|
||||
"description": "The binary module from where the code was loaded."
|
||||
},
|
||||
"columnNumber": {
|
||||
"format": "int64",
|
||||
"description": "The column number where the function call appears, if available.\nThis is important in JavaScript because of its anonymous functions.",
|
||||
"type": "string"
|
||||
},
|
||||
"fileName": {
|
||||
"description": "The name of the source file where the function call appears (up to 256\nbytes).",
|
||||
"$ref": "TruncatableString"
|
||||
},
|
||||
"sourceVersion": {
|
||||
"$ref": "TruncatableString",
|
||||
"description": "The version of the deployed source code (up to 128 bytes)."
|
||||
},
|
||||
"originalFunctionName": {
|
||||
"$ref": "TruncatableString",
|
||||
"description": "An un-mangled function name, if `function_name` is\n[mangled](http://www.avabodh.com/cxxin/namemangling.html). The name can\nbe fully-qualified (up to 1024 bytes)."
|
||||
},
|
||||
"functionName": {
|
||||
"$ref": "TruncatableString",
|
||||
"description": "The fully-qualified name that uniquely identifies the function or\nmethod that is active in this frame (up to 1024 bytes)."
|
||||
}
|
||||
},
|
||||
"id": "StackFrame"
|
||||
},
|
||||
"Link": {
|
||||
"description": "A pointer from the current span to another span in the same trace or in a\ndifferent trace. For example, this can be used in batching operations,\nwhere a single batch handler processes multiple requests from different\ntraces or when the handler receives a request from a different project.",
|
||||
"type": "object",
|
||||
@@ -304,8 +44,8 @@
|
||||
"$ref": "TruncatableString"
|
||||
},
|
||||
"attributes": {
|
||||
"description": "A set of attributes on the annotation. There is a limit of 4 attributes\nper Annotation.",
|
||||
"$ref": "Attributes"
|
||||
"$ref": "Attributes",
|
||||
"description": "A set of attributes on the annotation. There is a limit of 4 attributes\nper Annotation."
|
||||
}
|
||||
},
|
||||
"id": "Annotation"
|
||||
@@ -314,35 +54,35 @@
|
||||
"description": "A collection of stack frames, which can be truncated.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"droppedFramesCount": {
|
||||
"format": "int32",
|
||||
"description": "The number of stack frames that were dropped because there\nwere too many stack frames.\nIf this value is 0, then no stack frames were dropped.",
|
||||
"type": "integer"
|
||||
},
|
||||
"frame": {
|
||||
"description": "Stack frames in this call stack.",
|
||||
"items": {
|
||||
"$ref": "StackFrame"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"droppedFramesCount": {
|
||||
"format": "int32",
|
||||
"description": "The number of stack frames that were dropped because there\nwere too many stack frames.\nIf this value is 0, then no stack frames were dropped.",
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"id": "StackFrames"
|
||||
},
|
||||
"TimeEvents": {
|
||||
"description": "A collection of `TimeEvent`s. A `TimeEvent` is a time-stamped annotation\non the span, consisting of either user-supplied key:value pairs, or\ndetails of an RPC message sent/received on the network.",
|
||||
"description": "A collection of `TimeEvent`s. A `TimeEvent` is a time-stamped annotation\non the span, consisting of either user-supplied key:value pairs, or\ndetails of a message sent/received between Spans.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"droppedNetworkEventsCount": {
|
||||
"format": "int32",
|
||||
"description": "The number of dropped network events in all the included time events.\nIf the value is 0, then no network events were dropped.",
|
||||
"type": "integer"
|
||||
},
|
||||
"droppedAnnotationsCount": {
|
||||
"format": "int32",
|
||||
"description": "The number of dropped annotations in all the included time events.\nIf the value is 0, then no annotations were dropped.",
|
||||
"type": "integer"
|
||||
},
|
||||
"droppedMessageEventsCount": {
|
||||
"format": "int32",
|
||||
"description": "The number of dropped message events in all the included time events.\nIf the value is 0, then no message events were dropped.",
|
||||
"type": "integer"
|
||||
},
|
||||
"timeEvent": {
|
||||
"description": "A collection of `TimeEvent`s.",
|
||||
"items": {
|
||||
@@ -358,8 +98,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"module": {
|
||||
"$ref": "TruncatableString",
|
||||
"description": "For example: main binary, kernel modules, and dynamic libraries\nsuch as libc.so, sharedlib.so (up to 256 bytes)."
|
||||
"description": "For example: main binary, kernel modules, and dynamic libraries\nsuch as libc.so, sharedlib.so (up to 256 bytes).",
|
||||
"$ref": "TruncatableString"
|
||||
},
|
||||
"buildId": {
|
||||
"description": "A unique identifier for the module, usually a hash of its\ncontents (up to 128 bytes).",
|
||||
@@ -372,17 +112,6 @@
|
||||
"description": "The `Status` type defines a logical error model that is suitable for different\nprogramming environments, including REST APIs and RPC APIs. It is used by\n[gRPC](https://github.com/grpc). The error model is designed to be:\n\n- Simple to use and understand for most users\n- Flexible enough to meet unexpected needs\n\n# Overview\n\nThe `Status` message contains three pieces of data: error code, error message,\nand error details. The error code should be an enum value of\ngoogle.rpc.Code, but it may accept additional error codes if needed. The\nerror message should be a developer-facing English message that helps\ndevelopers *understand* and *resolve* the error. If a localized user-facing\nerror message is needed, put the localized message in the error details or\nlocalize it in the client. The optional error details may contain arbitrary\ninformation about the error. There is a predefined set of error detail types\nin the package `google.rpc` that can be used for common error conditions.\n\n# Language mapping\n\nThe `Status` message is the logical representation of the error model, but it\nis not necessarily the actual wire format. When the `Status` message is\nexposed in different client libraries and different wire protocols, it can be\nmapped differently. For example, it will likely be mapped to some exceptions\nin Java, but more likely mapped to some error codes in C.\n\n# Other uses\n\nThe error model and the `Status` message can be used in a variety of\nenvironments, either with or without APIs, to provide a\nconsistent developer experience across different environments.\n\nExample uses of this error model include:\n\n- Partial errors. If a service needs to return partial errors to the client,\n it may embed the `Status` in the normal response to indicate the partial\n errors.\n\n- Workflow errors. A typical workflow has multiple steps. Each step may\n have a `Status` message for error reporting.\n\n- Batch operations. If a client uses batch request and batch response, the\n `Status` message should be used directly inside batch response, one for\n each error sub-response.\n\n- Asynchronous operations. If an API call embeds asynchronous operation\n results in its response, the status of those operations should be\n represented directly using the `Status` message.\n\n- Logging. If some API errors are stored in logs, the message `Status` could\n be used directly after any stripping needed for security/privacy reasons.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"details": {
|
||||
"description": "A list of messages that carry the error details. There is a common set of\nmessage types for APIs to use.",
|
||||
"items": {
|
||||
"additionalProperties": {
|
||||
"description": "Properties of the object. Contains field @type with type URL.",
|
||||
"type": "any"
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"code": {
|
||||
"format": "int32",
|
||||
"description": "The status code, which should be an enum value of google.rpc.Code.",
|
||||
@@ -391,6 +120,17 @@
|
||||
"message": {
|
||||
"description": "A developer-facing error message, which should be in English. Any\nuser-facing error message should be localized and sent in the\ngoogle.rpc.Status.details field, or localized by the client.",
|
||||
"type": "string"
|
||||
},
|
||||
"details": {
|
||||
"description": "A list of messages that carry the error details. There is a common set of\nmessage types for APIs to use.",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"description": "Properties of the object. Contains field @type with type URL.",
|
||||
"type": "any"
|
||||
}
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"id": "Status"
|
||||
@@ -408,13 +148,264 @@
|
||||
}
|
||||
},
|
||||
"id": "BatchWriteSpansRequest"
|
||||
},
|
||||
"Span": {
|
||||
"description": "A span represents a single operation within a trace. Spans can be\nnested to form a trace tree. Often, a trace contains a root span\nthat describes the end-to-end latency, and one or more subspans for\nits sub-operations. A trace can also contain multiple root spans,\nor none at all. Spans do not need to be contiguous—there may be\ngaps or overlaps between spans in a trace.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"stackTrace": {
|
||||
"description": "Stack trace captured at the start of the span.",
|
||||
"$ref": "StackTrace"
|
||||
},
|
||||
"parentSpanId": {
|
||||
"description": "The [SPAN_ID] of this span's parent span. If this is a root span,\nthen this field must be empty.",
|
||||
"type": "string"
|
||||
},
|
||||
"endTime": {
|
||||
"format": "google-datetime",
|
||||
"description": "The end time of the span. On the client side, this is the time kept by\nthe local machine where the span execution ends. On the server side, this\nis the time when the server application handler stops running.",
|
||||
"type": "string"
|
||||
},
|
||||
"startTime": {
|
||||
"format": "google-datetime",
|
||||
"description": "The start time of the span. On the client side, this is the time kept by\nthe local machine where the span execution starts. On the server side, this\nis the time when the server's application handler starts running.",
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"$ref": "TruncatableString",
|
||||
"description": "A description of the span's operation (up to 128 bytes).\nStackdriver Trace displays the description in the\n{% dynamic print site_values.console_name %}.\nFor example, the display name can be a qualified method name or a file name\nand a line number where the operation is called. A best practice is to use\nthe same display name within an application and at the same call point.\nThis makes it easier to correlate spans in different traces."
|
||||
},
|
||||
"timeEvents": {
|
||||
"$ref": "TimeEvents",
|
||||
"description": "The included time events. There can be up to 32 annotations and 128 message\nevents per span."
|
||||
},
|
||||
"links": {
|
||||
"$ref": "Links",
|
||||
"description": "A maximum of 128 links are allowed per Span."
|
||||
},
|
||||
"attributes": {
|
||||
"$ref": "Attributes",
|
||||
"description": "A set of attributes on the span. There is a limit of 32 attributes per\nspan."
|
||||
},
|
||||
"spanId": {
|
||||
"description": "The [SPAN_ID] portion of the span's resource name.",
|
||||
"type": "string"
|
||||
},
|
||||
"childSpanCount": {
|
||||
"format": "int32",
|
||||
"description": "An optional number of child spans that were generated while this span\nwas active. If set, allows implementation to detect missing child spans.",
|
||||
"type": "integer"
|
||||
},
|
||||
"sameProcessAsParentSpan": {
|
||||
"description": "A highly recommended but not required flag that identifies when a trace\ncrosses a process boundary. True when the parent_span belongs to the\nsame process as the current span.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"status": {
|
||||
"$ref": "Status",
|
||||
"description": "An optional final status for this span."
|
||||
},
|
||||
"name": {
|
||||
"description": "The resource name of the span in the following format:\n\n projects/[PROJECT_ID]/traces/[TRACE_ID]/spans/SPAN_ID is a unique identifier for a trace within a project.\n[SPAN_ID] is a unique identifier for a span within a trace,\nassigned when the span is created.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"id": "Span"
|
||||
},
|
||||
"Empty": {
|
||||
"description": "A generic empty message that you can re-use to avoid defining duplicated\nempty messages in your APIs. A typical example is to use it as the request\nor the response type of an API method. For instance:\n\n service Foo {\n rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);\n }\n\nThe JSON representation for `Empty` is empty JSON object `{}`.",
|
||||
"type": "object",
|
||||
"properties": {},
|
||||
"id": "Empty"
|
||||
},
|
||||
"AttributeValue": {
|
||||
"description": "The allowed types for [VALUE] in a `[KEY]:[VALUE]` attribute.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"boolValue": {
|
||||
"description": "A Boolean value represented by `true` or `false`.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"stringValue": {
|
||||
"$ref": "TruncatableString",
|
||||
"description": "A string up to 256 bytes long."
|
||||
},
|
||||
"intValue": {
|
||||
"format": "int64",
|
||||
"description": "A 64-bit signed integer.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"id": "AttributeValue"
|
||||
},
|
||||
"Attributes": {
|
||||
"description": "A set of attributes, each in the format `[KEY]:[VALUE]`.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"droppedAttributesCount": {
|
||||
"format": "int32",
|
||||
"description": "The number of attributes that were discarded. Attributes can be discarded\nbecause their keys are too long or because there are too many attributes.\nIf this value is 0 then all attributes are valid.",
|
||||
"type": "integer"
|
||||
},
|
||||
"attributeMap": {
|
||||
"description": "The set of attributes. Each attribute's key can be up to 128 bytes\nlong. The value can be a string up to 256 bytes, an integer, or the\nBoolean values `true` and `false`. For example:\n\n \"/instance_id\": \"my-instance\"\n \"/http/user_agent\": \"\"\n \"/http/request_bytes\": 300\n \"abc.com/myattribute\": true",
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"$ref": "AttributeValue"
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "Attributes"
|
||||
},
|
||||
"Links": {
|
||||
"description": "A collection of links, which are references from this span to a span\nin the same or different trace.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"droppedLinksCount": {
|
||||
"format": "int32",
|
||||
"description": "The number of dropped links after the maximum size was enforced. If\nthis value is 0, then no links were dropped.",
|
||||
"type": "integer"
|
||||
},
|
||||
"link": {
|
||||
"description": "A collection of links.",
|
||||
"items": {
|
||||
"$ref": "Link"
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
},
|
||||
"id": "Links"
|
||||
},
|
||||
"TruncatableString": {
|
||||
"description": "Represents a string that might be shortened to a specified length.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"truncatedByteCount": {
|
||||
"format": "int32",
|
||||
"description": "The number of bytes removed from the original string. If this\nvalue is 0, then the string was not shortened.",
|
||||
"type": "integer"
|
||||
},
|
||||
"value": {
|
||||
"description": "The shortened string. For example, if the original string was 500\nbytes long and the limit of the string was 128 bytes, then this\nvalue contains the first 128 bytes of the 500-byte string. Note that\ntruncation always happens on the character boundary, to ensure that\ntruncated string is still valid UTF8. In case of multi-byte characters,\nsize of truncated string can be less than truncation limit.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"id": "TruncatableString"
|
||||
},
|
||||
"StackTrace": {
|
||||
"description": "A call stack appearing in a trace.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"stackTraceHashId": {
|
||||
"format": "int64",
|
||||
"description": "The hash ID is used to conserve network bandwidth for duplicate\nstack traces within a single trace.\n\nOften multiple spans will have identical stack traces.\nThe first occurrence of a stack trace should contain both the\n`stackFrame` content and a value in `stackTraceHashId`.\n\nSubsequent spans within the same request can refer\nto that stack trace by only setting `stackTraceHashId`.",
|
||||
"type": "string"
|
||||
},
|
||||
"stackFrames": {
|
||||
"$ref": "StackFrames",
|
||||
"description": "Stack frames in this stack trace. A maximum of 128 frames are allowed."
|
||||
}
|
||||
},
|
||||
"id": "StackTrace"
|
||||
},
|
||||
"TimeEvent": {
|
||||
"description": "A time-stamped annotation or message event in the Span.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"time": {
|
||||
"format": "google-datetime",
|
||||
"description": "The timestamp indicating the time the event occurred.",
|
||||
"type": "string"
|
||||
},
|
||||
"annotation": {
|
||||
"$ref": "Annotation",
|
||||
"description": "Text annotation with a set of attributes."
|
||||
},
|
||||
"messageEvent": {
|
||||
"description": "An event describing a message sent/received between Spans.",
|
||||
"$ref": "MessageEvent"
|
||||
}
|
||||
},
|
||||
"id": "TimeEvent"
|
||||
},
|
||||
"MessageEvent": {
|
||||
"description": "An event describing a message sent/received between Spans.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"description": "Type of MessageEvent. Indicates whether the message was sent or\nreceived.",
|
||||
"type": "string",
|
||||
"enumDescriptions": [
|
||||
"Unknown event type.",
|
||||
"Indicates a sent message.",
|
||||
"Indicates a received message."
|
||||
],
|
||||
"enum": [
|
||||
"TYPE_UNSPECIFIED",
|
||||
"SENT",
|
||||
"RECEIVED"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"format": "int64",
|
||||
"description": "An identifier for the MessageEvent's message that can be used to match\nSENT and RECEIVED MessageEvents. It is recommended to be unique within\na Span.",
|
||||
"type": "string"
|
||||
},
|
||||
"compressedSizeBytes": {
|
||||
"format": "int64",
|
||||
"description": "The number of compressed bytes sent or received. If missing assumed to\nbe the same size as uncompressed.",
|
||||
"type": "string"
|
||||
},
|
||||
"uncompressedSizeBytes": {
|
||||
"format": "int64",
|
||||
"description": "The number of uncompressed bytes sent or received.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"id": "MessageEvent"
|
||||
},
|
||||
"StackFrame": {
|
||||
"description": "Represents a single stack frame in a stack trace.",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"originalFunctionName": {
|
||||
"$ref": "TruncatableString",
|
||||
"description": "An un-mangled function name, if `function_name` is\n[mangled](http://www.avabodh.com/cxxin/namemangling.html). The name can\nbe fully-qualified (up to 1024 bytes)."
|
||||
},
|
||||
"functionName": {
|
||||
"description": "The fully-qualified name that uniquely identifies the function or\nmethod that is active in this frame (up to 1024 bytes).",
|
||||
"$ref": "TruncatableString"
|
||||
},
|
||||
"lineNumber": {
|
||||
"format": "int64",
|
||||
"description": "The line number in `file_name` where the function call appears.",
|
||||
"type": "string"
|
||||
},
|
||||
"loadModule": {
|
||||
"description": "The binary module from where the code was loaded.",
|
||||
"$ref": "Module"
|
||||
},
|
||||
"columnNumber": {
|
||||
"format": "int64",
|
||||
"description": "The column number where the function call appears, if available.\nThis is important in JavaScript because of its anonymous functions.",
|
||||
"type": "string"
|
||||
},
|
||||
"fileName": {
|
||||
"$ref": "TruncatableString",
|
||||
"description": "The name of the source file where the function call appears (up to 256\nbytes)."
|
||||
},
|
||||
"sourceVersion": {
|
||||
"description": "The version of the deployed source code (up to 128 bytes).",
|
||||
"$ref": "TruncatableString"
|
||||
}
|
||||
},
|
||||
"id": "StackFrame"
|
||||
}
|
||||
},
|
||||
"protocol": "rest",
|
||||
"icons": {
|
||||
"x32": "http://www.google.com/images/icons/product/search-32.gif",
|
||||
"x16": "http://www.google.com/images/icons/product/search-16.gif"
|
||||
},
|
||||
"protocol": "rest",
|
||||
"canonicalName": "Cloud Trace",
|
||||
"auth": {
|
||||
"oauth2": {
|
||||
@@ -441,10 +432,6 @@
|
||||
"traces": {
|
||||
"methods": {
|
||||
"batchWrite": {
|
||||
"description": "Sends new spans to Stackdriver Trace or updates existing traces. If the\nname of a trace that you send matches that of an existing trace, new spans\nare added to the existing trace. Attempt to update existing spans results\nundefined behavior. If the name does not match, a new trace is created\nwith given set of spans.",
|
||||
"request": {
|
||||
"$ref": "BatchWriteSpansRequest"
|
||||
},
|
||||
"response": {
|
||||
"$ref": "Empty"
|
||||
},
|
||||
@@ -467,7 +454,11 @@
|
||||
],
|
||||
"flatPath": "v2/projects/{projectsId}/traces:batchWrite",
|
||||
"id": "cloudtrace.projects.traces.batchWrite",
|
||||
"path": "v2/{+name}/traces:batchWrite"
|
||||
"path": "v2/{+name}/traces:batchWrite",
|
||||
"description": "Sends new spans to Stackdriver Trace or updates existing traces. If the\nname of a trace that you send matches that of an existing trace, new spans\nare added to the existing trace. Attempt to update existing spans results\nundefined behavior. If the name does not match, a new trace is created\nwith given set of spans.",
|
||||
"request": {
|
||||
"$ref": "BatchWriteSpansRequest"
|
||||
}
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
@@ -477,10 +468,10 @@
|
||||
"flatPath": "v2/projects/{projectsId}/traces/{tracesId}/spans/{spansId}",
|
||||
"id": "cloudtrace.projects.traces.spans.create",
|
||||
"path": "v2/{+name}",
|
||||
"description": "Creates a new Span.",
|
||||
"request": {
|
||||
"$ref": "Span"
|
||||
},
|
||||
"description": "Creates a new Span.",
|
||||
"response": {
|
||||
"$ref": "Span"
|
||||
},
|
||||
@@ -488,6 +479,10 @@
|
||||
"name"
|
||||
],
|
||||
"httpMethod": "PUT",
|
||||
"scopes": [
|
||||
"https://www.googleapis.com/auth/cloud-platform",
|
||||
"https://www.googleapis.com/auth/trace.append"
|
||||
],
|
||||
"parameters": {
|
||||
"name": {
|
||||
"description": "The resource name of the span in the following format:\n\n projects/[PROJECT_ID]/traces/[TRACE_ID]/spans/SPAN_ID is a unique identifier for a trace within a project.\n[SPAN_ID] is a unique identifier for a span within a trace,\nassigned when the span is created.",
|
||||
@@ -496,11 +491,7 @@
|
||||
"pattern": "^projects/[^/]+/traces/[^/]+/spans/[^/]+$",
|
||||
"location": "path"
|
||||
}
|
||||
},
|
||||
"scopes": [
|
||||
"https://www.googleapis.com/auth/cloud-platform",
|
||||
"https://www.googleapis.com/auth/trace.append"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -510,37 +501,31 @@
|
||||
}
|
||||
},
|
||||
"parameters": {
|
||||
"pp": {
|
||||
"oauth_token": {
|
||||
"location": "query",
|
||||
"description": "Pretty-print response.",
|
||||
"description": "OAuth 2.0 token for the current user.",
|
||||
"type": "string"
|
||||
},
|
||||
"bearer_token": {
|
||||
"description": "OAuth bearer token.",
|
||||
"type": "string",
|
||||
"location": "query"
|
||||
},
|
||||
"upload_protocol": {
|
||||
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
|
||||
"type": "string",
|
||||
"location": "query"
|
||||
},
|
||||
"prettyPrint": {
|
||||
"location": "query",
|
||||
"description": "Returns response with indentations and line breaks.",
|
||||
"default": "true",
|
||||
"type": "boolean"
|
||||
},
|
||||
"oauth_token": {
|
||||
"description": "OAuth 2.0 token for the current user.",
|
||||
"type": "string",
|
||||
"location": "query"
|
||||
},
|
||||
"bearer_token": {
|
||||
"location": "query",
|
||||
"description": "OAuth bearer token.",
|
||||
"type": "string"
|
||||
},
|
||||
"upload_protocol": {
|
||||
"location": "query",
|
||||
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
|
||||
"type": "string"
|
||||
},
|
||||
"prettyPrint": {
|
||||
"description": "Returns response with indentations and line breaks.",
|
||||
"default": "true",
|
||||
"type": "boolean",
|
||||
"location": "query"
|
||||
},
|
||||
"fields": {
|
||||
"location": "query",
|
||||
"description": "Selector specifying which fields to include in a partial response.",
|
||||
"type": "string",
|
||||
"location": "query"
|
||||
"type": "string"
|
||||
},
|
||||
"uploadType": {
|
||||
"location": "query",
|
||||
@@ -548,11 +533,13 @@
|
||||
"type": "string"
|
||||
},
|
||||
"callback": {
|
||||
"location": "query",
|
||||
"description": "JSONP",
|
||||
"type": "string",
|
||||
"location": "query"
|
||||
"type": "string"
|
||||
},
|
||||
"$.xgafv": {
|
||||
"description": "V1 error format.",
|
||||
"type": "string",
|
||||
"enumDescriptions": [
|
||||
"v1 error format",
|
||||
"v2 error format"
|
||||
@@ -561,11 +548,10 @@
|
||||
"enum": [
|
||||
"1",
|
||||
"2"
|
||||
],
|
||||
"description": "V1 error format.",
|
||||
"type": "string"
|
||||
]
|
||||
},
|
||||
"alt": {
|
||||
"type": "string",
|
||||
"enumDescriptions": [
|
||||
"Responses with Content-Type of application/json",
|
||||
"Media download with context-dependent Content-Type",
|
||||
@@ -578,8 +564,7 @@
|
||||
"json",
|
||||
"media",
|
||||
"proto"
|
||||
],
|
||||
"type": "string"
|
||||
]
|
||||
},
|
||||
"key": {
|
||||
"location": "query",
|
||||
@@ -587,19 +572,29 @@
|
||||
"type": "string"
|
||||
},
|
||||
"access_token": {
|
||||
"location": "query",
|
||||
"description": "OAuth access token.",
|
||||
"type": "string",
|
||||
"location": "query"
|
||||
"type": "string"
|
||||
},
|
||||
"quotaUser": {
|
||||
"location": "query",
|
||||
"description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.",
|
||||
"type": "string",
|
||||
"location": "query"
|
||||
"type": "string"
|
||||
},
|
||||
"pp": {
|
||||
"location": "query",
|
||||
"description": "Pretty-print response.",
|
||||
"default": "true",
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"version": "v2",
|
||||
"baseUrl": "https://cloudtrace.googleapis.com/",
|
||||
"kind": "discovery#restDescription",
|
||||
"servicePath": "",
|
||||
"description": "Send and retrieve trace data from Stackdriver Trace. Data is generated and available by default for all App Engine applications. Data from other applications can be written to Stackdriver Trace for display, reporting, and analysis.\n",
|
||||
"servicePath": ""
|
||||
"kind": "discovery#restDescription",
|
||||
"basePath": "",
|
||||
"id": "cloudtrace:v2",
|
||||
"documentationLink": "https://cloud.google.com/trace",
|
||||
"revision": "20171016"
|
||||
}
|
||||
|
||||
130
vendor/google.golang.org/api/cloudtrace/v2/cloudtrace-gen.go
generated
vendored
130
vendor/google.golang.org/api/cloudtrace/v2/cloudtrace-gen.go
generated
vendored
@@ -362,6 +362,59 @@ func (s *Links) MarshalJSON() ([]byte, error) {
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// MessageEvent: An event describing a message sent/received between
|
||||
// Spans.
|
||||
type MessageEvent struct {
|
||||
// CompressedSizeBytes: The number of compressed bytes sent or received.
|
||||
// If missing assumed to
|
||||
// be the same size as uncompressed.
|
||||
CompressedSizeBytes int64 `json:"compressedSizeBytes,omitempty,string"`
|
||||
|
||||
// Id: An identifier for the MessageEvent's message that can be used to
|
||||
// match
|
||||
// SENT and RECEIVED MessageEvents. It is recommended to be unique
|
||||
// within
|
||||
// a Span.
|
||||
Id int64 `json:"id,omitempty,string"`
|
||||
|
||||
// Type: Type of MessageEvent. Indicates whether the message was sent
|
||||
// or
|
||||
// received.
|
||||
//
|
||||
// Possible values:
|
||||
// "TYPE_UNSPECIFIED" - Unknown event type.
|
||||
// "SENT" - Indicates a sent message.
|
||||
// "RECEIVED" - Indicates a received message.
|
||||
Type string `json:"type,omitempty"`
|
||||
|
||||
// UncompressedSizeBytes: The number of uncompressed bytes sent or
|
||||
// received.
|
||||
UncompressedSizeBytes int64 `json:"uncompressedSizeBytes,omitempty,string"`
|
||||
|
||||
// ForceSendFields is a list of field names (e.g. "CompressedSizeBytes")
|
||||
// to unconditionally include in API requests. By default, fields with
|
||||
// empty values are omitted from API requests. However, any non-pointer,
|
||||
// non-interface field appearing in ForceSendFields will be sent to the
|
||||
// server regardless of whether the field is empty or not. This may be
|
||||
// used to include empty fields in Patch requests.
|
||||
ForceSendFields []string `json:"-"`
|
||||
|
||||
// NullFields is a list of field names (e.g. "CompressedSizeBytes") to
|
||||
// include in API requests with the JSON null value. By default, fields
|
||||
// with empty values are omitted from API requests. However, any field
|
||||
// with an empty value appearing in NullFields will be sent to the
|
||||
// server as null. It is an error if a field in this list has a
|
||||
// non-empty value. This may be used to include null fields in Patch
|
||||
// requests.
|
||||
NullFields []string `json:"-"`
|
||||
}
|
||||
|
||||
func (s *MessageEvent) MarshalJSON() ([]byte, error) {
|
||||
type noMethod MessageEvent
|
||||
raw := noMethod(*s)
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// Module: Binary module.
|
||||
type Module struct {
|
||||
// BuildId: A unique identifier for the module, usually a hash of
|
||||
@@ -397,63 +450,6 @@ func (s *Module) MarshalJSON() ([]byte, error) {
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// NetworkEvent: An event describing an RPC message sent or received on
|
||||
// the network.
|
||||
type NetworkEvent struct {
|
||||
// CompressedMessageSize: The number of compressed bytes sent or
|
||||
// received.
|
||||
CompressedMessageSize uint64 `json:"compressedMessageSize,omitempty,string"`
|
||||
|
||||
// MessageId: An identifier for the message, which must be unique in
|
||||
// this span.
|
||||
MessageId uint64 `json:"messageId,omitempty,string"`
|
||||
|
||||
// Time: For sent messages, this is the time at which the first bit was
|
||||
// sent.
|
||||
// For received messages, this is the time at which the last bit
|
||||
// was
|
||||
// received.
|
||||
Time string `json:"time,omitempty"`
|
||||
|
||||
// Type: Type of NetworkEvent. Indicates whether the RPC message was
|
||||
// sent or
|
||||
// received.
|
||||
//
|
||||
// Possible values:
|
||||
// "TYPE_UNSPECIFIED" - Unknown event type.
|
||||
// "SENT" - Indicates a sent RPC message.
|
||||
// "RECV" - Indicates a received RPC message.
|
||||
Type string `json:"type,omitempty"`
|
||||
|
||||
// UncompressedMessageSize: The number of uncompressed bytes sent or
|
||||
// received.
|
||||
UncompressedMessageSize uint64 `json:"uncompressedMessageSize,omitempty,string"`
|
||||
|
||||
// ForceSendFields is a list of field names (e.g.
|
||||
// "CompressedMessageSize") to unconditionally include in API requests.
|
||||
// By default, fields with empty values are omitted from API requests.
|
||||
// However, any non-pointer, non-interface field appearing in
|
||||
// ForceSendFields will be sent to the server regardless of whether the
|
||||
// field is empty or not. This may be used to include empty fields in
|
||||
// Patch requests.
|
||||
ForceSendFields []string `json:"-"`
|
||||
|
||||
// NullFields is a list of field names (e.g. "CompressedMessageSize") to
|
||||
// include in API requests with the JSON null value. By default, fields
|
||||
// with empty values are omitted from API requests. However, any field
|
||||
// with an empty value appearing in NullFields will be sent to the
|
||||
// server as null. It is an error if a field in this list has a
|
||||
// non-empty value. This may be used to include null fields in Patch
|
||||
// requests.
|
||||
NullFields []string `json:"-"`
|
||||
}
|
||||
|
||||
func (s *NetworkEvent) MarshalJSON() ([]byte, error) {
|
||||
type noMethod NetworkEvent
|
||||
raw := noMethod(*s)
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// Span: A span represents a single operation within a trace. Spans can
|
||||
// be
|
||||
// nested to form a trace tree. Often, a trace contains a root span
|
||||
@@ -535,7 +531,7 @@ type Span struct {
|
||||
Status *Status `json:"status,omitempty"`
|
||||
|
||||
// TimeEvents: The included time events. There can be up to 32
|
||||
// annotations and 128 network
|
||||
// annotations and 128 message
|
||||
// events per span.
|
||||
TimeEvents *TimeEvents `json:"timeEvents,omitempty"`
|
||||
|
||||
@@ -676,7 +672,7 @@ type StackTrace struct {
|
||||
//
|
||||
// Subsequent spans within the same request can refer
|
||||
// to that stack trace by only setting `stackTraceHashId`.
|
||||
StackTraceHashId uint64 `json:"stackTraceHashId,omitempty,string"`
|
||||
StackTraceHashId int64 `json:"stackTraceHashId,omitempty,string"`
|
||||
|
||||
// ForceSendFields is a list of field names (e.g. "StackFrames") to
|
||||
// unconditionally include in API requests. By default, fields with
|
||||
@@ -820,14 +816,14 @@ func (s *Status) MarshalJSON() ([]byte, error) {
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// TimeEvent: A time-stamped annotation or network event in the Span.
|
||||
// TimeEvent: A time-stamped annotation or message event in the Span.
|
||||
type TimeEvent struct {
|
||||
// Annotation: Text annotation with a set of attributes.
|
||||
Annotation *Annotation `json:"annotation,omitempty"`
|
||||
|
||||
// NetworkEvent: An event describing an RPC message sent/received on the
|
||||
// network.
|
||||
NetworkEvent *NetworkEvent `json:"networkEvent,omitempty"`
|
||||
// MessageEvent: An event describing a message sent/received between
|
||||
// Spans.
|
||||
MessageEvent *MessageEvent `json:"messageEvent,omitempty"`
|
||||
|
||||
// Time: The timestamp indicating the time the event occurred.
|
||||
Time string `json:"time,omitempty"`
|
||||
@@ -859,17 +855,17 @@ func (s *TimeEvent) MarshalJSON() ([]byte, error) {
|
||||
// time-stamped annotation
|
||||
// on the span, consisting of either user-supplied key:value pairs,
|
||||
// or
|
||||
// details of an RPC message sent/received on the network.
|
||||
// details of a message sent/received between Spans.
|
||||
type TimeEvents struct {
|
||||
// DroppedAnnotationsCount: The number of dropped annotations in all the
|
||||
// included time events.
|
||||
// If the value is 0, then no annotations were dropped.
|
||||
DroppedAnnotationsCount int64 `json:"droppedAnnotationsCount,omitempty"`
|
||||
|
||||
// DroppedNetworkEventsCount: The number of dropped network events in
|
||||
// DroppedMessageEventsCount: The number of dropped message events in
|
||||
// all the included time events.
|
||||
// If the value is 0, then no network events were dropped.
|
||||
DroppedNetworkEventsCount int64 `json:"droppedNetworkEventsCount,omitempty"`
|
||||
// If the value is 0, then no message events were dropped.
|
||||
DroppedMessageEventsCount int64 `json:"droppedMessageEventsCount,omitempty"`
|
||||
|
||||
// TimeEvent: A collection of `TimeEvent`s.
|
||||
TimeEvent []*TimeEvent `json:"timeEvent,omitempty"`
|
||||
|
||||
Reference in New Issue
Block a user