You've already forked npm-viz-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[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user