@liquidmetal-ai/drizzle 0.2.9 → 0.2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/liquidmetal/v1alpha1/{resource_interface_pb.d.ts → object_pb.d.ts} +61 -116
- package/dist/liquidmetal/v1alpha1/object_pb.d.ts.map +1 -0
- package/dist/liquidmetal/v1alpha1/object_pb.js +60 -0
- package/package.json +1 -1
- package/src/liquidmetal/v1alpha1/object_pb.ts +312 -0
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/liquidmetal/v1alpha1/resource_interface_pb.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/resource_interface_pb.js +0 -75
- package/src/liquidmetal/v1alpha1/resource_interface_pb.ts +0 -375
package/CHANGELOG.md
CHANGED
|
@@ -2,81 +2,35 @@ import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegen
|
|
|
2
2
|
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
3
3
|
import type { Message } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
5
|
-
* Describes the file liquidmetal/v1alpha1/
|
|
5
|
+
* Describes the file liquidmetal/v1alpha1/object.proto.
|
|
6
6
|
*/
|
|
7
|
-
export declare const
|
|
7
|
+
export declare const file_liquidmetal_v1alpha1_object: GenFile;
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* @generated from message liquidmetal.v1alpha1.SmartBucket
|
|
9
|
+
* @generated from message liquidmetal.v1alpha1.PutObjectRequest
|
|
12
10
|
*/
|
|
13
|
-
export type
|
|
14
|
-
/**
|
|
15
|
-
* id of the record in the catalog SQL database
|
|
16
|
-
*
|
|
17
|
-
* @generated from field: int32 id = 1;
|
|
18
|
-
*/
|
|
19
|
-
id: number;
|
|
20
|
-
/**
|
|
21
|
-
* internal bucket ID i.e the resource ID of the smart bucket
|
|
22
|
-
*
|
|
23
|
-
* @generated from field: string bucket_id = 2;
|
|
24
|
-
*/
|
|
25
|
-
bucketId: string;
|
|
26
|
-
/**
|
|
27
|
-
* user friendly name for the smart bucket
|
|
28
|
-
*
|
|
29
|
-
* @generated from field: string bucket_name = 3;
|
|
30
|
-
*/
|
|
31
|
-
bucketName: string;
|
|
32
|
-
/**
|
|
33
|
-
* the URL that can be called to retrieve an objects metadata from a smart bucket
|
|
34
|
-
*
|
|
35
|
-
* @generated from field: string url = 4;
|
|
36
|
-
*/
|
|
37
|
-
url: string;
|
|
38
|
-
/**
|
|
39
|
-
* the URL that can be called to delete an objects metadata from a smart bucket
|
|
40
|
-
*
|
|
41
|
-
* @generated from field: string delete_url = 5;
|
|
42
|
-
*/
|
|
43
|
-
deleteUrl: string;
|
|
11
|
+
export type PutObjectRequest = Message<"liquidmetal.v1alpha1.PutObjectRequest"> & {
|
|
44
12
|
/**
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
* @generated from field: google.protobuf.Timestamp created_at = 6;
|
|
13
|
+
* @generated from field: string organization_id = 1;
|
|
48
14
|
*/
|
|
49
|
-
|
|
15
|
+
organizationId: string;
|
|
50
16
|
/**
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
* @generated from field: google.protobuf.Timestamp updated_at = 7;
|
|
17
|
+
* @generated from field: string user_id = 2;
|
|
54
18
|
*/
|
|
55
|
-
|
|
56
|
-
};
|
|
57
|
-
/**
|
|
58
|
-
* Describes the message liquidmetal.v1alpha1.SmartBucket.
|
|
59
|
-
* Use `create(SmartBucketSchema)` to create a new message.
|
|
60
|
-
*/
|
|
61
|
-
export declare const SmartBucketSchema: GenMessage<SmartBucket>;
|
|
62
|
-
/**
|
|
63
|
-
* @generated from message liquidmetal.v1alpha1.PutObjectRequest
|
|
64
|
-
*/
|
|
65
|
-
export type PutObjectRequest = Message<"liquidmetal.v1alpha1.PutObjectRequest"> & {
|
|
19
|
+
userId: string;
|
|
66
20
|
/**
|
|
67
|
-
* @generated from field: string bucket =
|
|
21
|
+
* @generated from field: string bucket = 3;
|
|
68
22
|
*/
|
|
69
23
|
bucket: string;
|
|
70
24
|
/**
|
|
71
|
-
* @generated from field: string key =
|
|
25
|
+
* @generated from field: string key = 4;
|
|
72
26
|
*/
|
|
73
27
|
key: string;
|
|
74
28
|
/**
|
|
75
|
-
* @generated from field: bytes content =
|
|
29
|
+
* @generated from field: bytes content = 5;
|
|
76
30
|
*/
|
|
77
31
|
content: Uint8Array;
|
|
78
32
|
/**
|
|
79
|
-
* @generated from field: string content_type =
|
|
33
|
+
* @generated from field: string content_type = 6;
|
|
80
34
|
*/
|
|
81
35
|
contentType: string;
|
|
82
36
|
};
|
|
@@ -112,11 +66,19 @@ export declare const PutObjectResponseSchema: GenMessage<PutObjectResponse>;
|
|
|
112
66
|
*/
|
|
113
67
|
export type GetObjectRequest = Message<"liquidmetal.v1alpha1.GetObjectRequest"> & {
|
|
114
68
|
/**
|
|
115
|
-
* @generated from field: string
|
|
69
|
+
* @generated from field: string organization_id = 1;
|
|
70
|
+
*/
|
|
71
|
+
organizationId: string;
|
|
72
|
+
/**
|
|
73
|
+
* @generated from field: string user_id = 2;
|
|
74
|
+
*/
|
|
75
|
+
userId: string;
|
|
76
|
+
/**
|
|
77
|
+
* @generated from field: string bucket = 3;
|
|
116
78
|
*/
|
|
117
79
|
bucket: string;
|
|
118
80
|
/**
|
|
119
|
-
* @generated from field: string key =
|
|
81
|
+
* @generated from field: string key = 4;
|
|
120
82
|
*/
|
|
121
83
|
key: string;
|
|
122
84
|
};
|
|
@@ -148,11 +110,19 @@ export declare const GetObjectResponseSchema: GenMessage<GetObjectResponse>;
|
|
|
148
110
|
*/
|
|
149
111
|
export type DeleteObjectRequest = Message<"liquidmetal.v1alpha1.DeleteObjectRequest"> & {
|
|
150
112
|
/**
|
|
151
|
-
* @generated from field: string
|
|
113
|
+
* @generated from field: string organization_id = 1;
|
|
114
|
+
*/
|
|
115
|
+
organizationId: string;
|
|
116
|
+
/**
|
|
117
|
+
* @generated from field: string user_id = 2;
|
|
118
|
+
*/
|
|
119
|
+
userId: string;
|
|
120
|
+
/**
|
|
121
|
+
* @generated from field: string bucket = 3;
|
|
152
122
|
*/
|
|
153
123
|
bucket: string;
|
|
154
124
|
/**
|
|
155
|
-
* @generated from field: string key =
|
|
125
|
+
* @generated from field: string key = 4;
|
|
156
126
|
*/
|
|
157
127
|
key: string;
|
|
158
128
|
};
|
|
@@ -175,7 +145,15 @@ export declare const DeleteObjectResponseSchema: GenMessage<DeleteObjectResponse
|
|
|
175
145
|
*/
|
|
176
146
|
export type ListObjectsRequest = Message<"liquidmetal.v1alpha1.ListObjectsRequest"> & {
|
|
177
147
|
/**
|
|
178
|
-
* @generated from field: string
|
|
148
|
+
* @generated from field: string organization_id = 1;
|
|
149
|
+
*/
|
|
150
|
+
organizationId: string;
|
|
151
|
+
/**
|
|
152
|
+
* @generated from field: string user_id = 2;
|
|
153
|
+
*/
|
|
154
|
+
userId: string;
|
|
155
|
+
/**
|
|
156
|
+
* @generated from field: string bucket = 3;
|
|
179
157
|
*/
|
|
180
158
|
bucket: string;
|
|
181
159
|
};
|
|
@@ -185,9 +163,23 @@ export type ListObjectsRequest = Message<"liquidmetal.v1alpha1.ListObjectsReques
|
|
|
185
163
|
*/
|
|
186
164
|
export declare const ListObjectsRequestSchema: GenMessage<ListObjectsRequest>;
|
|
187
165
|
/**
|
|
188
|
-
* @generated from message liquidmetal.v1alpha1.
|
|
166
|
+
* @generated from message liquidmetal.v1alpha1.ListObjectsResponse
|
|
189
167
|
*/
|
|
190
|
-
export type
|
|
168
|
+
export type ListObjectsResponse = Message<"liquidmetal.v1alpha1.ListObjectsResponse"> & {
|
|
169
|
+
/**
|
|
170
|
+
* @generated from field: repeated liquidmetal.v1alpha1.ListObjectsResponse.ObjectInfo objects = 1;
|
|
171
|
+
*/
|
|
172
|
+
objects: ListObjectsResponse_ObjectInfo[];
|
|
173
|
+
};
|
|
174
|
+
/**
|
|
175
|
+
* Describes the message liquidmetal.v1alpha1.ListObjectsResponse.
|
|
176
|
+
* Use `create(ListObjectsResponseSchema)` to create a new message.
|
|
177
|
+
*/
|
|
178
|
+
export declare const ListObjectsResponseSchema: GenMessage<ListObjectsResponse>;
|
|
179
|
+
/**
|
|
180
|
+
* @generated from message liquidmetal.v1alpha1.ListObjectsResponse.ObjectInfo
|
|
181
|
+
*/
|
|
182
|
+
export type ListObjectsResponse_ObjectInfo = Message<"liquidmetal.v1alpha1.ListObjectsResponse.ObjectInfo"> & {
|
|
191
183
|
/**
|
|
192
184
|
* @generated from field: string key = 1;
|
|
193
185
|
*/
|
|
@@ -206,47 +198,10 @@ export type ObjectInfo = Message<"liquidmetal.v1alpha1.ObjectInfo"> & {
|
|
|
206
198
|
lastModified?: Timestamp;
|
|
207
199
|
};
|
|
208
200
|
/**
|
|
209
|
-
* Describes the message liquidmetal.v1alpha1.ObjectInfo.
|
|
210
|
-
* Use `create(
|
|
201
|
+
* Describes the message liquidmetal.v1alpha1.ListObjectsResponse.ObjectInfo.
|
|
202
|
+
* Use `create(ListObjectsResponse_ObjectInfoSchema)` to create a new message.
|
|
211
203
|
*/
|
|
212
|
-
export declare const
|
|
213
|
-
/**
|
|
214
|
-
* @generated from message liquidmetal.v1alpha1.ListObjectsResponse
|
|
215
|
-
*/
|
|
216
|
-
export type ListObjectsResponse = Message<"liquidmetal.v1alpha1.ListObjectsResponse"> & {
|
|
217
|
-
/**
|
|
218
|
-
* @generated from field: repeated liquidmetal.v1alpha1.ObjectInfo objects = 1;
|
|
219
|
-
*/
|
|
220
|
-
objects: ObjectInfo[];
|
|
221
|
-
};
|
|
222
|
-
/**
|
|
223
|
-
* Describes the message liquidmetal.v1alpha1.ListObjectsResponse.
|
|
224
|
-
* Use `create(ListObjectsResponseSchema)` to create a new message.
|
|
225
|
-
*/
|
|
226
|
-
export declare const ListObjectsResponseSchema: GenMessage<ListObjectsResponse>;
|
|
227
|
-
/**
|
|
228
|
-
* @generated from message liquidmetal.v1alpha1.ListSmartBucketsRequest
|
|
229
|
-
*/
|
|
230
|
-
export type ListSmartBucketsRequest = Message<"liquidmetal.v1alpha1.ListSmartBucketsRequest"> & {};
|
|
231
|
-
/**
|
|
232
|
-
* Describes the message liquidmetal.v1alpha1.ListSmartBucketsRequest.
|
|
233
|
-
* Use `create(ListSmartBucketsRequestSchema)` to create a new message.
|
|
234
|
-
*/
|
|
235
|
-
export declare const ListSmartBucketsRequestSchema: GenMessage<ListSmartBucketsRequest>;
|
|
236
|
-
/**
|
|
237
|
-
* @generated from message liquidmetal.v1alpha1.ListSmartBucketsResponse
|
|
238
|
-
*/
|
|
239
|
-
export type ListSmartBucketsResponse = Message<"liquidmetal.v1alpha1.ListSmartBucketsResponse"> & {
|
|
240
|
-
/**
|
|
241
|
-
* @generated from field: repeated liquidmetal.v1alpha1.SmartBucket buckets = 1;
|
|
242
|
-
*/
|
|
243
|
-
buckets: SmartBucket[];
|
|
244
|
-
};
|
|
245
|
-
/**
|
|
246
|
-
* Describes the message liquidmetal.v1alpha1.ListSmartBucketsResponse.
|
|
247
|
-
* Use `create(ListSmartBucketsResponseSchema)` to create a new message.
|
|
248
|
-
*/
|
|
249
|
-
export declare const ListSmartBucketsResponseSchema: GenMessage<ListSmartBucketsResponse>;
|
|
204
|
+
export declare const ListObjectsResponse_ObjectInfoSchema: GenMessage<ListObjectsResponse_ObjectInfo>;
|
|
250
205
|
/**
|
|
251
206
|
* ObjectService handles operations on objects stored in buckets
|
|
252
207
|
*
|
|
@@ -293,15 +248,5 @@ export declare const ObjectService: GenService<{
|
|
|
293
248
|
input: typeof ListObjectsRequestSchema;
|
|
294
249
|
output: typeof ListObjectsResponseSchema;
|
|
295
250
|
};
|
|
296
|
-
/**
|
|
297
|
-
* list all available smart buckets
|
|
298
|
-
*
|
|
299
|
-
* @generated from rpc liquidmetal.v1alpha1.ObjectService.ListSmartBuckets
|
|
300
|
-
*/
|
|
301
|
-
listSmartBuckets: {
|
|
302
|
-
methodKind: "unary";
|
|
303
|
-
input: typeof ListSmartBucketsRequestSchema;
|
|
304
|
-
output: typeof ListSmartBucketsResponseSchema;
|
|
305
|
-
};
|
|
306
251
|
}>;
|
|
307
|
-
//# sourceMappingURL=
|
|
252
|
+
//# sourceMappingURL=object_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"object_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/object_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.5 with parameter "target=ts,import_extension=.js"
|
|
2
|
+
// @generated from file liquidmetal/v1alpha1/object.proto (package liquidmetal.v1alpha1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
6
|
+
/**
|
|
7
|
+
* Describes the file liquidmetal/v1alpha1/object.proto.
|
|
8
|
+
*/
|
|
9
|
+
export const file_liquidmetal_v1alpha1_object = /*@__PURE__*/ fileDesc("CiFsaXF1aWRtZXRhbC92MWFscGhhMS9vYmplY3QucHJvdG8SFGxpcXVpZG1ldGFsLnYxYWxwaGExIoABChBQdXRPYmplY3RSZXF1ZXN0EhcKD29yZ2FuaXphdGlvbl9pZBgBIAEoCRIPCgd1c2VyX2lkGAIgASgJEg4KBmJ1Y2tldBgDIAEoCRILCgNrZXkYBCABKAkSDwoHY29udGVudBgFIAEoDBIUCgxjb250ZW50X3R5cGUYBiABKAkiQQoRUHV0T2JqZWN0UmVzcG9uc2USDwoHc3VjY2VzcxgBIAEoCBIOCgZidWNrZXQYAiABKAkSCwoDa2V5GAMgASgJIlkKEEdldE9iamVjdFJlcXVlc3QSFwoPb3JnYW5pemF0aW9uX2lkGAEgASgJEg8KB3VzZXJfaWQYAiABKAkSDgoGYnVja2V0GAMgASgJEgsKA2tleRgEIAEoCSI6ChFHZXRPYmplY3RSZXNwb25zZRIPCgdjb250ZW50GAEgASgMEhQKDGNvbnRlbnRfdHlwZRgCIAEoCSJcChNEZWxldGVPYmplY3RSZXF1ZXN0EhcKD29yZ2FuaXphdGlvbl9pZBgBIAEoCRIPCgd1c2VyX2lkGAIgASgJEg4KBmJ1Y2tldBgDIAEoCRILCgNrZXkYBCABKAkiFgoURGVsZXRlT2JqZWN0UmVzcG9uc2UiTgoSTGlzdE9iamVjdHNSZXF1ZXN0EhcKD29yZ2FuaXphdGlvbl9pZBgBIAEoCRIPCgd1c2VyX2lkGAIgASgJEg4KBmJ1Y2tldBgDIAEoCSLOAQoTTGlzdE9iamVjdHNSZXNwb25zZRJFCgdvYmplY3RzGAEgAygLMjQubGlxdWlkbWV0YWwudjFhbHBoYTEuTGlzdE9iamVjdHNSZXNwb25zZS5PYmplY3RJbmZvGnAKCk9iamVjdEluZm8SCwoDa2V5GAEgASgJEgwKBHNpemUYAiABKAMSFAoMY29udGVudF90eXBlGAMgASgJEjEKDWxhc3RfbW9kaWZpZWQYBCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wMp4DCg1PYmplY3RTZXJ2aWNlEl4KCVB1dE9iamVjdBImLmxpcXVpZG1ldGFsLnYxYWxwaGExLlB1dE9iamVjdFJlcXVlc3QaJy5saXF1aWRtZXRhbC52MWFscGhhMS5QdXRPYmplY3RSZXNwb25zZSIAEl4KCUdldE9iamVjdBImLmxpcXVpZG1ldGFsLnYxYWxwaGExLkdldE9iamVjdFJlcXVlc3QaJy5saXF1aWRtZXRhbC52MWFscGhhMS5HZXRPYmplY3RSZXNwb25zZSIAEmcKDERlbGV0ZU9iamVjdBIpLmxpcXVpZG1ldGFsLnYxYWxwaGExLkRlbGV0ZU9iamVjdFJlcXVlc3QaKi5saXF1aWRtZXRhbC52MWFscGhhMS5EZWxldGVPYmplY3RSZXNwb25zZSIAEmQKC0xpc3RPYmplY3RzEigubGlxdWlkbWV0YWwudjFhbHBoYTEuTGlzdE9iamVjdHNSZXF1ZXN0GikubGlxdWlkbWV0YWwudjFhbHBoYTEuTGlzdE9iamVjdHNSZXNwb25zZSIAQpgBChhjb20ubGlxdWlkbWV0YWwudjFhbHBoYTFCC09iamVjdFByb3RvUAGiAgNMWFiqAhRMaXF1aWRtZXRhbC5WMWFscGhhMcoCFExpcXVpZG1ldGFsXFYxYWxwaGEx4gIgTGlxdWlkbWV0YWxcVjFhbHBoYTFcR1BCTWV0YWRhdGHqAhVMaXF1aWRtZXRhbDo6VjFhbHBoYTFiBnByb3RvMw", [file_google_protobuf_timestamp]);
|
|
10
|
+
/**
|
|
11
|
+
* Describes the message liquidmetal.v1alpha1.PutObjectRequest.
|
|
12
|
+
* Use `create(PutObjectRequestSchema)` to create a new message.
|
|
13
|
+
*/
|
|
14
|
+
export const PutObjectRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_object, 0);
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message liquidmetal.v1alpha1.PutObjectResponse.
|
|
17
|
+
* Use `create(PutObjectResponseSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
export const PutObjectResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_object, 1);
|
|
20
|
+
/**
|
|
21
|
+
* Describes the message liquidmetal.v1alpha1.GetObjectRequest.
|
|
22
|
+
* Use `create(GetObjectRequestSchema)` to create a new message.
|
|
23
|
+
*/
|
|
24
|
+
export const GetObjectRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_object, 2);
|
|
25
|
+
/**
|
|
26
|
+
* Describes the message liquidmetal.v1alpha1.GetObjectResponse.
|
|
27
|
+
* Use `create(GetObjectResponseSchema)` to create a new message.
|
|
28
|
+
*/
|
|
29
|
+
export const GetObjectResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_object, 3);
|
|
30
|
+
/**
|
|
31
|
+
* Describes the message liquidmetal.v1alpha1.DeleteObjectRequest.
|
|
32
|
+
* Use `create(DeleteObjectRequestSchema)` to create a new message.
|
|
33
|
+
*/
|
|
34
|
+
export const DeleteObjectRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_object, 4);
|
|
35
|
+
/**
|
|
36
|
+
* Describes the message liquidmetal.v1alpha1.DeleteObjectResponse.
|
|
37
|
+
* Use `create(DeleteObjectResponseSchema)` to create a new message.
|
|
38
|
+
*/
|
|
39
|
+
export const DeleteObjectResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_object, 5);
|
|
40
|
+
/**
|
|
41
|
+
* Describes the message liquidmetal.v1alpha1.ListObjectsRequest.
|
|
42
|
+
* Use `create(ListObjectsRequestSchema)` to create a new message.
|
|
43
|
+
*/
|
|
44
|
+
export const ListObjectsRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_object, 6);
|
|
45
|
+
/**
|
|
46
|
+
* Describes the message liquidmetal.v1alpha1.ListObjectsResponse.
|
|
47
|
+
* Use `create(ListObjectsResponseSchema)` to create a new message.
|
|
48
|
+
*/
|
|
49
|
+
export const ListObjectsResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_object, 7);
|
|
50
|
+
/**
|
|
51
|
+
* Describes the message liquidmetal.v1alpha1.ListObjectsResponse.ObjectInfo.
|
|
52
|
+
* Use `create(ListObjectsResponse_ObjectInfoSchema)` to create a new message.
|
|
53
|
+
*/
|
|
54
|
+
export const ListObjectsResponse_ObjectInfoSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_object, 7, 0);
|
|
55
|
+
/**
|
|
56
|
+
* ObjectService handles operations on objects stored in buckets
|
|
57
|
+
*
|
|
58
|
+
* @generated from service liquidmetal.v1alpha1.ObjectService
|
|
59
|
+
*/
|
|
60
|
+
export const ObjectService = /*@__PURE__*/ serviceDesc(file_liquidmetal_v1alpha1_object, 0);
|
package/package.json
CHANGED
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.5 with parameter "target=ts,import_extension=.js"
|
|
2
|
+
// @generated from file liquidmetal/v1alpha1/object.proto (package liquidmetal.v1alpha1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
//
|
|
6
|
+
//This is the interface for the LiquidMetal resource service. It provides RPC methods for directly interacting with resources such as objects, buckets. In the future this will include other resourcs such as SQL, vectorize etc.
|
|
7
|
+
|
|
8
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv1";
|
|
9
|
+
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv1";
|
|
10
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
11
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
12
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Describes the file liquidmetal/v1alpha1/object.proto.
|
|
16
|
+
*/
|
|
17
|
+
export const file_liquidmetal_v1alpha1_object: GenFile = /*@__PURE__*/
|
|
18
|
+
fileDesc("CiFsaXF1aWRtZXRhbC92MWFscGhhMS9vYmplY3QucHJvdG8SFGxpcXVpZG1ldGFsLnYxYWxwaGExIoABChBQdXRPYmplY3RSZXF1ZXN0EhcKD29yZ2FuaXphdGlvbl9pZBgBIAEoCRIPCgd1c2VyX2lkGAIgASgJEg4KBmJ1Y2tldBgDIAEoCRILCgNrZXkYBCABKAkSDwoHY29udGVudBgFIAEoDBIUCgxjb250ZW50X3R5cGUYBiABKAkiQQoRUHV0T2JqZWN0UmVzcG9uc2USDwoHc3VjY2VzcxgBIAEoCBIOCgZidWNrZXQYAiABKAkSCwoDa2V5GAMgASgJIlkKEEdldE9iamVjdFJlcXVlc3QSFwoPb3JnYW5pemF0aW9uX2lkGAEgASgJEg8KB3VzZXJfaWQYAiABKAkSDgoGYnVja2V0GAMgASgJEgsKA2tleRgEIAEoCSI6ChFHZXRPYmplY3RSZXNwb25zZRIPCgdjb250ZW50GAEgASgMEhQKDGNvbnRlbnRfdHlwZRgCIAEoCSJcChNEZWxldGVPYmplY3RSZXF1ZXN0EhcKD29yZ2FuaXphdGlvbl9pZBgBIAEoCRIPCgd1c2VyX2lkGAIgASgJEg4KBmJ1Y2tldBgDIAEoCRILCgNrZXkYBCABKAkiFgoURGVsZXRlT2JqZWN0UmVzcG9uc2UiTgoSTGlzdE9iamVjdHNSZXF1ZXN0EhcKD29yZ2FuaXphdGlvbl9pZBgBIAEoCRIPCgd1c2VyX2lkGAIgASgJEg4KBmJ1Y2tldBgDIAEoCSLOAQoTTGlzdE9iamVjdHNSZXNwb25zZRJFCgdvYmplY3RzGAEgAygLMjQubGlxdWlkbWV0YWwudjFhbHBoYTEuTGlzdE9iamVjdHNSZXNwb25zZS5PYmplY3RJbmZvGnAKCk9iamVjdEluZm8SCwoDa2V5GAEgASgJEgwKBHNpemUYAiABKAMSFAoMY29udGVudF90eXBlGAMgASgJEjEKDWxhc3RfbW9kaWZpZWQYBCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wMp4DCg1PYmplY3RTZXJ2aWNlEl4KCVB1dE9iamVjdBImLmxpcXVpZG1ldGFsLnYxYWxwaGExLlB1dE9iamVjdFJlcXVlc3QaJy5saXF1aWRtZXRhbC52MWFscGhhMS5QdXRPYmplY3RSZXNwb25zZSIAEl4KCUdldE9iamVjdBImLmxpcXVpZG1ldGFsLnYxYWxwaGExLkdldE9iamVjdFJlcXVlc3QaJy5saXF1aWRtZXRhbC52MWFscGhhMS5HZXRPYmplY3RSZXNwb25zZSIAEmcKDERlbGV0ZU9iamVjdBIpLmxpcXVpZG1ldGFsLnYxYWxwaGExLkRlbGV0ZU9iamVjdFJlcXVlc3QaKi5saXF1aWRtZXRhbC52MWFscGhhMS5EZWxldGVPYmplY3RSZXNwb25zZSIAEmQKC0xpc3RPYmplY3RzEigubGlxdWlkbWV0YWwudjFhbHBoYTEuTGlzdE9iamVjdHNSZXF1ZXN0GikubGlxdWlkbWV0YWwudjFhbHBoYTEuTGlzdE9iamVjdHNSZXNwb25zZSIAQpgBChhjb20ubGlxdWlkbWV0YWwudjFhbHBoYTFCC09iamVjdFByb3RvUAGiAgNMWFiqAhRMaXF1aWRtZXRhbC5WMWFscGhhMcoCFExpcXVpZG1ldGFsXFYxYWxwaGEx4gIgTGlxdWlkbWV0YWxcVjFhbHBoYTFcR1BCTWV0YWRhdGHqAhVMaXF1aWRtZXRhbDo6VjFhbHBoYTFiBnByb3RvMw", [file_google_protobuf_timestamp]);
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @generated from message liquidmetal.v1alpha1.PutObjectRequest
|
|
22
|
+
*/
|
|
23
|
+
export type PutObjectRequest = Message<"liquidmetal.v1alpha1.PutObjectRequest"> & {
|
|
24
|
+
/**
|
|
25
|
+
* @generated from field: string organization_id = 1;
|
|
26
|
+
*/
|
|
27
|
+
organizationId: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @generated from field: string user_id = 2;
|
|
31
|
+
*/
|
|
32
|
+
userId: string;
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* @generated from field: string bucket = 3;
|
|
36
|
+
*/
|
|
37
|
+
bucket: string;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* @generated from field: string key = 4;
|
|
41
|
+
*/
|
|
42
|
+
key: string;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* @generated from field: bytes content = 5;
|
|
46
|
+
*/
|
|
47
|
+
content: Uint8Array;
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* @generated from field: string content_type = 6;
|
|
51
|
+
*/
|
|
52
|
+
contentType: string;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Describes the message liquidmetal.v1alpha1.PutObjectRequest.
|
|
57
|
+
* Use `create(PutObjectRequestSchema)` to create a new message.
|
|
58
|
+
*/
|
|
59
|
+
export const PutObjectRequestSchema: GenMessage<PutObjectRequest> = /*@__PURE__*/
|
|
60
|
+
messageDesc(file_liquidmetal_v1alpha1_object, 0);
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* @generated from message liquidmetal.v1alpha1.PutObjectResponse
|
|
64
|
+
*/
|
|
65
|
+
export type PutObjectResponse = Message<"liquidmetal.v1alpha1.PutObjectResponse"> & {
|
|
66
|
+
/**
|
|
67
|
+
* @generated from field: bool success = 1;
|
|
68
|
+
*/
|
|
69
|
+
success: boolean;
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* @generated from field: string bucket = 2;
|
|
73
|
+
*/
|
|
74
|
+
bucket: string;
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* @generated from field: string key = 3;
|
|
78
|
+
*/
|
|
79
|
+
key: string;
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Describes the message liquidmetal.v1alpha1.PutObjectResponse.
|
|
84
|
+
* Use `create(PutObjectResponseSchema)` to create a new message.
|
|
85
|
+
*/
|
|
86
|
+
export const PutObjectResponseSchema: GenMessage<PutObjectResponse> = /*@__PURE__*/
|
|
87
|
+
messageDesc(file_liquidmetal_v1alpha1_object, 1);
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* @generated from message liquidmetal.v1alpha1.GetObjectRequest
|
|
91
|
+
*/
|
|
92
|
+
export type GetObjectRequest = Message<"liquidmetal.v1alpha1.GetObjectRequest"> & {
|
|
93
|
+
/**
|
|
94
|
+
* @generated from field: string organization_id = 1;
|
|
95
|
+
*/
|
|
96
|
+
organizationId: string;
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* @generated from field: string user_id = 2;
|
|
100
|
+
*/
|
|
101
|
+
userId: string;
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* @generated from field: string bucket = 3;
|
|
105
|
+
*/
|
|
106
|
+
bucket: string;
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* @generated from field: string key = 4;
|
|
110
|
+
*/
|
|
111
|
+
key: string;
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Describes the message liquidmetal.v1alpha1.GetObjectRequest.
|
|
116
|
+
* Use `create(GetObjectRequestSchema)` to create a new message.
|
|
117
|
+
*/
|
|
118
|
+
export const GetObjectRequestSchema: GenMessage<GetObjectRequest> = /*@__PURE__*/
|
|
119
|
+
messageDesc(file_liquidmetal_v1alpha1_object, 2);
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* @generated from message liquidmetal.v1alpha1.GetObjectResponse
|
|
123
|
+
*/
|
|
124
|
+
export type GetObjectResponse = Message<"liquidmetal.v1alpha1.GetObjectResponse"> & {
|
|
125
|
+
/**
|
|
126
|
+
* @generated from field: bytes content = 1;
|
|
127
|
+
*/
|
|
128
|
+
content: Uint8Array;
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* @generated from field: string content_type = 2;
|
|
132
|
+
*/
|
|
133
|
+
contentType: string;
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* Describes the message liquidmetal.v1alpha1.GetObjectResponse.
|
|
138
|
+
* Use `create(GetObjectResponseSchema)` to create a new message.
|
|
139
|
+
*/
|
|
140
|
+
export const GetObjectResponseSchema: GenMessage<GetObjectResponse> = /*@__PURE__*/
|
|
141
|
+
messageDesc(file_liquidmetal_v1alpha1_object, 3);
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* @generated from message liquidmetal.v1alpha1.DeleteObjectRequest
|
|
145
|
+
*/
|
|
146
|
+
export type DeleteObjectRequest = Message<"liquidmetal.v1alpha1.DeleteObjectRequest"> & {
|
|
147
|
+
/**
|
|
148
|
+
* @generated from field: string organization_id = 1;
|
|
149
|
+
*/
|
|
150
|
+
organizationId: string;
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* @generated from field: string user_id = 2;
|
|
154
|
+
*/
|
|
155
|
+
userId: string;
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* @generated from field: string bucket = 3;
|
|
159
|
+
*/
|
|
160
|
+
bucket: string;
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* @generated from field: string key = 4;
|
|
164
|
+
*/
|
|
165
|
+
key: string;
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* Describes the message liquidmetal.v1alpha1.DeleteObjectRequest.
|
|
170
|
+
* Use `create(DeleteObjectRequestSchema)` to create a new message.
|
|
171
|
+
*/
|
|
172
|
+
export const DeleteObjectRequestSchema: GenMessage<DeleteObjectRequest> = /*@__PURE__*/
|
|
173
|
+
messageDesc(file_liquidmetal_v1alpha1_object, 4);
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* @generated from message liquidmetal.v1alpha1.DeleteObjectResponse
|
|
177
|
+
*/
|
|
178
|
+
export type DeleteObjectResponse = Message<"liquidmetal.v1alpha1.DeleteObjectResponse"> & {
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* Describes the message liquidmetal.v1alpha1.DeleteObjectResponse.
|
|
183
|
+
* Use `create(DeleteObjectResponseSchema)` to create a new message.
|
|
184
|
+
*/
|
|
185
|
+
export const DeleteObjectResponseSchema: GenMessage<DeleteObjectResponse> = /*@__PURE__*/
|
|
186
|
+
messageDesc(file_liquidmetal_v1alpha1_object, 5);
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* @generated from message liquidmetal.v1alpha1.ListObjectsRequest
|
|
190
|
+
*/
|
|
191
|
+
export type ListObjectsRequest = Message<"liquidmetal.v1alpha1.ListObjectsRequest"> & {
|
|
192
|
+
/**
|
|
193
|
+
* @generated from field: string organization_id = 1;
|
|
194
|
+
*/
|
|
195
|
+
organizationId: string;
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* @generated from field: string user_id = 2;
|
|
199
|
+
*/
|
|
200
|
+
userId: string;
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* @generated from field: string bucket = 3;
|
|
204
|
+
*/
|
|
205
|
+
bucket: string;
|
|
206
|
+
};
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* Describes the message liquidmetal.v1alpha1.ListObjectsRequest.
|
|
210
|
+
* Use `create(ListObjectsRequestSchema)` to create a new message.
|
|
211
|
+
*/
|
|
212
|
+
export const ListObjectsRequestSchema: GenMessage<ListObjectsRequest> = /*@__PURE__*/
|
|
213
|
+
messageDesc(file_liquidmetal_v1alpha1_object, 6);
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* @generated from message liquidmetal.v1alpha1.ListObjectsResponse
|
|
217
|
+
*/
|
|
218
|
+
export type ListObjectsResponse = Message<"liquidmetal.v1alpha1.ListObjectsResponse"> & {
|
|
219
|
+
/**
|
|
220
|
+
* @generated from field: repeated liquidmetal.v1alpha1.ListObjectsResponse.ObjectInfo objects = 1;
|
|
221
|
+
*/
|
|
222
|
+
objects: ListObjectsResponse_ObjectInfo[];
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* Describes the message liquidmetal.v1alpha1.ListObjectsResponse.
|
|
227
|
+
* Use `create(ListObjectsResponseSchema)` to create a new message.
|
|
228
|
+
*/
|
|
229
|
+
export const ListObjectsResponseSchema: GenMessage<ListObjectsResponse> = /*@__PURE__*/
|
|
230
|
+
messageDesc(file_liquidmetal_v1alpha1_object, 7);
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* @generated from message liquidmetal.v1alpha1.ListObjectsResponse.ObjectInfo
|
|
234
|
+
*/
|
|
235
|
+
export type ListObjectsResponse_ObjectInfo = Message<"liquidmetal.v1alpha1.ListObjectsResponse.ObjectInfo"> & {
|
|
236
|
+
/**
|
|
237
|
+
* @generated from field: string key = 1;
|
|
238
|
+
*/
|
|
239
|
+
key: string;
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* @generated from field: int64 size = 2;
|
|
243
|
+
*/
|
|
244
|
+
size: bigint;
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* @generated from field: string content_type = 3;
|
|
248
|
+
*/
|
|
249
|
+
contentType: string;
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* @generated from field: google.protobuf.Timestamp last_modified = 4;
|
|
253
|
+
*/
|
|
254
|
+
lastModified?: Timestamp;
|
|
255
|
+
};
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* Describes the message liquidmetal.v1alpha1.ListObjectsResponse.ObjectInfo.
|
|
259
|
+
* Use `create(ListObjectsResponse_ObjectInfoSchema)` to create a new message.
|
|
260
|
+
*/
|
|
261
|
+
export const ListObjectsResponse_ObjectInfoSchema: GenMessage<ListObjectsResponse_ObjectInfo> = /*@__PURE__*/
|
|
262
|
+
messageDesc(file_liquidmetal_v1alpha1_object, 7, 0);
|
|
263
|
+
|
|
264
|
+
/**
|
|
265
|
+
* ObjectService handles operations on objects stored in buckets
|
|
266
|
+
*
|
|
267
|
+
* @generated from service liquidmetal.v1alpha1.ObjectService
|
|
268
|
+
*/
|
|
269
|
+
export const ObjectService: GenService<{
|
|
270
|
+
/**
|
|
271
|
+
* PutObject uploads an object to a bucket
|
|
272
|
+
*
|
|
273
|
+
* @generated from rpc liquidmetal.v1alpha1.ObjectService.PutObject
|
|
274
|
+
*/
|
|
275
|
+
putObject: {
|
|
276
|
+
methodKind: "unary";
|
|
277
|
+
input: typeof PutObjectRequestSchema;
|
|
278
|
+
output: typeof PutObjectResponseSchema;
|
|
279
|
+
},
|
|
280
|
+
/**
|
|
281
|
+
* GetObject retrieves an object from a bucket
|
|
282
|
+
*
|
|
283
|
+
* @generated from rpc liquidmetal.v1alpha1.ObjectService.GetObject
|
|
284
|
+
*/
|
|
285
|
+
getObject: {
|
|
286
|
+
methodKind: "unary";
|
|
287
|
+
input: typeof GetObjectRequestSchema;
|
|
288
|
+
output: typeof GetObjectResponseSchema;
|
|
289
|
+
},
|
|
290
|
+
/**
|
|
291
|
+
* DeleteObject removes an object from a bucket
|
|
292
|
+
*
|
|
293
|
+
* @generated from rpc liquidmetal.v1alpha1.ObjectService.DeleteObject
|
|
294
|
+
*/
|
|
295
|
+
deleteObject: {
|
|
296
|
+
methodKind: "unary";
|
|
297
|
+
input: typeof DeleteObjectRequestSchema;
|
|
298
|
+
output: typeof DeleteObjectResponseSchema;
|
|
299
|
+
},
|
|
300
|
+
/**
|
|
301
|
+
* ListObjects lists all objects in a bucket
|
|
302
|
+
*
|
|
303
|
+
* @generated from rpc liquidmetal.v1alpha1.ObjectService.ListObjects
|
|
304
|
+
*/
|
|
305
|
+
listObjects: {
|
|
306
|
+
methodKind: "unary";
|
|
307
|
+
input: typeof ListObjectsRequestSchema;
|
|
308
|
+
output: typeof ListObjectsResponseSchema;
|
|
309
|
+
},
|
|
310
|
+
}> = /*@__PURE__*/
|
|
311
|
+
serviceDesc(file_liquidmetal_v1alpha1_object, 0);
|
|
312
|
+
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/codestore.test.ts","./src/codestore.ts","./src/logging.test.ts","./src/logging.ts","./src/appify/build.test.ts","./src/appify/build.ts","./src/appify/index.test.ts","./src/appify/index.ts","./src/appify/parse.test.ts","./src/appify/parse.ts","./src/appify/validate.test.ts","./src/appify/validate.ts","./src/liquidmetal/v1alpha1/catalog_pb.ts","./src/liquidmetal/v1alpha1/
|
|
1
|
+
{"root":["./src/codestore.test.ts","./src/codestore.ts","./src/logging.test.ts","./src/logging.ts","./src/appify/build.test.ts","./src/appify/build.ts","./src/appify/index.test.ts","./src/appify/index.ts","./src/appify/parse.test.ts","./src/appify/parse.ts","./src/appify/validate.test.ts","./src/appify/validate.ts","./src/liquidmetal/v1alpha1/catalog_pb.ts","./src/liquidmetal/v1alpha1/object_pb.ts","./src/liquidmetal/v1alpha1/rainbow_auth_pb.ts","./src/liquidmetal/v1alpha1/raindrop_pb.ts","./src/liquidmetal/v1alpha1/search_agent_pb.ts","./src/raindrop/index.test.ts","./src/raindrop/index.ts","./src/unsafe/codestore.test.ts","./src/unsafe/codestore.ts","./src/unsafe/framework.test.ts","./src/unsafe/framework.ts"],"version":"5.8.2"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"resource_interface_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/resource_interface_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
// @generated by protoc-gen-es v2.2.5 with parameter "target=ts,import_extension=.js"
|
|
2
|
-
// @generated from file liquidmetal/v1alpha1/resource_interface.proto (package liquidmetal.v1alpha1, syntax proto3)
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
-
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
6
|
-
/**
|
|
7
|
-
* Describes the file liquidmetal/v1alpha1/resource_interface.proto.
|
|
8
|
-
*/
|
|
9
|
-
export const file_liquidmetal_v1alpha1_resource_interface = /*@__PURE__*/ fileDesc("Ci1saXF1aWRtZXRhbC92MWFscGhhMS9yZXNvdXJjZV9pbnRlcmZhY2UucHJvdG8SFGxpcXVpZG1ldGFsLnYxYWxwaGExIsIBCgtTbWFydEJ1Y2tldBIKCgJpZBgBIAEoBRIRCglidWNrZXRfaWQYAiABKAkSEwoLYnVja2V0X25hbWUYAyABKAkSCwoDdXJsGAQgASgJEhIKCmRlbGV0ZV91cmwYBSABKAkSLgoKY3JlYXRlZF9hdBgGIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLgoKdXBkYXRlZF9hdBgHIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiVgoQUHV0T2JqZWN0UmVxdWVzdBIOCgZidWNrZXQYASABKAkSCwoDa2V5GAIgASgJEg8KB2NvbnRlbnQYAyABKAwSFAoMY29udGVudF90eXBlGAQgASgJIkEKEVB1dE9iamVjdFJlc3BvbnNlEg8KB3N1Y2Nlc3MYASABKAgSDgoGYnVja2V0GAIgASgJEgsKA2tleRgDIAEoCSIvChBHZXRPYmplY3RSZXF1ZXN0Eg4KBmJ1Y2tldBgBIAEoCRILCgNrZXkYAiABKAkiOgoRR2V0T2JqZWN0UmVzcG9uc2USDwoHY29udGVudBgBIAEoDBIUCgxjb250ZW50X3R5cGUYAiABKAkiMgoTRGVsZXRlT2JqZWN0UmVxdWVzdBIOCgZidWNrZXQYASABKAkSCwoDa2V5GAIgASgJIhYKFERlbGV0ZU9iamVjdFJlc3BvbnNlIiQKEkxpc3RPYmplY3RzUmVxdWVzdBIOCgZidWNrZXQYASABKAkicAoKT2JqZWN0SW5mbxILCgNrZXkYASABKAkSDAoEc2l6ZRgCIAEoAxIUCgxjb250ZW50X3R5cGUYAyABKAkSMQoNbGFzdF9tb2RpZmllZBgEIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiSAoTTGlzdE9iamVjdHNSZXNwb25zZRIxCgdvYmplY3RzGAEgAygLMiAubGlxdWlkbWV0YWwudjFhbHBoYTEuT2JqZWN0SW5mbyIZChdMaXN0U21hcnRCdWNrZXRzUmVxdWVzdCJOChhMaXN0U21hcnRCdWNrZXRzUmVzcG9uc2USMgoHYnVja2V0cxgBIAMoCzIhLmxpcXVpZG1ldGFsLnYxYWxwaGExLlNtYXJ0QnVja2V0MpMECg1PYmplY3RTZXJ2aWNlEl4KCVB1dE9iamVjdBImLmxpcXVpZG1ldGFsLnYxYWxwaGExLlB1dE9iamVjdFJlcXVlc3QaJy5saXF1aWRtZXRhbC52MWFscGhhMS5QdXRPYmplY3RSZXNwb25zZSIAEl4KCUdldE9iamVjdBImLmxpcXVpZG1ldGFsLnYxYWxwaGExLkdldE9iamVjdFJlcXVlc3QaJy5saXF1aWRtZXRhbC52MWFscGhhMS5HZXRPYmplY3RSZXNwb25zZSIAEmcKDERlbGV0ZU9iamVjdBIpLmxpcXVpZG1ldGFsLnYxYWxwaGExLkRlbGV0ZU9iamVjdFJlcXVlc3QaKi5saXF1aWRtZXRhbC52MWFscGhhMS5EZWxldGVPYmplY3RSZXNwb25zZSIAEmQKC0xpc3RPYmplY3RzEigubGlxdWlkbWV0YWwudjFhbHBoYTEuTGlzdE9iamVjdHNSZXF1ZXN0GikubGlxdWlkbWV0YWwudjFhbHBoYTEuTGlzdE9iamVjdHNSZXNwb25zZSIAEnMKEExpc3RTbWFydEJ1Y2tldHMSLS5saXF1aWRtZXRhbC52MWFscGhhMS5MaXN0U21hcnRCdWNrZXRzUmVxdWVzdBouLmxpcXVpZG1ldGFsLnYxYWxwaGExLkxpc3RTbWFydEJ1Y2tldHNSZXNwb25zZSIAQqMBChhjb20ubGlxdWlkbWV0YWwudjFhbHBoYTFCFlJlc291cmNlSW50ZXJmYWNlUHJvdG9QAaICA0xYWKoCFExpcXVpZG1ldGFsLlYxYWxwaGExygIUTGlxdWlkbWV0YWxcVjFhbHBoYTHiAiBMaXF1aWRtZXRhbFxWMWFscGhhMVxHUEJNZXRhZGF0YeoCFUxpcXVpZG1ldGFsOjpWMWFscGhhMWIGcHJvdG8z", [file_google_protobuf_timestamp]);
|
|
10
|
-
/**
|
|
11
|
-
* Describes the message liquidmetal.v1alpha1.SmartBucket.
|
|
12
|
-
* Use `create(SmartBucketSchema)` to create a new message.
|
|
13
|
-
*/
|
|
14
|
-
export const SmartBucketSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_resource_interface, 0);
|
|
15
|
-
/**
|
|
16
|
-
* Describes the message liquidmetal.v1alpha1.PutObjectRequest.
|
|
17
|
-
* Use `create(PutObjectRequestSchema)` to create a new message.
|
|
18
|
-
*/
|
|
19
|
-
export const PutObjectRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_resource_interface, 1);
|
|
20
|
-
/**
|
|
21
|
-
* Describes the message liquidmetal.v1alpha1.PutObjectResponse.
|
|
22
|
-
* Use `create(PutObjectResponseSchema)` to create a new message.
|
|
23
|
-
*/
|
|
24
|
-
export const PutObjectResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_resource_interface, 2);
|
|
25
|
-
/**
|
|
26
|
-
* Describes the message liquidmetal.v1alpha1.GetObjectRequest.
|
|
27
|
-
* Use `create(GetObjectRequestSchema)` to create a new message.
|
|
28
|
-
*/
|
|
29
|
-
export const GetObjectRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_resource_interface, 3);
|
|
30
|
-
/**
|
|
31
|
-
* Describes the message liquidmetal.v1alpha1.GetObjectResponse.
|
|
32
|
-
* Use `create(GetObjectResponseSchema)` to create a new message.
|
|
33
|
-
*/
|
|
34
|
-
export const GetObjectResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_resource_interface, 4);
|
|
35
|
-
/**
|
|
36
|
-
* Describes the message liquidmetal.v1alpha1.DeleteObjectRequest.
|
|
37
|
-
* Use `create(DeleteObjectRequestSchema)` to create a new message.
|
|
38
|
-
*/
|
|
39
|
-
export const DeleteObjectRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_resource_interface, 5);
|
|
40
|
-
/**
|
|
41
|
-
* Describes the message liquidmetal.v1alpha1.DeleteObjectResponse.
|
|
42
|
-
* Use `create(DeleteObjectResponseSchema)` to create a new message.
|
|
43
|
-
*/
|
|
44
|
-
export const DeleteObjectResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_resource_interface, 6);
|
|
45
|
-
/**
|
|
46
|
-
* Describes the message liquidmetal.v1alpha1.ListObjectsRequest.
|
|
47
|
-
* Use `create(ListObjectsRequestSchema)` to create a new message.
|
|
48
|
-
*/
|
|
49
|
-
export const ListObjectsRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_resource_interface, 7);
|
|
50
|
-
/**
|
|
51
|
-
* Describes the message liquidmetal.v1alpha1.ObjectInfo.
|
|
52
|
-
* Use `create(ObjectInfoSchema)` to create a new message.
|
|
53
|
-
*/
|
|
54
|
-
export const ObjectInfoSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_resource_interface, 8);
|
|
55
|
-
/**
|
|
56
|
-
* Describes the message liquidmetal.v1alpha1.ListObjectsResponse.
|
|
57
|
-
* Use `create(ListObjectsResponseSchema)` to create a new message.
|
|
58
|
-
*/
|
|
59
|
-
export const ListObjectsResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_resource_interface, 9);
|
|
60
|
-
/**
|
|
61
|
-
* Describes the message liquidmetal.v1alpha1.ListSmartBucketsRequest.
|
|
62
|
-
* Use `create(ListSmartBucketsRequestSchema)` to create a new message.
|
|
63
|
-
*/
|
|
64
|
-
export const ListSmartBucketsRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_resource_interface, 10);
|
|
65
|
-
/**
|
|
66
|
-
* Describes the message liquidmetal.v1alpha1.ListSmartBucketsResponse.
|
|
67
|
-
* Use `create(ListSmartBucketsResponseSchema)` to create a new message.
|
|
68
|
-
*/
|
|
69
|
-
export const ListSmartBucketsResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_resource_interface, 11);
|
|
70
|
-
/**
|
|
71
|
-
* ObjectService handles operations on objects stored in buckets
|
|
72
|
-
*
|
|
73
|
-
* @generated from service liquidmetal.v1alpha1.ObjectService
|
|
74
|
-
*/
|
|
75
|
-
export const ObjectService = /*@__PURE__*/ serviceDesc(file_liquidmetal_v1alpha1_resource_interface, 0);
|
|
@@ -1,375 +0,0 @@
|
|
|
1
|
-
// @generated by protoc-gen-es v2.2.5 with parameter "target=ts,import_extension=.js"
|
|
2
|
-
// @generated from file liquidmetal/v1alpha1/resource_interface.proto (package liquidmetal.v1alpha1, syntax proto3)
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
//
|
|
6
|
-
//This is the interface for the LiquidMetal resource service. It provides RPC methods for directly interacting with resources such as objects, buckets. In the future this will include other resourcs such as SQL, vectorrize etc.
|
|
7
|
-
|
|
8
|
-
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv1";
|
|
9
|
-
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv1";
|
|
10
|
-
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
11
|
-
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
12
|
-
import type { Message } from "@bufbuild/protobuf";
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* Describes the file liquidmetal/v1alpha1/resource_interface.proto.
|
|
16
|
-
*/
|
|
17
|
-
export const file_liquidmetal_v1alpha1_resource_interface: GenFile = /*@__PURE__*/
|
|
18
|
-
fileDesc("Ci1saXF1aWRtZXRhbC92MWFscGhhMS9yZXNvdXJjZV9pbnRlcmZhY2UucHJvdG8SFGxpcXVpZG1ldGFsLnYxYWxwaGExIsIBCgtTbWFydEJ1Y2tldBIKCgJpZBgBIAEoBRIRCglidWNrZXRfaWQYAiABKAkSEwoLYnVja2V0X25hbWUYAyABKAkSCwoDdXJsGAQgASgJEhIKCmRlbGV0ZV91cmwYBSABKAkSLgoKY3JlYXRlZF9hdBgGIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLgoKdXBkYXRlZF9hdBgHIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiVgoQUHV0T2JqZWN0UmVxdWVzdBIOCgZidWNrZXQYASABKAkSCwoDa2V5GAIgASgJEg8KB2NvbnRlbnQYAyABKAwSFAoMY29udGVudF90eXBlGAQgASgJIkEKEVB1dE9iamVjdFJlc3BvbnNlEg8KB3N1Y2Nlc3MYASABKAgSDgoGYnVja2V0GAIgASgJEgsKA2tleRgDIAEoCSIvChBHZXRPYmplY3RSZXF1ZXN0Eg4KBmJ1Y2tldBgBIAEoCRILCgNrZXkYAiABKAkiOgoRR2V0T2JqZWN0UmVzcG9uc2USDwoHY29udGVudBgBIAEoDBIUCgxjb250ZW50X3R5cGUYAiABKAkiMgoTRGVsZXRlT2JqZWN0UmVxdWVzdBIOCgZidWNrZXQYASABKAkSCwoDa2V5GAIgASgJIhYKFERlbGV0ZU9iamVjdFJlc3BvbnNlIiQKEkxpc3RPYmplY3RzUmVxdWVzdBIOCgZidWNrZXQYASABKAkicAoKT2JqZWN0SW5mbxILCgNrZXkYASABKAkSDAoEc2l6ZRgCIAEoAxIUCgxjb250ZW50X3R5cGUYAyABKAkSMQoNbGFzdF9tb2RpZmllZBgEIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiSAoTTGlzdE9iamVjdHNSZXNwb25zZRIxCgdvYmplY3RzGAEgAygLMiAubGlxdWlkbWV0YWwudjFhbHBoYTEuT2JqZWN0SW5mbyIZChdMaXN0U21hcnRCdWNrZXRzUmVxdWVzdCJOChhMaXN0U21hcnRCdWNrZXRzUmVzcG9uc2USMgoHYnVja2V0cxgBIAMoCzIhLmxpcXVpZG1ldGFsLnYxYWxwaGExLlNtYXJ0QnVja2V0MpMECg1PYmplY3RTZXJ2aWNlEl4KCVB1dE9iamVjdBImLmxpcXVpZG1ldGFsLnYxYWxwaGExLlB1dE9iamVjdFJlcXVlc3QaJy5saXF1aWRtZXRhbC52MWFscGhhMS5QdXRPYmplY3RSZXNwb25zZSIAEl4KCUdldE9iamVjdBImLmxpcXVpZG1ldGFsLnYxYWxwaGExLkdldE9iamVjdFJlcXVlc3QaJy5saXF1aWRtZXRhbC52MWFscGhhMS5HZXRPYmplY3RSZXNwb25zZSIAEmcKDERlbGV0ZU9iamVjdBIpLmxpcXVpZG1ldGFsLnYxYWxwaGExLkRlbGV0ZU9iamVjdFJlcXVlc3QaKi5saXF1aWRtZXRhbC52MWFscGhhMS5EZWxldGVPYmplY3RSZXNwb25zZSIAEmQKC0xpc3RPYmplY3RzEigubGlxdWlkbWV0YWwudjFhbHBoYTEuTGlzdE9iamVjdHNSZXF1ZXN0GikubGlxdWlkbWV0YWwudjFhbHBoYTEuTGlzdE9iamVjdHNSZXNwb25zZSIAEnMKEExpc3RTbWFydEJ1Y2tldHMSLS5saXF1aWRtZXRhbC52MWFscGhhMS5MaXN0U21hcnRCdWNrZXRzUmVxdWVzdBouLmxpcXVpZG1ldGFsLnYxYWxwaGExLkxpc3RTbWFydEJ1Y2tldHNSZXNwb25zZSIAQqMBChhjb20ubGlxdWlkbWV0YWwudjFhbHBoYTFCFlJlc291cmNlSW50ZXJmYWNlUHJvdG9QAaICA0xYWKoCFExpcXVpZG1ldGFsLlYxYWxwaGExygIUTGlxdWlkbWV0YWxcVjFhbHBoYTHiAiBMaXF1aWRtZXRhbFxWMWFscGhhMVxHUEJNZXRhZGF0YeoCFUxpcXVpZG1ldGFsOjpWMWFscGhhMWIGcHJvdG8z", [file_google_protobuf_timestamp]);
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* Smartbucket details as stored in the catalog SQL database
|
|
22
|
-
*
|
|
23
|
-
* @generated from message liquidmetal.v1alpha1.SmartBucket
|
|
24
|
-
*/
|
|
25
|
-
export type SmartBucket = Message<"liquidmetal.v1alpha1.SmartBucket"> & {
|
|
26
|
-
/**
|
|
27
|
-
* id of the record in the catalog SQL database
|
|
28
|
-
*
|
|
29
|
-
* @generated from field: int32 id = 1;
|
|
30
|
-
*/
|
|
31
|
-
id: number;
|
|
32
|
-
|
|
33
|
-
/**
|
|
34
|
-
* internal bucket ID i.e the resource ID of the smart bucket
|
|
35
|
-
*
|
|
36
|
-
* @generated from field: string bucket_id = 2;
|
|
37
|
-
*/
|
|
38
|
-
bucketId: string;
|
|
39
|
-
|
|
40
|
-
/**
|
|
41
|
-
* user friendly name for the smart bucket
|
|
42
|
-
*
|
|
43
|
-
* @generated from field: string bucket_name = 3;
|
|
44
|
-
*/
|
|
45
|
-
bucketName: string;
|
|
46
|
-
|
|
47
|
-
/**
|
|
48
|
-
* the URL that can be called to retrieve an objects metadata from a smart bucket
|
|
49
|
-
*
|
|
50
|
-
* @generated from field: string url = 4;
|
|
51
|
-
*/
|
|
52
|
-
url: string;
|
|
53
|
-
|
|
54
|
-
/**
|
|
55
|
-
* the URL that can be called to delete an objects metadata from a smart bucket
|
|
56
|
-
*
|
|
57
|
-
* @generated from field: string delete_url = 5;
|
|
58
|
-
*/
|
|
59
|
-
deleteUrl: string;
|
|
60
|
-
|
|
61
|
-
/**
|
|
62
|
-
* the date and time the smart bucket was registered in the catalog
|
|
63
|
-
*
|
|
64
|
-
* @generated from field: google.protobuf.Timestamp created_at = 6;
|
|
65
|
-
*/
|
|
66
|
-
createdAt?: Timestamp;
|
|
67
|
-
|
|
68
|
-
/**
|
|
69
|
-
* the date and time the smart bucket was last updated
|
|
70
|
-
*
|
|
71
|
-
* @generated from field: google.protobuf.Timestamp updated_at = 7;
|
|
72
|
-
*/
|
|
73
|
-
updatedAt?: Timestamp;
|
|
74
|
-
};
|
|
75
|
-
|
|
76
|
-
/**
|
|
77
|
-
* Describes the message liquidmetal.v1alpha1.SmartBucket.
|
|
78
|
-
* Use `create(SmartBucketSchema)` to create a new message.
|
|
79
|
-
*/
|
|
80
|
-
export const SmartBucketSchema: GenMessage<SmartBucket> = /*@__PURE__*/
|
|
81
|
-
messageDesc(file_liquidmetal_v1alpha1_resource_interface, 0);
|
|
82
|
-
|
|
83
|
-
/**
|
|
84
|
-
* @generated from message liquidmetal.v1alpha1.PutObjectRequest
|
|
85
|
-
*/
|
|
86
|
-
export type PutObjectRequest = Message<"liquidmetal.v1alpha1.PutObjectRequest"> & {
|
|
87
|
-
/**
|
|
88
|
-
* @generated from field: string bucket = 1;
|
|
89
|
-
*/
|
|
90
|
-
bucket: string;
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
* @generated from field: string key = 2;
|
|
94
|
-
*/
|
|
95
|
-
key: string;
|
|
96
|
-
|
|
97
|
-
/**
|
|
98
|
-
* @generated from field: bytes content = 3;
|
|
99
|
-
*/
|
|
100
|
-
content: Uint8Array;
|
|
101
|
-
|
|
102
|
-
/**
|
|
103
|
-
* @generated from field: string content_type = 4;
|
|
104
|
-
*/
|
|
105
|
-
contentType: string;
|
|
106
|
-
};
|
|
107
|
-
|
|
108
|
-
/**
|
|
109
|
-
* Describes the message liquidmetal.v1alpha1.PutObjectRequest.
|
|
110
|
-
* Use `create(PutObjectRequestSchema)` to create a new message.
|
|
111
|
-
*/
|
|
112
|
-
export const PutObjectRequestSchema: GenMessage<PutObjectRequest> = /*@__PURE__*/
|
|
113
|
-
messageDesc(file_liquidmetal_v1alpha1_resource_interface, 1);
|
|
114
|
-
|
|
115
|
-
/**
|
|
116
|
-
* @generated from message liquidmetal.v1alpha1.PutObjectResponse
|
|
117
|
-
*/
|
|
118
|
-
export type PutObjectResponse = Message<"liquidmetal.v1alpha1.PutObjectResponse"> & {
|
|
119
|
-
/**
|
|
120
|
-
* @generated from field: bool success = 1;
|
|
121
|
-
*/
|
|
122
|
-
success: boolean;
|
|
123
|
-
|
|
124
|
-
/**
|
|
125
|
-
* @generated from field: string bucket = 2;
|
|
126
|
-
*/
|
|
127
|
-
bucket: string;
|
|
128
|
-
|
|
129
|
-
/**
|
|
130
|
-
* @generated from field: string key = 3;
|
|
131
|
-
*/
|
|
132
|
-
key: string;
|
|
133
|
-
};
|
|
134
|
-
|
|
135
|
-
/**
|
|
136
|
-
* Describes the message liquidmetal.v1alpha1.PutObjectResponse.
|
|
137
|
-
* Use `create(PutObjectResponseSchema)` to create a new message.
|
|
138
|
-
*/
|
|
139
|
-
export const PutObjectResponseSchema: GenMessage<PutObjectResponse> = /*@__PURE__*/
|
|
140
|
-
messageDesc(file_liquidmetal_v1alpha1_resource_interface, 2);
|
|
141
|
-
|
|
142
|
-
/**
|
|
143
|
-
* @generated from message liquidmetal.v1alpha1.GetObjectRequest
|
|
144
|
-
*/
|
|
145
|
-
export type GetObjectRequest = Message<"liquidmetal.v1alpha1.GetObjectRequest"> & {
|
|
146
|
-
/**
|
|
147
|
-
* @generated from field: string bucket = 1;
|
|
148
|
-
*/
|
|
149
|
-
bucket: string;
|
|
150
|
-
|
|
151
|
-
/**
|
|
152
|
-
* @generated from field: string key = 2;
|
|
153
|
-
*/
|
|
154
|
-
key: string;
|
|
155
|
-
};
|
|
156
|
-
|
|
157
|
-
/**
|
|
158
|
-
* Describes the message liquidmetal.v1alpha1.GetObjectRequest.
|
|
159
|
-
* Use `create(GetObjectRequestSchema)` to create a new message.
|
|
160
|
-
*/
|
|
161
|
-
export const GetObjectRequestSchema: GenMessage<GetObjectRequest> = /*@__PURE__*/
|
|
162
|
-
messageDesc(file_liquidmetal_v1alpha1_resource_interface, 3);
|
|
163
|
-
|
|
164
|
-
/**
|
|
165
|
-
* @generated from message liquidmetal.v1alpha1.GetObjectResponse
|
|
166
|
-
*/
|
|
167
|
-
export type GetObjectResponse = Message<"liquidmetal.v1alpha1.GetObjectResponse"> & {
|
|
168
|
-
/**
|
|
169
|
-
* @generated from field: bytes content = 1;
|
|
170
|
-
*/
|
|
171
|
-
content: Uint8Array;
|
|
172
|
-
|
|
173
|
-
/**
|
|
174
|
-
* @generated from field: string content_type = 2;
|
|
175
|
-
*/
|
|
176
|
-
contentType: string;
|
|
177
|
-
};
|
|
178
|
-
|
|
179
|
-
/**
|
|
180
|
-
* Describes the message liquidmetal.v1alpha1.GetObjectResponse.
|
|
181
|
-
* Use `create(GetObjectResponseSchema)` to create a new message.
|
|
182
|
-
*/
|
|
183
|
-
export const GetObjectResponseSchema: GenMessage<GetObjectResponse> = /*@__PURE__*/
|
|
184
|
-
messageDesc(file_liquidmetal_v1alpha1_resource_interface, 4);
|
|
185
|
-
|
|
186
|
-
/**
|
|
187
|
-
* @generated from message liquidmetal.v1alpha1.DeleteObjectRequest
|
|
188
|
-
*/
|
|
189
|
-
export type DeleteObjectRequest = Message<"liquidmetal.v1alpha1.DeleteObjectRequest"> & {
|
|
190
|
-
/**
|
|
191
|
-
* @generated from field: string bucket = 1;
|
|
192
|
-
*/
|
|
193
|
-
bucket: string;
|
|
194
|
-
|
|
195
|
-
/**
|
|
196
|
-
* @generated from field: string key = 2;
|
|
197
|
-
*/
|
|
198
|
-
key: string;
|
|
199
|
-
};
|
|
200
|
-
|
|
201
|
-
/**
|
|
202
|
-
* Describes the message liquidmetal.v1alpha1.DeleteObjectRequest.
|
|
203
|
-
* Use `create(DeleteObjectRequestSchema)` to create a new message.
|
|
204
|
-
*/
|
|
205
|
-
export const DeleteObjectRequestSchema: GenMessage<DeleteObjectRequest> = /*@__PURE__*/
|
|
206
|
-
messageDesc(file_liquidmetal_v1alpha1_resource_interface, 5);
|
|
207
|
-
|
|
208
|
-
/**
|
|
209
|
-
* @generated from message liquidmetal.v1alpha1.DeleteObjectResponse
|
|
210
|
-
*/
|
|
211
|
-
export type DeleteObjectResponse = Message<"liquidmetal.v1alpha1.DeleteObjectResponse"> & {
|
|
212
|
-
};
|
|
213
|
-
|
|
214
|
-
/**
|
|
215
|
-
* Describes the message liquidmetal.v1alpha1.DeleteObjectResponse.
|
|
216
|
-
* Use `create(DeleteObjectResponseSchema)` to create a new message.
|
|
217
|
-
*/
|
|
218
|
-
export const DeleteObjectResponseSchema: GenMessage<DeleteObjectResponse> = /*@__PURE__*/
|
|
219
|
-
messageDesc(file_liquidmetal_v1alpha1_resource_interface, 6);
|
|
220
|
-
|
|
221
|
-
/**
|
|
222
|
-
* @generated from message liquidmetal.v1alpha1.ListObjectsRequest
|
|
223
|
-
*/
|
|
224
|
-
export type ListObjectsRequest = Message<"liquidmetal.v1alpha1.ListObjectsRequest"> & {
|
|
225
|
-
/**
|
|
226
|
-
* @generated from field: string bucket = 1;
|
|
227
|
-
*/
|
|
228
|
-
bucket: string;
|
|
229
|
-
};
|
|
230
|
-
|
|
231
|
-
/**
|
|
232
|
-
* Describes the message liquidmetal.v1alpha1.ListObjectsRequest.
|
|
233
|
-
* Use `create(ListObjectsRequestSchema)` to create a new message.
|
|
234
|
-
*/
|
|
235
|
-
export const ListObjectsRequestSchema: GenMessage<ListObjectsRequest> = /*@__PURE__*/
|
|
236
|
-
messageDesc(file_liquidmetal_v1alpha1_resource_interface, 7);
|
|
237
|
-
|
|
238
|
-
/**
|
|
239
|
-
* @generated from message liquidmetal.v1alpha1.ObjectInfo
|
|
240
|
-
*/
|
|
241
|
-
export type ObjectInfo = Message<"liquidmetal.v1alpha1.ObjectInfo"> & {
|
|
242
|
-
/**
|
|
243
|
-
* @generated from field: string key = 1;
|
|
244
|
-
*/
|
|
245
|
-
key: string;
|
|
246
|
-
|
|
247
|
-
/**
|
|
248
|
-
* @generated from field: int64 size = 2;
|
|
249
|
-
*/
|
|
250
|
-
size: bigint;
|
|
251
|
-
|
|
252
|
-
/**
|
|
253
|
-
* @generated from field: string content_type = 3;
|
|
254
|
-
*/
|
|
255
|
-
contentType: string;
|
|
256
|
-
|
|
257
|
-
/**
|
|
258
|
-
* @generated from field: google.protobuf.Timestamp last_modified = 4;
|
|
259
|
-
*/
|
|
260
|
-
lastModified?: Timestamp;
|
|
261
|
-
};
|
|
262
|
-
|
|
263
|
-
/**
|
|
264
|
-
* Describes the message liquidmetal.v1alpha1.ObjectInfo.
|
|
265
|
-
* Use `create(ObjectInfoSchema)` to create a new message.
|
|
266
|
-
*/
|
|
267
|
-
export const ObjectInfoSchema: GenMessage<ObjectInfo> = /*@__PURE__*/
|
|
268
|
-
messageDesc(file_liquidmetal_v1alpha1_resource_interface, 8);
|
|
269
|
-
|
|
270
|
-
/**
|
|
271
|
-
* @generated from message liquidmetal.v1alpha1.ListObjectsResponse
|
|
272
|
-
*/
|
|
273
|
-
export type ListObjectsResponse = Message<"liquidmetal.v1alpha1.ListObjectsResponse"> & {
|
|
274
|
-
/**
|
|
275
|
-
* @generated from field: repeated liquidmetal.v1alpha1.ObjectInfo objects = 1;
|
|
276
|
-
*/
|
|
277
|
-
objects: ObjectInfo[];
|
|
278
|
-
};
|
|
279
|
-
|
|
280
|
-
/**
|
|
281
|
-
* Describes the message liquidmetal.v1alpha1.ListObjectsResponse.
|
|
282
|
-
* Use `create(ListObjectsResponseSchema)` to create a new message.
|
|
283
|
-
*/
|
|
284
|
-
export const ListObjectsResponseSchema: GenMessage<ListObjectsResponse> = /*@__PURE__*/
|
|
285
|
-
messageDesc(file_liquidmetal_v1alpha1_resource_interface, 9);
|
|
286
|
-
|
|
287
|
-
/**
|
|
288
|
-
* @generated from message liquidmetal.v1alpha1.ListSmartBucketsRequest
|
|
289
|
-
*/
|
|
290
|
-
export type ListSmartBucketsRequest = Message<"liquidmetal.v1alpha1.ListSmartBucketsRequest"> & {
|
|
291
|
-
};
|
|
292
|
-
|
|
293
|
-
/**
|
|
294
|
-
* Describes the message liquidmetal.v1alpha1.ListSmartBucketsRequest.
|
|
295
|
-
* Use `create(ListSmartBucketsRequestSchema)` to create a new message.
|
|
296
|
-
*/
|
|
297
|
-
export const ListSmartBucketsRequestSchema: GenMessage<ListSmartBucketsRequest> = /*@__PURE__*/
|
|
298
|
-
messageDesc(file_liquidmetal_v1alpha1_resource_interface, 10);
|
|
299
|
-
|
|
300
|
-
/**
|
|
301
|
-
* @generated from message liquidmetal.v1alpha1.ListSmartBucketsResponse
|
|
302
|
-
*/
|
|
303
|
-
export type ListSmartBucketsResponse = Message<"liquidmetal.v1alpha1.ListSmartBucketsResponse"> & {
|
|
304
|
-
/**
|
|
305
|
-
* @generated from field: repeated liquidmetal.v1alpha1.SmartBucket buckets = 1;
|
|
306
|
-
*/
|
|
307
|
-
buckets: SmartBucket[];
|
|
308
|
-
};
|
|
309
|
-
|
|
310
|
-
/**
|
|
311
|
-
* Describes the message liquidmetal.v1alpha1.ListSmartBucketsResponse.
|
|
312
|
-
* Use `create(ListSmartBucketsResponseSchema)` to create a new message.
|
|
313
|
-
*/
|
|
314
|
-
export const ListSmartBucketsResponseSchema: GenMessage<ListSmartBucketsResponse> = /*@__PURE__*/
|
|
315
|
-
messageDesc(file_liquidmetal_v1alpha1_resource_interface, 11);
|
|
316
|
-
|
|
317
|
-
/**
|
|
318
|
-
* ObjectService handles operations on objects stored in buckets
|
|
319
|
-
*
|
|
320
|
-
* @generated from service liquidmetal.v1alpha1.ObjectService
|
|
321
|
-
*/
|
|
322
|
-
export const ObjectService: GenService<{
|
|
323
|
-
/**
|
|
324
|
-
* PutObject uploads an object to a bucket
|
|
325
|
-
*
|
|
326
|
-
* @generated from rpc liquidmetal.v1alpha1.ObjectService.PutObject
|
|
327
|
-
*/
|
|
328
|
-
putObject: {
|
|
329
|
-
methodKind: "unary";
|
|
330
|
-
input: typeof PutObjectRequestSchema;
|
|
331
|
-
output: typeof PutObjectResponseSchema;
|
|
332
|
-
},
|
|
333
|
-
/**
|
|
334
|
-
* GetObject retrieves an object from a bucket
|
|
335
|
-
*
|
|
336
|
-
* @generated from rpc liquidmetal.v1alpha1.ObjectService.GetObject
|
|
337
|
-
*/
|
|
338
|
-
getObject: {
|
|
339
|
-
methodKind: "unary";
|
|
340
|
-
input: typeof GetObjectRequestSchema;
|
|
341
|
-
output: typeof GetObjectResponseSchema;
|
|
342
|
-
},
|
|
343
|
-
/**
|
|
344
|
-
* DeleteObject removes an object from a bucket
|
|
345
|
-
*
|
|
346
|
-
* @generated from rpc liquidmetal.v1alpha1.ObjectService.DeleteObject
|
|
347
|
-
*/
|
|
348
|
-
deleteObject: {
|
|
349
|
-
methodKind: "unary";
|
|
350
|
-
input: typeof DeleteObjectRequestSchema;
|
|
351
|
-
output: typeof DeleteObjectResponseSchema;
|
|
352
|
-
},
|
|
353
|
-
/**
|
|
354
|
-
* ListObjects lists all objects in a bucket
|
|
355
|
-
*
|
|
356
|
-
* @generated from rpc liquidmetal.v1alpha1.ObjectService.ListObjects
|
|
357
|
-
*/
|
|
358
|
-
listObjects: {
|
|
359
|
-
methodKind: "unary";
|
|
360
|
-
input: typeof ListObjectsRequestSchema;
|
|
361
|
-
output: typeof ListObjectsResponseSchema;
|
|
362
|
-
},
|
|
363
|
-
/**
|
|
364
|
-
* list all available smart buckets
|
|
365
|
-
*
|
|
366
|
-
* @generated from rpc liquidmetal.v1alpha1.ObjectService.ListSmartBuckets
|
|
367
|
-
*/
|
|
368
|
-
listSmartBuckets: {
|
|
369
|
-
methodKind: "unary";
|
|
370
|
-
input: typeof ListSmartBucketsRequestSchema;
|
|
371
|
-
output: typeof ListSmartBucketsResponseSchema;
|
|
372
|
-
},
|
|
373
|
-
}> = /*@__PURE__*/
|
|
374
|
-
serviceDesc(file_liquidmetal_v1alpha1_resource_interface, 0);
|
|
375
|
-
|