@gitpod/public-api 0.1.5-tar-sh-active-users-new.10 → 0.1.5-tar-openvsxproxy-pvc-optiona.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,282 @@
1
+ /**
2
+ * Copyright (c) 2022 Gitpod GmbH. All rights reserved.
3
+ * Licensed under the GNU Affero General Public License (AGPL).
4
+ * See License-AGPL.txt in the project root for license information.
5
+ */
6
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
7
+ import { FieldMask, Message, Timestamp } from "@bufbuild/protobuf";
8
+ /**
9
+ * PersonalAccessToken represents details of an access token for personal use.
10
+ *
11
+ * @generated from message gitpod.experimental.v1.PersonalAccessToken
12
+ */
13
+ export declare class PersonalAccessToken extends Message<PersonalAccessToken> {
14
+ /**
15
+ * id is the unique identifier of this token
16
+ * Read only.
17
+ *
18
+ * @generated from field: string id = 1;
19
+ */
20
+ id: string;
21
+ /**
22
+ * value is the secret value of the token
23
+ * The value property is only populated when the PersonalAccessToken is first created, and never again.
24
+ * If you you want to compare your existing token, use the hash property
25
+ * Read only.
26
+ *
27
+ * @generated from field: string value = 2;
28
+ */
29
+ value: string;
30
+ /**
31
+ * hash is the SHA-512 hash of the token value
32
+ * You can use the hash to compare a token you hold against the one we keep on record by doing `echo -n $TOKEN | sha256sum`.
33
+ * Read only.
34
+ *
35
+ * @generated from field: string hash = 3;
36
+ */
37
+ hash: string;
38
+ /**
39
+ * name is the name of the token for humans, set by the user
40
+ *
41
+ * @generated from field: string name = 4;
42
+ */
43
+ name: string;
44
+ /**
45
+ * description is the description of the token set by the user
46
+ *
47
+ * @generated from field: string description = 5;
48
+ */
49
+ description: string;
50
+ /**
51
+ * expiration_time is the time when the token expires
52
+ * Read only.
53
+ *
54
+ * @generated from field: google.protobuf.Timestamp expiration_time = 6;
55
+ */
56
+ expirationTime?: Timestamp;
57
+ /**
58
+ * scopes are the permission scopes attached to this token.
59
+ * By default, no scopes are attached and therefore no access is granted to this token.
60
+ * Specifying '*' grants all permissions the owner of the token has.
61
+ *
62
+ * @generated from field: repeated string scopes = 7;
63
+ */
64
+ scopes: string[];
65
+ /**
66
+ * created_time is the time when the token was first created.
67
+ *
68
+ * @generated from field: google.protobuf.Timestamp created_at = 8;
69
+ */
70
+ createdAt?: Timestamp;
71
+ constructor(data?: PartialMessage<PersonalAccessToken>);
72
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
73
+ static readonly typeName = "gitpod.experimental.v1.PersonalAccessToken";
74
+ static readonly fields: FieldList;
75
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PersonalAccessToken;
76
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PersonalAccessToken;
77
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PersonalAccessToken;
78
+ static equals(a: PersonalAccessToken | PlainMessage<PersonalAccessToken> | undefined, b: PersonalAccessToken | PlainMessage<PersonalAccessToken> | undefined): boolean;
79
+ }
80
+ /**
81
+ * @generated from message gitpod.experimental.v1.CreatePersonalAccessTokenRequest
82
+ */
83
+ export declare class CreatePersonalAccessTokenRequest extends Message<CreatePersonalAccessTokenRequest> {
84
+ /**
85
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
86
+ */
87
+ token?: PersonalAccessToken;
88
+ constructor(data?: PartialMessage<CreatePersonalAccessTokenRequest>);
89
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
90
+ static readonly typeName = "gitpod.experimental.v1.CreatePersonalAccessTokenRequest";
91
+ static readonly fields: FieldList;
92
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePersonalAccessTokenRequest;
93
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePersonalAccessTokenRequest;
94
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePersonalAccessTokenRequest;
95
+ static equals(a: CreatePersonalAccessTokenRequest | PlainMessage<CreatePersonalAccessTokenRequest> | undefined, b: CreatePersonalAccessTokenRequest | PlainMessage<CreatePersonalAccessTokenRequest> | undefined): boolean;
96
+ }
97
+ /**
98
+ * @generated from message gitpod.experimental.v1.CreatePersonalAccessTokenResponse
99
+ */
100
+ export declare class CreatePersonalAccessTokenResponse extends Message<CreatePersonalAccessTokenResponse> {
101
+ /**
102
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
103
+ */
104
+ token?: PersonalAccessToken;
105
+ constructor(data?: PartialMessage<CreatePersonalAccessTokenResponse>);
106
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
107
+ static readonly typeName = "gitpod.experimental.v1.CreatePersonalAccessTokenResponse";
108
+ static readonly fields: FieldList;
109
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePersonalAccessTokenResponse;
110
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePersonalAccessTokenResponse;
111
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePersonalAccessTokenResponse;
112
+ static equals(a: CreatePersonalAccessTokenResponse | PlainMessage<CreatePersonalAccessTokenResponse> | undefined, b: CreatePersonalAccessTokenResponse | PlainMessage<CreatePersonalAccessTokenResponse> | undefined): boolean;
113
+ }
114
+ /**
115
+ * @generated from message gitpod.experimental.v1.GetPersonalAccessTokenRequest
116
+ */
117
+ export declare class GetPersonalAccessTokenRequest extends Message<GetPersonalAccessTokenRequest> {
118
+ /**
119
+ * @generated from field: string id = 1;
120
+ */
121
+ id: string;
122
+ constructor(data?: PartialMessage<GetPersonalAccessTokenRequest>);
123
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
124
+ static readonly typeName = "gitpod.experimental.v1.GetPersonalAccessTokenRequest";
125
+ static readonly fields: FieldList;
126
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPersonalAccessTokenRequest;
127
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPersonalAccessTokenRequest;
128
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPersonalAccessTokenRequest;
129
+ static equals(a: GetPersonalAccessTokenRequest | PlainMessage<GetPersonalAccessTokenRequest> | undefined, b: GetPersonalAccessTokenRequest | PlainMessage<GetPersonalAccessTokenRequest> | undefined): boolean;
130
+ }
131
+ /**
132
+ * @generated from message gitpod.experimental.v1.GetPersonalAccessTokenResponse
133
+ */
134
+ export declare class GetPersonalAccessTokenResponse extends Message<GetPersonalAccessTokenResponse> {
135
+ /**
136
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
137
+ */
138
+ token?: PersonalAccessToken;
139
+ constructor(data?: PartialMessage<GetPersonalAccessTokenResponse>);
140
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
141
+ static readonly typeName = "gitpod.experimental.v1.GetPersonalAccessTokenResponse";
142
+ static readonly fields: FieldList;
143
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPersonalAccessTokenResponse;
144
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPersonalAccessTokenResponse;
145
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPersonalAccessTokenResponse;
146
+ static equals(a: GetPersonalAccessTokenResponse | PlainMessage<GetPersonalAccessTokenResponse> | undefined, b: GetPersonalAccessTokenResponse | PlainMessage<GetPersonalAccessTokenResponse> | undefined): boolean;
147
+ }
148
+ /**
149
+ * @generated from message gitpod.experimental.v1.ListPersonalAccessTokensRequest
150
+ */
151
+ export declare class ListPersonalAccessTokensRequest extends Message<ListPersonalAccessTokensRequest> {
152
+ constructor(data?: PartialMessage<ListPersonalAccessTokensRequest>);
153
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
154
+ static readonly typeName = "gitpod.experimental.v1.ListPersonalAccessTokensRequest";
155
+ static readonly fields: FieldList;
156
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListPersonalAccessTokensRequest;
157
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListPersonalAccessTokensRequest;
158
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListPersonalAccessTokensRequest;
159
+ static equals(a: ListPersonalAccessTokensRequest | PlainMessage<ListPersonalAccessTokensRequest> | undefined, b: ListPersonalAccessTokensRequest | PlainMessage<ListPersonalAccessTokensRequest> | undefined): boolean;
160
+ }
161
+ /**
162
+ * @generated from message gitpod.experimental.v1.ListPersonalAccessTokensResponse
163
+ */
164
+ export declare class ListPersonalAccessTokensResponse extends Message<ListPersonalAccessTokensResponse> {
165
+ /**
166
+ * @generated from field: repeated gitpod.experimental.v1.PersonalAccessToken tokens = 1;
167
+ */
168
+ tokens: PersonalAccessToken[];
169
+ constructor(data?: PartialMessage<ListPersonalAccessTokensResponse>);
170
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
171
+ static readonly typeName = "gitpod.experimental.v1.ListPersonalAccessTokensResponse";
172
+ static readonly fields: FieldList;
173
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListPersonalAccessTokensResponse;
174
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListPersonalAccessTokensResponse;
175
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListPersonalAccessTokensResponse;
176
+ static equals(a: ListPersonalAccessTokensResponse | PlainMessage<ListPersonalAccessTokensResponse> | undefined, b: ListPersonalAccessTokensResponse | PlainMessage<ListPersonalAccessTokensResponse> | undefined): boolean;
177
+ }
178
+ /**
179
+ * @generated from message gitpod.experimental.v1.RegeneratePersonalAccessTokenRequest
180
+ */
181
+ export declare class RegeneratePersonalAccessTokenRequest extends Message<RegeneratePersonalAccessTokenRequest> {
182
+ /**
183
+ * expiration time is the time when the new token should expire
184
+ *
185
+ * @generated from field: google.protobuf.Timestamp expiration_time = 1;
186
+ */
187
+ expirationTime?: Timestamp;
188
+ constructor(data?: PartialMessage<RegeneratePersonalAccessTokenRequest>);
189
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
190
+ static readonly typeName = "gitpod.experimental.v1.RegeneratePersonalAccessTokenRequest";
191
+ static readonly fields: FieldList;
192
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RegeneratePersonalAccessTokenRequest;
193
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RegeneratePersonalAccessTokenRequest;
194
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RegeneratePersonalAccessTokenRequest;
195
+ static equals(a: RegeneratePersonalAccessTokenRequest | PlainMessage<RegeneratePersonalAccessTokenRequest> | undefined, b: RegeneratePersonalAccessTokenRequest | PlainMessage<RegeneratePersonalAccessTokenRequest> | undefined): boolean;
196
+ }
197
+ /**
198
+ * @generated from message gitpod.experimental.v1.RegeneratePersonalAccessTokenResponse
199
+ */
200
+ export declare class RegeneratePersonalAccessTokenResponse extends Message<RegeneratePersonalAccessTokenResponse> {
201
+ /**
202
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
203
+ */
204
+ token?: PersonalAccessToken;
205
+ constructor(data?: PartialMessage<RegeneratePersonalAccessTokenResponse>);
206
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
207
+ static readonly typeName = "gitpod.experimental.v1.RegeneratePersonalAccessTokenResponse";
208
+ static readonly fields: FieldList;
209
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RegeneratePersonalAccessTokenResponse;
210
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RegeneratePersonalAccessTokenResponse;
211
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RegeneratePersonalAccessTokenResponse;
212
+ static equals(a: RegeneratePersonalAccessTokenResponse | PlainMessage<RegeneratePersonalAccessTokenResponse> | undefined, b: RegeneratePersonalAccessTokenResponse | PlainMessage<RegeneratePersonalAccessTokenResponse> | undefined): boolean;
213
+ }
214
+ /**
215
+ * @generated from message gitpod.experimental.v1.UpdatePersonalAccessTokenRequest
216
+ */
217
+ export declare class UpdatePersonalAccessTokenRequest extends Message<UpdatePersonalAccessTokenRequest> {
218
+ /**
219
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
220
+ */
221
+ token?: PersonalAccessToken;
222
+ /**
223
+ * @generated from field: google.protobuf.FieldMask update_mask = 2;
224
+ */
225
+ updateMask?: FieldMask;
226
+ constructor(data?: PartialMessage<UpdatePersonalAccessTokenRequest>);
227
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
228
+ static readonly typeName = "gitpod.experimental.v1.UpdatePersonalAccessTokenRequest";
229
+ static readonly fields: FieldList;
230
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdatePersonalAccessTokenRequest;
231
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdatePersonalAccessTokenRequest;
232
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdatePersonalAccessTokenRequest;
233
+ static equals(a: UpdatePersonalAccessTokenRequest | PlainMessage<UpdatePersonalAccessTokenRequest> | undefined, b: UpdatePersonalAccessTokenRequest | PlainMessage<UpdatePersonalAccessTokenRequest> | undefined): boolean;
234
+ }
235
+ /**
236
+ * @generated from message gitpod.experimental.v1.UpdatePersonalAccessTokenResponse
237
+ */
238
+ export declare class UpdatePersonalAccessTokenResponse extends Message<UpdatePersonalAccessTokenResponse> {
239
+ /**
240
+ * @generated from field: gitpod.experimental.v1.PersonalAccessToken token = 1;
241
+ */
242
+ token?: PersonalAccessToken;
243
+ constructor(data?: PartialMessage<UpdatePersonalAccessTokenResponse>);
244
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
245
+ static readonly typeName = "gitpod.experimental.v1.UpdatePersonalAccessTokenResponse";
246
+ static readonly fields: FieldList;
247
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdatePersonalAccessTokenResponse;
248
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdatePersonalAccessTokenResponse;
249
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdatePersonalAccessTokenResponse;
250
+ static equals(a: UpdatePersonalAccessTokenResponse | PlainMessage<UpdatePersonalAccessTokenResponse> | undefined, b: UpdatePersonalAccessTokenResponse | PlainMessage<UpdatePersonalAccessTokenResponse> | undefined): boolean;
251
+ }
252
+ /**
253
+ * @generated from message gitpod.experimental.v1.DeletePersonalAccessTokenRequest
254
+ */
255
+ export declare class DeletePersonalAccessTokenRequest extends Message<DeletePersonalAccessTokenRequest> {
256
+ /**
257
+ * @generated from field: string id = 1;
258
+ */
259
+ id: string;
260
+ constructor(data?: PartialMessage<DeletePersonalAccessTokenRequest>);
261
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
262
+ static readonly typeName = "gitpod.experimental.v1.DeletePersonalAccessTokenRequest";
263
+ static readonly fields: FieldList;
264
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeletePersonalAccessTokenRequest;
265
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeletePersonalAccessTokenRequest;
266
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeletePersonalAccessTokenRequest;
267
+ static equals(a: DeletePersonalAccessTokenRequest | PlainMessage<DeletePersonalAccessTokenRequest> | undefined, b: DeletePersonalAccessTokenRequest | PlainMessage<DeletePersonalAccessTokenRequest> | undefined): boolean;
268
+ }
269
+ /**
270
+ * @generated from message gitpod.experimental.v1.DeletePersonalAccessTokenResponse
271
+ */
272
+ export declare class DeletePersonalAccessTokenResponse extends Message<DeletePersonalAccessTokenResponse> {
273
+ constructor(data?: PartialMessage<DeletePersonalAccessTokenResponse>);
274
+ static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime;
275
+ static readonly typeName = "gitpod.experimental.v1.DeletePersonalAccessTokenResponse";
276
+ static readonly fields: FieldList;
277
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeletePersonalAccessTokenResponse;
278
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeletePersonalAccessTokenResponse;
279
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeletePersonalAccessTokenResponse;
280
+ static equals(a: DeletePersonalAccessTokenResponse | PlainMessage<DeletePersonalAccessTokenResponse> | undefined, b: DeletePersonalAccessTokenResponse | PlainMessage<DeletePersonalAccessTokenResponse> | undefined): boolean;
281
+ }
282
+ //# sourceMappingURL=tokens_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tokens_pb.d.ts","sourceRoot":"","sources":["../../../../src/gitpod/experimental/v1/tokens_pb.ts"],"names":[],"mappings":"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"}