You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/api/field_behavior.proto" (package "google.api", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/api/http.proto" (package "google.api", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -38,7 +38,7 @@ export interface Http {
|
||||
*
|
||||
* **NOTE:** All service configuration rules follow "last one wins" order.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.api.HttpRule rules = 1;
|
||||
* @generated from protobuf field: repeated google.api.HttpRule rules = 1
|
||||
*/
|
||||
rules: HttpRule[];
|
||||
/**
|
||||
@@ -49,7 +49,7 @@ export interface Http {
|
||||
* The default behavior is to not decode RFC 6570 reserved characters in multi
|
||||
* segment matches.
|
||||
*
|
||||
* @generated from protobuf field: bool fully_decode_reserved_expansion = 2;
|
||||
* @generated from protobuf field: bool fully_decode_reserved_expansion = 2
|
||||
*/
|
||||
fully_decode_reserved_expansion: boolean;
|
||||
}
|
||||
@@ -332,10 +332,14 @@ export interface HttpRule {
|
||||
*
|
||||
* Refer to [selector][google.api.DocumentationRule.selector] for syntax details.
|
||||
*
|
||||
* @generated from protobuf field: string selector = 1;
|
||||
* @generated from protobuf field: string selector = 1
|
||||
*/
|
||||
selector: string;
|
||||
/**
|
||||
* Determines the URL pattern is matched by this rules. This pattern can be
|
||||
* used with any of the {get|put|post|delete|patch} methods. A custom method
|
||||
* can be defined using the 'custom' field.
|
||||
*
|
||||
* @generated from protobuf oneof: pattern
|
||||
*/
|
||||
pattern: {
|
||||
@@ -344,7 +348,7 @@ export interface HttpRule {
|
||||
* Maps to HTTP GET. Used for listing and getting information about
|
||||
* resources.
|
||||
*
|
||||
* @generated from protobuf field: string get = 2;
|
||||
* @generated from protobuf field: string get = 2
|
||||
*/
|
||||
get: string;
|
||||
} | {
|
||||
@@ -352,7 +356,7 @@ export interface HttpRule {
|
||||
/**
|
||||
* Maps to HTTP PUT. Used for replacing a resource.
|
||||
*
|
||||
* @generated from protobuf field: string put = 3;
|
||||
* @generated from protobuf field: string put = 3
|
||||
*/
|
||||
put: string;
|
||||
} | {
|
||||
@@ -360,7 +364,7 @@ export interface HttpRule {
|
||||
/**
|
||||
* Maps to HTTP POST. Used for creating a resource or performing an action.
|
||||
*
|
||||
* @generated from protobuf field: string post = 4;
|
||||
* @generated from protobuf field: string post = 4
|
||||
*/
|
||||
post: string;
|
||||
} | {
|
||||
@@ -368,7 +372,7 @@ export interface HttpRule {
|
||||
/**
|
||||
* Maps to HTTP DELETE. Used for deleting a resource.
|
||||
*
|
||||
* @generated from protobuf field: string delete = 5;
|
||||
* @generated from protobuf field: string delete = 5
|
||||
*/
|
||||
delete: string;
|
||||
} | {
|
||||
@@ -376,7 +380,7 @@ export interface HttpRule {
|
||||
/**
|
||||
* Maps to HTTP PATCH. Used for updating a resource.
|
||||
*
|
||||
* @generated from protobuf field: string patch = 6;
|
||||
* @generated from protobuf field: string patch = 6
|
||||
*/
|
||||
patch: string;
|
||||
} | {
|
||||
@@ -387,7 +391,7 @@ export interface HttpRule {
|
||||
* HTTP method unspecified for this rule. The wild-card rule is useful
|
||||
* for services that provide content to Web (HTML) clients.
|
||||
*
|
||||
* @generated from protobuf field: google.api.CustomHttpPattern custom = 8;
|
||||
* @generated from protobuf field: google.api.CustomHttpPattern custom = 8
|
||||
*/
|
||||
custom: CustomHttpPattern;
|
||||
} | {
|
||||
@@ -401,7 +405,7 @@ export interface HttpRule {
|
||||
* NOTE: the referred field must be present at the top-level of the request
|
||||
* message type.
|
||||
*
|
||||
* @generated from protobuf field: string body = 7;
|
||||
* @generated from protobuf field: string body = 7
|
||||
*/
|
||||
body: string;
|
||||
/**
|
||||
@@ -412,7 +416,7 @@ export interface HttpRule {
|
||||
* NOTE: The referred field must be present at the top-level of the response
|
||||
* message type.
|
||||
*
|
||||
* @generated from protobuf field: string response_body = 12;
|
||||
* @generated from protobuf field: string response_body = 12
|
||||
*/
|
||||
response_body: string;
|
||||
/**
|
||||
@@ -420,7 +424,7 @@ export interface HttpRule {
|
||||
* not contain an `additional_bindings` field themselves (that is,
|
||||
* the nesting may only be one level deep).
|
||||
*
|
||||
* @generated from protobuf field: repeated google.api.HttpRule additional_bindings = 11;
|
||||
* @generated from protobuf field: repeated google.api.HttpRule additional_bindings = 11
|
||||
*/
|
||||
additional_bindings: HttpRule[];
|
||||
}
|
||||
@@ -433,13 +437,13 @@ export interface CustomHttpPattern {
|
||||
/**
|
||||
* The name of this custom HTTP verb.
|
||||
*
|
||||
* @generated from protobuf field: string kind = 1;
|
||||
* @generated from protobuf field: string kind = 1
|
||||
*/
|
||||
kind: string;
|
||||
/**
|
||||
* The path matched by this custom verb.
|
||||
*
|
||||
* @generated from protobuf field: string path = 2;
|
||||
* @generated from protobuf field: string path = 2
|
||||
*/
|
||||
path: string;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/api/httpbody.proto" (package "google.api", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -73,20 +73,20 @@ export interface HttpBody {
|
||||
/**
|
||||
* The HTTP Content-Type header value specifying the content type of the body.
|
||||
*
|
||||
* @generated from protobuf field: string content_type = 1;
|
||||
* @generated from protobuf field: string content_type = 1
|
||||
*/
|
||||
content_type: string;
|
||||
/**
|
||||
* The HTTP request/response body as raw binary.
|
||||
*
|
||||
* @generated from protobuf field: bytes data = 2;
|
||||
* @generated from protobuf field: bytes data = 2
|
||||
*/
|
||||
data: Uint8Array;
|
||||
/**
|
||||
* Application specific response metadata. Must be set in the first response
|
||||
* for streaming APIs.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.Any extensions = 3;
|
||||
* @generated from protobuf field: repeated google.protobuf.Any extensions = 3
|
||||
*/
|
||||
extensions: Any[];
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/protobuf/any.proto" (package "google.protobuf", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -163,13 +163,13 @@ export interface Any {
|
||||
* used with implementation specific semantics.
|
||||
*
|
||||
*
|
||||
* @generated from protobuf field: string type_url = 1;
|
||||
* @generated from protobuf field: string type_url = 1
|
||||
*/
|
||||
type_url: string;
|
||||
/**
|
||||
* Must be a valid serialized protocol buffer of the above specified type.
|
||||
*
|
||||
* @generated from protobuf field: bytes value = 2;
|
||||
* @generated from protobuf field: bytes value = 2
|
||||
*/
|
||||
value: Uint8Array;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/protobuf/api.proto" (package "google.protobuf", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -62,19 +62,19 @@ export interface Api {
|
||||
* The fully qualified name of this interface, including package name
|
||||
* followed by the interface's simple name.
|
||||
*
|
||||
* @generated from protobuf field: string name = 1;
|
||||
* @generated from protobuf field: string name = 1
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* The methods of this interface, in unspecified order.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.Method methods = 2;
|
||||
* @generated from protobuf field: repeated google.protobuf.Method methods = 2
|
||||
*/
|
||||
methods: Method[];
|
||||
/**
|
||||
* Any metadata attached to the interface.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.Option options = 3;
|
||||
* @generated from protobuf field: repeated google.protobuf.Option options = 3
|
||||
*/
|
||||
options: Option[];
|
||||
/**
|
||||
@@ -100,26 +100,26 @@ export interface Api {
|
||||
*
|
||||
*
|
||||
*
|
||||
* @generated from protobuf field: string version = 4;
|
||||
* @generated from protobuf field: string version = 4
|
||||
*/
|
||||
version: string;
|
||||
/**
|
||||
* Source context for the protocol buffer service represented by this
|
||||
* message.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.SourceContext source_context = 5;
|
||||
* @generated from protobuf field: google.protobuf.SourceContext source_context = 5
|
||||
*/
|
||||
source_context?: SourceContext;
|
||||
/**
|
||||
* Included interfaces. See [Mixin][].
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.Mixin mixins = 6;
|
||||
* @generated from protobuf field: repeated google.protobuf.Mixin mixins = 6
|
||||
*/
|
||||
mixins: Mixin[];
|
||||
/**
|
||||
* The source syntax of the service.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.Syntax syntax = 7;
|
||||
* @generated from protobuf field: google.protobuf.Syntax syntax = 7
|
||||
*/
|
||||
syntax: Syntax;
|
||||
}
|
||||
@@ -132,43 +132,43 @@ export interface Method {
|
||||
/**
|
||||
* The simple name of this method.
|
||||
*
|
||||
* @generated from protobuf field: string name = 1;
|
||||
* @generated from protobuf field: string name = 1
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* A URL of the input message type.
|
||||
*
|
||||
* @generated from protobuf field: string request_type_url = 2;
|
||||
* @generated from protobuf field: string request_type_url = 2
|
||||
*/
|
||||
request_type_url: string;
|
||||
/**
|
||||
* If true, the request is streamed.
|
||||
*
|
||||
* @generated from protobuf field: bool request_streaming = 3;
|
||||
* @generated from protobuf field: bool request_streaming = 3
|
||||
*/
|
||||
request_streaming: boolean;
|
||||
/**
|
||||
* The URL of the output message type.
|
||||
*
|
||||
* @generated from protobuf field: string response_type_url = 4;
|
||||
* @generated from protobuf field: string response_type_url = 4
|
||||
*/
|
||||
response_type_url: string;
|
||||
/**
|
||||
* If true, the response is streamed.
|
||||
*
|
||||
* @generated from protobuf field: bool response_streaming = 5;
|
||||
* @generated from protobuf field: bool response_streaming = 5
|
||||
*/
|
||||
response_streaming: boolean;
|
||||
/**
|
||||
* Any metadata attached to the method.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.Option options = 6;
|
||||
* @generated from protobuf field: repeated google.protobuf.Option options = 6
|
||||
*/
|
||||
options: Option[];
|
||||
/**
|
||||
* The source syntax of this method.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.Syntax syntax = 7;
|
||||
* @generated from protobuf field: google.protobuf.Syntax syntax = 7
|
||||
*/
|
||||
syntax: Syntax;
|
||||
}
|
||||
@@ -258,14 +258,14 @@ export interface Mixin {
|
||||
/**
|
||||
* The fully qualified name of the interface which is included.
|
||||
*
|
||||
* @generated from protobuf field: string name = 1;
|
||||
* @generated from protobuf field: string name = 1
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* If non-empty specifies a path under which inherited HTTP paths
|
||||
* are rooted.
|
||||
*
|
||||
* @generated from protobuf field: string root = 2;
|
||||
* @generated from protobuf field: string root = 2
|
||||
*/
|
||||
root: string;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/protobuf/compiler/plugin.proto" (package "google.protobuf.compiler", syntax proto2)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -66,22 +66,22 @@ import { FileDescriptorProto } from "../descriptor";
|
||||
*/
|
||||
export interface Version {
|
||||
/**
|
||||
* @generated from protobuf field: optional int32 major = 1;
|
||||
* @generated from protobuf field: optional int32 major = 1
|
||||
*/
|
||||
major?: number;
|
||||
/**
|
||||
* @generated from protobuf field: optional int32 minor = 2;
|
||||
* @generated from protobuf field: optional int32 minor = 2
|
||||
*/
|
||||
minor?: number;
|
||||
/**
|
||||
* @generated from protobuf field: optional int32 patch = 3;
|
||||
* @generated from protobuf field: optional int32 patch = 3
|
||||
*/
|
||||
patch?: number;
|
||||
/**
|
||||
* A suffix for alpha, beta or rc release, e.g., "alpha-1", "rc2". It should
|
||||
* be empty for mainline stable releases.
|
||||
*
|
||||
* @generated from protobuf field: optional string suffix = 4;
|
||||
* @generated from protobuf field: optional string suffix = 4
|
||||
*/
|
||||
suffix?: string;
|
||||
}
|
||||
@@ -96,13 +96,13 @@ export interface CodeGeneratorRequest {
|
||||
* code generator should generate code only for these files. Each file's
|
||||
* descriptor will be included in proto_file, below.
|
||||
*
|
||||
* @generated from protobuf field: repeated string file_to_generate = 1;
|
||||
* @generated from protobuf field: repeated string file_to_generate = 1
|
||||
*/
|
||||
file_to_generate: string[];
|
||||
/**
|
||||
* The generator parameter passed on the command-line.
|
||||
*
|
||||
* @generated from protobuf field: optional string parameter = 2;
|
||||
* @generated from protobuf field: optional string parameter = 2
|
||||
*/
|
||||
parameter?: string;
|
||||
/**
|
||||
@@ -121,13 +121,13 @@ export interface CodeGeneratorRequest {
|
||||
* Type names of fields and extensions in the FileDescriptorProto are always
|
||||
* fully qualified.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.FileDescriptorProto proto_file = 15;
|
||||
* @generated from protobuf field: repeated google.protobuf.FileDescriptorProto proto_file = 15
|
||||
*/
|
||||
proto_file: FileDescriptorProto[];
|
||||
/**
|
||||
* The version number of protocol compiler.
|
||||
*
|
||||
* @generated from protobuf field: optional google.protobuf.compiler.Version compiler_version = 3;
|
||||
* @generated from protobuf field: optional google.protobuf.compiler.Version compiler_version = 3
|
||||
*/
|
||||
compiler_version?: Version;
|
||||
}
|
||||
@@ -147,11 +147,11 @@ export interface CodeGeneratorResponse {
|
||||
* unparseable -- should be reported by writing a message to stderr and
|
||||
* exiting with a non-zero status code.
|
||||
*
|
||||
* @generated from protobuf field: optional string error = 1;
|
||||
* @generated from protobuf field: optional string error = 1
|
||||
*/
|
||||
error?: string;
|
||||
/**
|
||||
* @generated from protobuf field: repeated google.protobuf.compiler.CodeGeneratorResponse.File file = 15;
|
||||
* @generated from protobuf field: repeated google.protobuf.compiler.CodeGeneratorResponse.File file = 15
|
||||
*/
|
||||
file: CodeGeneratorResponse_File[];
|
||||
}
|
||||
@@ -174,7 +174,7 @@ export interface CodeGeneratorResponse_File {
|
||||
* this writing protoc does not optimize for this -- it will read the entire
|
||||
* CodeGeneratorResponse before writing files to disk.
|
||||
*
|
||||
* @generated from protobuf field: optional string name = 1;
|
||||
* @generated from protobuf field: optional string name = 1
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
@@ -216,13 +216,13 @@ export interface CodeGeneratorResponse_File {
|
||||
*
|
||||
* If |insertion_point| is present, |name| must also be present.
|
||||
*
|
||||
* @generated from protobuf field: optional string insertion_point = 2;
|
||||
* @generated from protobuf field: optional string insertion_point = 2
|
||||
*/
|
||||
insertion_point?: string;
|
||||
/**
|
||||
* The file contents.
|
||||
*
|
||||
* @generated from protobuf field: optional string content = 15;
|
||||
* @generated from protobuf field: optional string content = 15
|
||||
*/
|
||||
content?: string;
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/protobuf/duration.proto" (package "google.protobuf", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -116,7 +116,7 @@ export interface Duration {
|
||||
* to +315,576,000,000 inclusive. Note: these bounds are computed from:
|
||||
* 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
|
||||
*
|
||||
* @generated from protobuf field: int64 seconds = 1;
|
||||
* @generated from protobuf field: int64 seconds = 1
|
||||
*/
|
||||
seconds: bigint;
|
||||
/**
|
||||
@@ -127,7 +127,7 @@ export interface Duration {
|
||||
* of the same sign as the `seconds` field. Must be from -999,999,999
|
||||
* to +999,999,999 inclusive.
|
||||
*
|
||||
* @generated from protobuf field: int32 nanos = 2;
|
||||
* @generated from protobuf field: int32 nanos = 2
|
||||
*/
|
||||
nanos: number;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/protobuf/empty.proto" (package "google.protobuf", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/protobuf/field_mask.proto" (package "google.protobuf", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -253,7 +253,7 @@ export interface FieldMask {
|
||||
/**
|
||||
* The set of field mask paths.
|
||||
*
|
||||
* @generated from protobuf field: repeated string paths = 1;
|
||||
* @generated from protobuf field: repeated string paths = 1
|
||||
*/
|
||||
paths: string[];
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/protobuf/source_context.proto" (package "google.protobuf", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -52,7 +52,7 @@ export interface SourceContext {
|
||||
* The path-qualified name of the .proto file that contained the associated
|
||||
* protobuf element. For example: `"google/protobuf/source_context.proto"`.
|
||||
*
|
||||
* @generated from protobuf field: string file_name = 1;
|
||||
* @generated from protobuf field: string file_name = 1
|
||||
*/
|
||||
file_name: string;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/protobuf/struct.proto" (package "google.protobuf", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -63,7 +63,7 @@ export interface Struct {
|
||||
/**
|
||||
* Unordered map of dynamically typed values.
|
||||
*
|
||||
* @generated from protobuf field: map<string, google.protobuf.Value> fields = 1;
|
||||
* @generated from protobuf field: map<string, google.protobuf.Value> fields = 1
|
||||
*/
|
||||
fields: {
|
||||
[key: string]: Value;
|
||||
@@ -81,6 +81,8 @@ export interface Struct {
|
||||
*/
|
||||
export interface Value {
|
||||
/**
|
||||
* The kind of value.
|
||||
*
|
||||
* @generated from protobuf oneof: kind
|
||||
*/
|
||||
kind: {
|
||||
@@ -88,7 +90,7 @@ export interface Value {
|
||||
/**
|
||||
* Represents a null value.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.NullValue null_value = 1;
|
||||
* @generated from protobuf field: google.protobuf.NullValue null_value = 1
|
||||
*/
|
||||
null_value: NullValue;
|
||||
} | {
|
||||
@@ -96,7 +98,7 @@ export interface Value {
|
||||
/**
|
||||
* Represents a double value.
|
||||
*
|
||||
* @generated from protobuf field: double number_value = 2;
|
||||
* @generated from protobuf field: double number_value = 2
|
||||
*/
|
||||
number_value: number;
|
||||
} | {
|
||||
@@ -104,7 +106,7 @@ export interface Value {
|
||||
/**
|
||||
* Represents a string value.
|
||||
*
|
||||
* @generated from protobuf field: string string_value = 3;
|
||||
* @generated from protobuf field: string string_value = 3
|
||||
*/
|
||||
string_value: string;
|
||||
} | {
|
||||
@@ -112,7 +114,7 @@ export interface Value {
|
||||
/**
|
||||
* Represents a boolean value.
|
||||
*
|
||||
* @generated from protobuf field: bool bool_value = 4;
|
||||
* @generated from protobuf field: bool bool_value = 4
|
||||
*/
|
||||
bool_value: boolean;
|
||||
} | {
|
||||
@@ -120,7 +122,7 @@ export interface Value {
|
||||
/**
|
||||
* Represents a structured value.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.Struct struct_value = 5;
|
||||
* @generated from protobuf field: google.protobuf.Struct struct_value = 5
|
||||
*/
|
||||
struct_value: Struct;
|
||||
} | {
|
||||
@@ -128,7 +130,7 @@ export interface Value {
|
||||
/**
|
||||
* Represents a repeated `Value`.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.ListValue list_value = 6;
|
||||
* @generated from protobuf field: google.protobuf.ListValue list_value = 6
|
||||
*/
|
||||
list_value: ListValue;
|
||||
} | {
|
||||
@@ -146,7 +148,7 @@ export interface ListValue {
|
||||
/**
|
||||
* Repeated field of dynamically typed values.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.Value values = 1;
|
||||
* @generated from protobuf field: repeated google.protobuf.Value values = 1
|
||||
*/
|
||||
values: Value[];
|
||||
}
|
||||
@@ -233,7 +235,7 @@ class Struct$Type extends MessageType<Struct> {
|
||||
case 2:
|
||||
val = Value.internalBinaryRead(reader, reader.uint32(), options);
|
||||
break;
|
||||
default: throw new globalThis.Error("unknown map entry field for field google.protobuf.Struct.fields");
|
||||
default: throw new globalThis.Error("unknown map entry field for google.protobuf.Struct.fields");
|
||||
}
|
||||
}
|
||||
map[key ?? ""] = val ?? Value.create();
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/protobuf/timestamp.proto" (package "google.protobuf", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -140,7 +140,7 @@ export interface Timestamp {
|
||||
* 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
|
||||
* 9999-12-31T23:59:59Z inclusive.
|
||||
*
|
||||
* @generated from protobuf field: int64 seconds = 1;
|
||||
* @generated from protobuf field: int64 seconds = 1
|
||||
*/
|
||||
seconds: bigint;
|
||||
/**
|
||||
@@ -149,7 +149,7 @@ export interface Timestamp {
|
||||
* that count forward in time. Must be from 0 to 999,999,999
|
||||
* inclusive.
|
||||
*
|
||||
* @generated from protobuf field: int32 nanos = 2;
|
||||
* @generated from protobuf field: int32 nanos = 2
|
||||
*/
|
||||
nanos: number;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/protobuf/type.proto" (package "google.protobuf", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -52,37 +52,37 @@ export interface Type {
|
||||
/**
|
||||
* The fully qualified message name.
|
||||
*
|
||||
* @generated from protobuf field: string name = 1;
|
||||
* @generated from protobuf field: string name = 1
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* The list of fields.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.Field fields = 2;
|
||||
* @generated from protobuf field: repeated google.protobuf.Field fields = 2
|
||||
*/
|
||||
fields: Field[];
|
||||
/**
|
||||
* The list of types appearing in `oneof` definitions in this type.
|
||||
*
|
||||
* @generated from protobuf field: repeated string oneofs = 3;
|
||||
* @generated from protobuf field: repeated string oneofs = 3
|
||||
*/
|
||||
oneofs: string[];
|
||||
/**
|
||||
* The protocol buffer options.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.Option options = 4;
|
||||
* @generated from protobuf field: repeated google.protobuf.Option options = 4
|
||||
*/
|
||||
options: Option[];
|
||||
/**
|
||||
* The source context.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.SourceContext source_context = 5;
|
||||
* @generated from protobuf field: google.protobuf.SourceContext source_context = 5
|
||||
*/
|
||||
source_context?: SourceContext;
|
||||
/**
|
||||
* The source syntax.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.Syntax syntax = 6;
|
||||
* @generated from protobuf field: google.protobuf.Syntax syntax = 6
|
||||
*/
|
||||
syntax: Syntax;
|
||||
}
|
||||
@@ -95,63 +95,63 @@ export interface Field {
|
||||
/**
|
||||
* The field type.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.Field.Kind kind = 1;
|
||||
* @generated from protobuf field: google.protobuf.Field.Kind kind = 1
|
||||
*/
|
||||
kind: Field_Kind;
|
||||
/**
|
||||
* The field cardinality.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.Field.Cardinality cardinality = 2;
|
||||
* @generated from protobuf field: google.protobuf.Field.Cardinality cardinality = 2
|
||||
*/
|
||||
cardinality: Field_Cardinality;
|
||||
/**
|
||||
* The field number.
|
||||
*
|
||||
* @generated from protobuf field: int32 number = 3;
|
||||
* @generated from protobuf field: int32 number = 3
|
||||
*/
|
||||
number: number;
|
||||
/**
|
||||
* The field name.
|
||||
*
|
||||
* @generated from protobuf field: string name = 4;
|
||||
* @generated from protobuf field: string name = 4
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* The field type URL, without the scheme, for message or enumeration
|
||||
* types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
|
||||
*
|
||||
* @generated from protobuf field: string type_url = 6;
|
||||
* @generated from protobuf field: string type_url = 6
|
||||
*/
|
||||
type_url: string;
|
||||
/**
|
||||
* The index of the field type in `Type.oneofs`, for message or enumeration
|
||||
* types. The first type has index 1; zero means the type is not in the list.
|
||||
*
|
||||
* @generated from protobuf field: int32 oneof_index = 7;
|
||||
* @generated from protobuf field: int32 oneof_index = 7
|
||||
*/
|
||||
oneof_index: number;
|
||||
/**
|
||||
* Whether to use alternative packed wire representation.
|
||||
*
|
||||
* @generated from protobuf field: bool packed = 8;
|
||||
* @generated from protobuf field: bool packed = 8
|
||||
*/
|
||||
packed: boolean;
|
||||
/**
|
||||
* The protocol buffer options.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.Option options = 9;
|
||||
* @generated from protobuf field: repeated google.protobuf.Option options = 9
|
||||
*/
|
||||
options: Option[];
|
||||
/**
|
||||
* The field JSON name.
|
||||
*
|
||||
* @generated from protobuf field: string json_name = 10;
|
||||
* @generated from protobuf field: string json_name = 10
|
||||
*/
|
||||
json_name: string;
|
||||
/**
|
||||
* The string value of the default value of this field. Proto2 syntax only.
|
||||
*
|
||||
* @generated from protobuf field: string default_value = 11;
|
||||
* @generated from protobuf field: string default_value = 11
|
||||
*/
|
||||
default_value: string;
|
||||
}
|
||||
@@ -316,31 +316,31 @@ export interface Enum {
|
||||
/**
|
||||
* Enum type name.
|
||||
*
|
||||
* @generated from protobuf field: string name = 1;
|
||||
* @generated from protobuf field: string name = 1
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* Enum value definitions.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.EnumValue enumvalue = 2;
|
||||
* @generated from protobuf field: repeated google.protobuf.EnumValue enumvalue = 2
|
||||
*/
|
||||
enumvalue: EnumValue[];
|
||||
/**
|
||||
* Protocol buffer options.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.Option options = 3;
|
||||
* @generated from protobuf field: repeated google.protobuf.Option options = 3
|
||||
*/
|
||||
options: Option[];
|
||||
/**
|
||||
* The source context.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.SourceContext source_context = 4;
|
||||
* @generated from protobuf field: google.protobuf.SourceContext source_context = 4
|
||||
*/
|
||||
source_context?: SourceContext;
|
||||
/**
|
||||
* The source syntax.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.Syntax syntax = 5;
|
||||
* @generated from protobuf field: google.protobuf.Syntax syntax = 5
|
||||
*/
|
||||
syntax: Syntax;
|
||||
}
|
||||
@@ -353,19 +353,19 @@ export interface EnumValue {
|
||||
/**
|
||||
* Enum value name.
|
||||
*
|
||||
* @generated from protobuf field: string name = 1;
|
||||
* @generated from protobuf field: string name = 1
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* Enum value number.
|
||||
*
|
||||
* @generated from protobuf field: int32 number = 2;
|
||||
* @generated from protobuf field: int32 number = 2
|
||||
*/
|
||||
number: number;
|
||||
/**
|
||||
* Protocol buffer options.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.Option options = 3;
|
||||
* @generated from protobuf field: repeated google.protobuf.Option options = 3
|
||||
*/
|
||||
options: Option[];
|
||||
}
|
||||
@@ -382,7 +382,7 @@ export interface Option {
|
||||
* For custom options, it should be the fully-qualified name. For example,
|
||||
* `"google.api.http"`.
|
||||
*
|
||||
* @generated from protobuf field: string name = 1;
|
||||
* @generated from protobuf field: string name = 1
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
@@ -391,7 +391,7 @@ export interface Option {
|
||||
* should be used. If the value is an enum, it should be stored as an int32
|
||||
* value using the google.protobuf.Int32Value type.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.Any value = 2;
|
||||
* @generated from protobuf field: google.protobuf.Any value = 2
|
||||
*/
|
||||
value?: Any;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/protobuf/wrappers.proto" (package "google.protobuf", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -68,7 +68,7 @@ export interface DoubleValue {
|
||||
/**
|
||||
* The double value.
|
||||
*
|
||||
* @generated from protobuf field: double value = 1;
|
||||
* @generated from protobuf field: double value = 1
|
||||
*/
|
||||
value: number;
|
||||
}
|
||||
@@ -83,7 +83,7 @@ export interface FloatValue {
|
||||
/**
|
||||
* The float value.
|
||||
*
|
||||
* @generated from protobuf field: float value = 1;
|
||||
* @generated from protobuf field: float value = 1
|
||||
*/
|
||||
value: number;
|
||||
}
|
||||
@@ -98,7 +98,7 @@ export interface Int64Value {
|
||||
/**
|
||||
* The int64 value.
|
||||
*
|
||||
* @generated from protobuf field: int64 value = 1;
|
||||
* @generated from protobuf field: int64 value = 1
|
||||
*/
|
||||
value: bigint;
|
||||
}
|
||||
@@ -113,7 +113,7 @@ export interface UInt64Value {
|
||||
/**
|
||||
* The uint64 value.
|
||||
*
|
||||
* @generated from protobuf field: uint64 value = 1;
|
||||
* @generated from protobuf field: uint64 value = 1
|
||||
*/
|
||||
value: bigint;
|
||||
}
|
||||
@@ -128,7 +128,7 @@ export interface Int32Value {
|
||||
/**
|
||||
* The int32 value.
|
||||
*
|
||||
* @generated from protobuf field: int32 value = 1;
|
||||
* @generated from protobuf field: int32 value = 1
|
||||
*/
|
||||
value: number;
|
||||
}
|
||||
@@ -143,7 +143,7 @@ export interface UInt32Value {
|
||||
/**
|
||||
* The uint32 value.
|
||||
*
|
||||
* @generated from protobuf field: uint32 value = 1;
|
||||
* @generated from protobuf field: uint32 value = 1
|
||||
*/
|
||||
value: number;
|
||||
}
|
||||
@@ -158,7 +158,7 @@ export interface BoolValue {
|
||||
/**
|
||||
* The bool value.
|
||||
*
|
||||
* @generated from protobuf field: bool value = 1;
|
||||
* @generated from protobuf field: bool value = 1
|
||||
*/
|
||||
value: boolean;
|
||||
}
|
||||
@@ -173,7 +173,7 @@ export interface StringValue {
|
||||
/**
|
||||
* The string value.
|
||||
*
|
||||
* @generated from protobuf field: string value = 1;
|
||||
* @generated from protobuf field: string value = 1
|
||||
*/
|
||||
value: string;
|
||||
}
|
||||
@@ -188,7 +188,7 @@ export interface BytesValue {
|
||||
/**
|
||||
* The bytes value.
|
||||
*
|
||||
* @generated from protobuf field: bytes value = 1;
|
||||
* @generated from protobuf field: bytes value = 1
|
||||
*/
|
||||
value: Uint8Array;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/rpc/code.proto" (package "google.rpc", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/rpc/error_details.proto" (package "google.rpc", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -47,7 +47,7 @@ export interface RetryInfo {
|
||||
/**
|
||||
* Clients should wait at least this long between retrying the same request.
|
||||
*
|
||||
* @generated from protobuf field: google.protobuf.Duration retry_delay = 1;
|
||||
* @generated from protobuf field: google.protobuf.Duration retry_delay = 1
|
||||
*/
|
||||
retry_delay?: Duration;
|
||||
}
|
||||
@@ -60,13 +60,13 @@ export interface DebugInfo {
|
||||
/**
|
||||
* The stack trace entries indicating where the error occurred.
|
||||
*
|
||||
* @generated from protobuf field: repeated string stack_entries = 1;
|
||||
* @generated from protobuf field: repeated string stack_entries = 1
|
||||
*/
|
||||
stack_entries: string[];
|
||||
/**
|
||||
* Additional debugging information provided by the server.
|
||||
*
|
||||
* @generated from protobuf field: string detail = 2;
|
||||
* @generated from protobuf field: string detail = 2
|
||||
*/
|
||||
detail: string;
|
||||
}
|
||||
@@ -89,7 +89,7 @@ export interface QuotaFailure {
|
||||
/**
|
||||
* Describes all quota violations.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.rpc.QuotaFailure.Violation violations = 1;
|
||||
* @generated from protobuf field: repeated google.rpc.QuotaFailure.Violation violations = 1
|
||||
*/
|
||||
violations: QuotaFailure_Violation[];
|
||||
}
|
||||
@@ -105,7 +105,7 @@ export interface QuotaFailure_Violation {
|
||||
* For example, "clientip:<ip address of client>" or "project:<Google
|
||||
* developer project id>".
|
||||
*
|
||||
* @generated from protobuf field: string subject = 1;
|
||||
* @generated from protobuf field: string subject = 1
|
||||
*/
|
||||
subject: string;
|
||||
/**
|
||||
@@ -117,7 +117,7 @@ export interface QuotaFailure_Violation {
|
||||
* For example: "Service disabled" or "Daily Limit for read operations
|
||||
* exceeded".
|
||||
*
|
||||
* @generated from protobuf field: string description = 2;
|
||||
* @generated from protobuf field: string description = 2
|
||||
*/
|
||||
description: string;
|
||||
}
|
||||
@@ -134,7 +134,7 @@ export interface PreconditionFailure {
|
||||
/**
|
||||
* Describes all precondition violations.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.rpc.PreconditionFailure.Violation violations = 1;
|
||||
* @generated from protobuf field: repeated google.rpc.PreconditionFailure.Violation violations = 1
|
||||
*/
|
||||
violations: PreconditionFailure_Violation[];
|
||||
}
|
||||
@@ -149,7 +149,7 @@ export interface PreconditionFailure_Violation {
|
||||
* enum type to define the supported precondition violation types. For
|
||||
* example, "TOS" for "Terms of Service violation".
|
||||
*
|
||||
* @generated from protobuf field: string type = 1;
|
||||
* @generated from protobuf field: string type = 1
|
||||
*/
|
||||
type: string;
|
||||
/**
|
||||
@@ -157,7 +157,7 @@ export interface PreconditionFailure_Violation {
|
||||
* For example, "google.com/cloud" relative to the "TOS" type would
|
||||
* indicate which terms of service is being referenced.
|
||||
*
|
||||
* @generated from protobuf field: string subject = 2;
|
||||
* @generated from protobuf field: string subject = 2
|
||||
*/
|
||||
subject: string;
|
||||
/**
|
||||
@@ -166,7 +166,7 @@ export interface PreconditionFailure_Violation {
|
||||
*
|
||||
* For example: "Terms of service not accepted".
|
||||
*
|
||||
* @generated from protobuf field: string description = 3;
|
||||
* @generated from protobuf field: string description = 3
|
||||
*/
|
||||
description: string;
|
||||
}
|
||||
@@ -180,7 +180,7 @@ export interface BadRequest {
|
||||
/**
|
||||
* Describes all violations in a client request.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.rpc.BadRequest.FieldViolation field_violations = 1;
|
||||
* @generated from protobuf field: repeated google.rpc.BadRequest.FieldViolation field_violations = 1
|
||||
*/
|
||||
field_violations: BadRequest_FieldViolation[];
|
||||
}
|
||||
@@ -195,13 +195,13 @@ export interface BadRequest_FieldViolation {
|
||||
* sequence of dot-separated identifiers that identify a protocol buffer
|
||||
* field. E.g., "field_violations.field" would identify this field.
|
||||
*
|
||||
* @generated from protobuf field: string field = 1;
|
||||
* @generated from protobuf field: string field = 1
|
||||
*/
|
||||
field: string;
|
||||
/**
|
||||
* A description of why the request element is bad.
|
||||
*
|
||||
* @generated from protobuf field: string description = 2;
|
||||
* @generated from protobuf field: string description = 2
|
||||
*/
|
||||
description: string;
|
||||
}
|
||||
@@ -216,14 +216,14 @@ export interface RequestInfo {
|
||||
* An opaque string that should only be interpreted by the service generating
|
||||
* it. For example, it can be used to identify requests in the service's logs.
|
||||
*
|
||||
* @generated from protobuf field: string request_id = 1;
|
||||
* @generated from protobuf field: string request_id = 1
|
||||
*/
|
||||
request_id: string;
|
||||
/**
|
||||
* Any data that was used to serve this request. For example, an encrypted
|
||||
* stack trace that can be sent back to the service provider for debugging.
|
||||
*
|
||||
* @generated from protobuf field: string serving_data = 2;
|
||||
* @generated from protobuf field: string serving_data = 2
|
||||
*/
|
||||
serving_data: string;
|
||||
}
|
||||
@@ -238,7 +238,7 @@ export interface ResourceInfo {
|
||||
* "cloud storage bucket", "file", "Google calendar"; or the type URL
|
||||
* of the resource: e.g. "type.googleapis.com/google.pubsub.v1.Topic".
|
||||
*
|
||||
* @generated from protobuf field: string resource_type = 1;
|
||||
* @generated from protobuf field: string resource_type = 1
|
||||
*/
|
||||
resource_type: string;
|
||||
/**
|
||||
@@ -246,7 +246,7 @@ export interface ResourceInfo {
|
||||
* name: "example.com_4fghdhgsrgh@group.calendar.google.com", if the current
|
||||
* error is [google.rpc.Code.PERMISSION_DENIED][google.rpc.Code.PERMISSION_DENIED].
|
||||
*
|
||||
* @generated from protobuf field: string resource_name = 2;
|
||||
* @generated from protobuf field: string resource_name = 2
|
||||
*/
|
||||
resource_name: string;
|
||||
/**
|
||||
@@ -254,7 +254,7 @@ export interface ResourceInfo {
|
||||
* For example, "user:<owner email>" or "project:<Google developer project
|
||||
* id>".
|
||||
*
|
||||
* @generated from protobuf field: string owner = 3;
|
||||
* @generated from protobuf field: string owner = 3
|
||||
*/
|
||||
owner: string;
|
||||
/**
|
||||
@@ -262,7 +262,7 @@ export interface ResourceInfo {
|
||||
* For example, updating a cloud project may require the `writer` permission
|
||||
* on the developer console project.
|
||||
*
|
||||
* @generated from protobuf field: string description = 4;
|
||||
* @generated from protobuf field: string description = 4
|
||||
*/
|
||||
description: string;
|
||||
}
|
||||
@@ -279,7 +279,7 @@ export interface Help {
|
||||
/**
|
||||
* URL(s) pointing to additional information on handling the current error.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.rpc.Help.Link links = 1;
|
||||
* @generated from protobuf field: repeated google.rpc.Help.Link links = 1
|
||||
*/
|
||||
links: Help_Link[];
|
||||
}
|
||||
@@ -292,13 +292,13 @@ export interface Help_Link {
|
||||
/**
|
||||
* Describes what the link offers.
|
||||
*
|
||||
* @generated from protobuf field: string description = 1;
|
||||
* @generated from protobuf field: string description = 1
|
||||
*/
|
||||
description: string;
|
||||
/**
|
||||
* The URL of the link.
|
||||
*
|
||||
* @generated from protobuf field: string url = 2;
|
||||
* @generated from protobuf field: string url = 2
|
||||
*/
|
||||
url: string;
|
||||
}
|
||||
@@ -314,13 +314,13 @@ export interface LocalizedMessage {
|
||||
* http://www.rfc-editor.org/rfc/bcp/bcp47.txt.
|
||||
* Examples are: "en-US", "fr-CH", "es-MX"
|
||||
*
|
||||
* @generated from protobuf field: string locale = 1;
|
||||
* @generated from protobuf field: string locale = 1
|
||||
*/
|
||||
locale: string;
|
||||
/**
|
||||
* The localized error message in the above locale.
|
||||
*
|
||||
* @generated from protobuf field: string message = 2;
|
||||
* @generated from protobuf field: string message = 2
|
||||
*/
|
||||
message: string;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "google/rpc/status.proto" (package "google.rpc", syntax proto3)
|
||||
// tslint:disable
|
||||
//
|
||||
@@ -86,7 +86,7 @@ export interface Status {
|
||||
/**
|
||||
* The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
|
||||
*
|
||||
* @generated from protobuf field: int32 code = 1;
|
||||
* @generated from protobuf field: int32 code = 1
|
||||
*/
|
||||
code: number;
|
||||
/**
|
||||
@@ -94,14 +94,14 @@ export interface Status {
|
||||
* user-facing error message should be localized and sent in the
|
||||
* [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client.
|
||||
*
|
||||
* @generated from protobuf field: string message = 2;
|
||||
* @generated from protobuf field: string message = 2
|
||||
*/
|
||||
message: string;
|
||||
/**
|
||||
* A list of messages that carry the error details. There is a common set of
|
||||
* message types for APIs to use.
|
||||
*
|
||||
* @generated from protobuf field: repeated google.protobuf.Any details = 3;
|
||||
* @generated from protobuf field: repeated google.protobuf.Any details = 3
|
||||
*/
|
||||
details: Any[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user