@daocloud-proto/ghippo 0.7.40 → 0.8.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daocloud-proto/ghippo",
3
- "version":"0.7.40",
3
+ "version":"0.8.2",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -19,10 +19,10 @@ export enum TimeType {
19
19
  }
20
20
 
21
21
  export type ListAuditRequest = {
22
- source?: string
23
- type?: string
22
+ sourceType?: string
23
+ sourceName?: string
24
24
  status?: StatusType
25
- search?: string
25
+ searchUser?: string
26
26
  start?: string
27
27
  end?: string
28
28
  page?: number
@@ -37,7 +37,6 @@ export type ListAuditResponse = {
37
37
  export type AuditInfo = {
38
38
  id?: number
39
39
  auditName?: string
40
- source?: string
41
40
  resourceType?: string
42
41
  resourceName?: string
43
42
  status?: StatusType
@@ -5,6 +5,7 @@
5
5
  */
6
6
 
7
7
  import * as fm from "../fetch.pb"
8
+ import * as GoogleProtobufWrappers from "../google/protobuf/wrappers.pb"
8
9
  export type Pagination = {
9
10
  total?: number
10
11
  page?: number
@@ -230,10 +231,10 @@ export type ListMembersRolesByFolderResponse = {
230
231
  }
231
232
 
232
233
  export type ResourceInfo = {
233
- name?: string
234
- type?: string
234
+ resourceName?: string
235
+ resourceType?: string
235
236
  gproduct?: string
236
- scope?: string
237
+ resourceScope?: string
237
238
  }
238
239
 
239
240
  export type ListResourcesRequest = {
@@ -270,13 +271,11 @@ export type Resource = {
270
271
  }
271
272
 
272
273
  export type QuotaHard = {
273
- limits?: QuotaResource
274
- requests?: QuotaResource
275
- }
276
-
277
- export type QuotaResource = {
278
- cpu?: string
279
- memory?: string
274
+ requestsCpu?: GoogleProtobufWrappers.StringValue
275
+ limitsCpu?: GoogleProtobufWrappers.StringValue
276
+ requestsMemory?: GoogleProtobufWrappers.StringValue
277
+ limitsMemory?: GoogleProtobufWrappers.StringValue
278
+ persistentvolumeclaims?: GoogleProtobufWrappers.StringValue
280
279
  }
281
280
 
282
281
  export type BindResourceAndSetQuotaHardToWorkspaceRequest = {