@volcengine/iam20210801 1.0.1

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.
Files changed (95) hide show
  1. package/.turbo/turbo-build.log +19 -0
  2. package/LICENSE.txt +202 -0
  3. package/dist/cjs/index.js +155 -0
  4. package/dist/esm/api.d.ts +133 -0
  5. package/dist/esm/api.d.ts.map +1 -0
  6. package/dist/esm/index.d.ts +13 -0
  7. package/dist/esm/index.d.ts.map +1 -0
  8. package/dist/esm/index.mjs +91 -0
  9. package/dist/esm/types/attach-policy-in-project-request.d.ts +62 -0
  10. package/dist/esm/types/attach-policy-in-project-request.d.ts.map +1 -0
  11. package/dist/esm/types/attach-policy-in-project-response.d.ts +20 -0
  12. package/dist/esm/types/attach-policy-in-project-response.d.ts.map +1 -0
  13. package/dist/esm/types/create-project-request.d.ts +40 -0
  14. package/dist/esm/types/create-project-request.d.ts.map +1 -0
  15. package/dist/esm/types/create-project-response.d.ts +65 -0
  16. package/dist/esm/types/create-project-response.d.ts.map +1 -0
  17. package/dist/esm/types/delete-project-request.d.ts +25 -0
  18. package/dist/esm/types/delete-project-request.d.ts.map +1 -0
  19. package/dist/esm/types/delete-project-response.d.ts +20 -0
  20. package/dist/esm/types/delete-project-response.d.ts.map +1 -0
  21. package/dist/esm/types/detach-policy-in-project-request.d.ts +62 -0
  22. package/dist/esm/types/detach-policy-in-project-request.d.ts.map +1 -0
  23. package/dist/esm/types/detach-policy-in-project-response.d.ts +20 -0
  24. package/dist/esm/types/detach-policy-in-project-response.d.ts.map +1 -0
  25. package/dist/esm/types/get-project-request.d.ts +25 -0
  26. package/dist/esm/types/get-project-request.d.ts.map +1 -0
  27. package/dist/esm/types/get-project-response.d.ts +65 -0
  28. package/dist/esm/types/get-project-response.d.ts.map +1 -0
  29. package/dist/esm/types/index.d.ts +27 -0
  30. package/dist/esm/types/index.d.ts.map +1 -0
  31. package/dist/esm/types/list-project-identities-request.d.ts +54 -0
  32. package/dist/esm/types/list-project-identities-request.d.ts.map +1 -0
  33. package/dist/esm/types/list-project-identities-response.d.ts +53 -0
  34. package/dist/esm/types/list-project-identities-response.d.ts.map +1 -0
  35. package/dist/esm/types/list-project-resources-request.d.ts +78 -0
  36. package/dist/esm/types/list-project-resources-request.d.ts.map +1 -0
  37. package/dist/esm/types/list-project-resources-response.d.ts +41 -0
  38. package/dist/esm/types/list-project-resources-response.d.ts.map +1 -0
  39. package/dist/esm/types/list-projects-request.d.ts +40 -0
  40. package/dist/esm/types/list-projects-request.d.ts.map +1 -0
  41. package/dist/esm/types/list-projects-response.d.ts +41 -0
  42. package/dist/esm/types/list-projects-response.d.ts.map +1 -0
  43. package/dist/esm/types/move-project-resource-request.d.ts +30 -0
  44. package/dist/esm/types/move-project-resource-request.d.ts.map +1 -0
  45. package/dist/esm/types/move-project-resource-response.d.ts +20 -0
  46. package/dist/esm/types/move-project-resource-response.d.ts.map +1 -0
  47. package/dist/esm/types/policy-for-list-project-identities-output.d.ts +50 -0
  48. package/dist/esm/types/policy-for-list-project-identities-output.d.ts.map +1 -0
  49. package/dist/esm/types/project-for-list-projects-output.d.ts +70 -0
  50. package/dist/esm/types/project-for-list-projects-output.d.ts.map +1 -0
  51. package/dist/esm/types/project-resource-for-list-project-resources-output.d.ts +65 -0
  52. package/dist/esm/types/project-resource-for-list-project-resources-output.d.ts.map +1 -0
  53. package/dist/esm/types/project-role-for-list-project-identities-output.d.ts +46 -0
  54. package/dist/esm/types/project-role-for-list-project-identities-output.d.ts.map +1 -0
  55. package/dist/esm/types/project-user-for-list-project-identities-output.d.ts +46 -0
  56. package/dist/esm/types/project-user-for-list-project-identities-output.d.ts.map +1 -0
  57. package/dist/esm/types/project-user-group-for-list-project-identities-output.d.ts +46 -0
  58. package/dist/esm/types/project-user-group-for-list-project-identities-output.d.ts.map +1 -0
  59. package/dist/esm/types/update-project-request.d.ts +35 -0
  60. package/dist/esm/types/update-project-request.d.ts.map +1 -0
  61. package/dist/esm/types/update-project-response.d.ts +20 -0
  62. package/dist/esm/types/update-project-response.d.ts.map +1 -0
  63. package/dist/tsconfig.tsbuildinfo +1 -0
  64. package/package.json +37 -0
  65. package/rslib.config.ts +26 -0
  66. package/src/api.ts +229 -0
  67. package/src/index.ts +14 -0
  68. package/src/types/attach-policy-in-project-request.ts +71 -0
  69. package/src/types/attach-policy-in-project-response.ts +22 -0
  70. package/src/types/create-project-request.ts +46 -0
  71. package/src/types/create-project-response.ts +76 -0
  72. package/src/types/delete-project-request.ts +28 -0
  73. package/src/types/delete-project-response.ts +22 -0
  74. package/src/types/detach-policy-in-project-request.ts +71 -0
  75. package/src/types/detach-policy-in-project-response.ts +22 -0
  76. package/src/types/get-project-request.ts +28 -0
  77. package/src/types/get-project-response.ts +76 -0
  78. package/src/types/index.ts +26 -0
  79. package/src/types/list-project-identities-request.ts +63 -0
  80. package/src/types/list-project-identities-response.ts +61 -0
  81. package/src/types/list-project-resources-request.ts +92 -0
  82. package/src/types/list-project-resources-response.ts +47 -0
  83. package/src/types/list-projects-request.ts +46 -0
  84. package/src/types/list-projects-response.ts +47 -0
  85. package/src/types/move-project-resource-request.ts +34 -0
  86. package/src/types/move-project-resource-response.ts +22 -0
  87. package/src/types/policy-for-list-project-identities-output.ts +58 -0
  88. package/src/types/project-for-list-projects-output.ts +82 -0
  89. package/src/types/project-resource-for-list-project-resources-output.ts +76 -0
  90. package/src/types/project-role-for-list-project-identities-output.ts +53 -0
  91. package/src/types/project-user-for-list-project-identities-output.ts +53 -0
  92. package/src/types/project-user-group-for-list-project-identities-output.ts +53 -0
  93. package/src/types/update-project-request.ts +40 -0
  94. package/src/types/update-project-response.ts +22 -0
  95. package/tsconfig.json +12 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-project-resources-request.d.ts","sourceRoot":"","sources":["../../../src/types/list-project-resources-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,2BAA2B;IAExC;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,OAAO,CAAC,EAAE,sCAAsC,CAAC;IAEjD;;;OAGG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;OAGG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;CACnC;AAED;;;GAGG;AACH,oBAAY,sCAAsC;IAC9C,WAAW,gBAAgB;IAC3B,WAAW,gBAAgB;CAC9B"}
@@ -0,0 +1,41 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ import { ProjectResourceForListProjectResourcesOutput } from './project-resource-for-list-project-resources-output';
13
+ /**
14
+ *
15
+ *
16
+ * @export
17
+ * @interface ListProjectResourcesResponse
18
+ */
19
+ export interface ListProjectResourcesResponse {
20
+ /**
21
+ * @type {number}
22
+ * @memberof ListProjectResourcesResponse
23
+ */
24
+ Limit?: number;
25
+ /**
26
+ * @type {number}
27
+ * @memberof ListProjectResourcesResponse
28
+ */
29
+ Offset?: number;
30
+ /**
31
+ * @type {Array<ProjectResourceForListProjectResourcesOutput>}
32
+ * @memberof ListProjectResourcesResponse
33
+ */
34
+ ProjectResources?: Array<ProjectResourceForListProjectResourcesOutput>;
35
+ /**
36
+ * @type {number}
37
+ * @memberof ListProjectResourcesResponse
38
+ */
39
+ Total?: number;
40
+ }
41
+ //# sourceMappingURL=list-project-resources-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-project-resources-response.d.ts","sourceRoot":"","sources":["../../../src/types/list-project-resources-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,4CAA4C,EAAE,MAAM,sDAAsD,CAAC;AACnH;;;;;EAKE;AACH,MAAM,WAAW,4BAA4B;IAEzC;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,4CAA4C,CAAC,CAAC;IAEvE;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB"}
@@ -0,0 +1,40 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface ListProjectsRequest
17
+ */
18
+ export interface ListProjectsRequest {
19
+ /**
20
+ * @type {number}
21
+ * @memberof ListProjectsRequest
22
+ */
23
+ Limit?: number;
24
+ /**
25
+ * @type {number}
26
+ * @memberof ListProjectsRequest
27
+ */
28
+ Offset?: number;
29
+ /**
30
+ * @type {string}
31
+ * @memberof ListProjectsRequest
32
+ */
33
+ _Query?: string;
34
+ /**
35
+ * @type {number}
36
+ * @memberof ListProjectsRequest
37
+ */
38
+ WithParentProject?: number;
39
+ }
40
+ //# sourceMappingURL=list-projects-request.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-projects-request.d.ts","sourceRoot":"","sources":["../../../src/types/list-projects-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,mBAAmB;IAEhC;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC9B"}
@@ -0,0 +1,41 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ import { ProjectForListProjectsOutput } from './project-for-list-projects-output';
13
+ /**
14
+ *
15
+ *
16
+ * @export
17
+ * @interface ListProjectsResponse
18
+ */
19
+ export interface ListProjectsResponse {
20
+ /**
21
+ * @type {number}
22
+ * @memberof ListProjectsResponse
23
+ */
24
+ Limit?: number;
25
+ /**
26
+ * @type {number}
27
+ * @memberof ListProjectsResponse
28
+ */
29
+ Offset?: number;
30
+ /**
31
+ * @type {Array<ProjectForListProjectsOutput>}
32
+ * @memberof ListProjectsResponse
33
+ */
34
+ Projects?: Array<ProjectForListProjectsOutput>;
35
+ /**
36
+ * @type {number}
37
+ * @memberof ListProjectsResponse
38
+ */
39
+ Total?: number;
40
+ }
41
+ //# sourceMappingURL=list-projects-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-projects-response.d.ts","sourceRoot":"","sources":["../../../src/types/list-projects-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,4BAA4B,EAAE,MAAM,oCAAoC,CAAC;AACjF;;;;;EAKE;AACH,MAAM,WAAW,oBAAoB;IAEjC;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,4BAA4B,CAAC,CAAC;IAE/C;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface MoveProjectResourceRequest
17
+ */
18
+ export interface MoveProjectResourceRequest {
19
+ /**
20
+ * @type {Array<string>}
21
+ * @memberof MoveProjectResourceRequest
22
+ */
23
+ ResourceTrn?: Array<string>;
24
+ /**
25
+ * @type {string}
26
+ * @memberof MoveProjectResourceRequest
27
+ */
28
+ TargetProjectName: string;
29
+ }
30
+ //# sourceMappingURL=move-project-resource-request.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"move-project-resource-request.d.ts","sourceRoot":"","sources":["../../../src/types/move-project-resource-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,0BAA0B;IAEvC;;;OAGG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAE5B;;;OAGG;IACH,iBAAiB,EAAE,MAAM,CAAC;CAC7B"}
@@ -0,0 +1,20 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface MoveProjectResourceResponse
17
+ */
18
+ export interface MoveProjectResourceResponse {
19
+ }
20
+ //# sourceMappingURL=move-project-resource-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"move-project-resource-response.d.ts","sourceRoot":"","sources":["../../../src/types/move-project-resource-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,2BAA2B;CAC3C"}
@@ -0,0 +1,50 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface PolicyForListProjectIdentitiesOutput
17
+ */
18
+ export interface PolicyForListProjectIdentitiesOutput {
19
+ /**
20
+ * @type {string}
21
+ * @memberof PolicyForListProjectIdentitiesOutput
22
+ */
23
+ AttachDate?: string;
24
+ /**
25
+ * @type {string}
26
+ * @memberof PolicyForListProjectIdentitiesOutput
27
+ */
28
+ Description?: string;
29
+ /**
30
+ * @type {number}
31
+ * @memberof PolicyForListProjectIdentitiesOutput
32
+ */
33
+ IsServiceRolePolicy?: number;
34
+ /**
35
+ * @type {string}
36
+ * @memberof PolicyForListProjectIdentitiesOutput
37
+ */
38
+ PolicyName?: string;
39
+ /**
40
+ * @type {string}
41
+ * @memberof PolicyForListProjectIdentitiesOutput
42
+ */
43
+ PolicyTrn?: string;
44
+ /**
45
+ * @type {string}
46
+ * @memberof PolicyForListProjectIdentitiesOutput
47
+ */
48
+ PolicyType?: string;
49
+ }
50
+ //# sourceMappingURL=policy-for-list-project-identities-output.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"policy-for-list-project-identities-output.d.ts","sourceRoot":"","sources":["../../../src/types/policy-for-list-project-identities-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,oCAAoC;IAEjD;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAE7B;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
@@ -0,0 +1,70 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface ProjectForListProjectsOutput
17
+ */
18
+ export interface ProjectForListProjectsOutput {
19
+ /**
20
+ * @type {number}
21
+ * @memberof ProjectForListProjectsOutput
22
+ */
23
+ AccountID?: number;
24
+ /**
25
+ * @type {string}
26
+ * @memberof ProjectForListProjectsOutput
27
+ */
28
+ CreateDate?: string;
29
+ /**
30
+ * @type {string}
31
+ * @memberof ProjectForListProjectsOutput
32
+ */
33
+ Description?: string;
34
+ /**
35
+ * @type {string}
36
+ * @memberof ProjectForListProjectsOutput
37
+ */
38
+ DisplayName?: string;
39
+ /**
40
+ * @type {boolean}
41
+ * @memberof ProjectForListProjectsOutput
42
+ */
43
+ HasPermission?: boolean;
44
+ /**
45
+ * @type {string}
46
+ * @memberof ProjectForListProjectsOutput
47
+ */
48
+ ParentProjectName?: string;
49
+ /**
50
+ * @type {string}
51
+ * @memberof ProjectForListProjectsOutput
52
+ */
53
+ Path?: string;
54
+ /**
55
+ * @type {string}
56
+ * @memberof ProjectForListProjectsOutput
57
+ */
58
+ ProjectName?: string;
59
+ /**
60
+ * @type {string}
61
+ * @memberof ProjectForListProjectsOutput
62
+ */
63
+ Status?: string;
64
+ /**
65
+ * @type {string}
66
+ * @memberof ProjectForListProjectsOutput
67
+ */
68
+ UpdateDate?: string;
69
+ }
70
+ //# sourceMappingURL=project-for-list-projects-output.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"project-for-list-projects-output.d.ts","sourceRoot":"","sources":["../../../src/types/project-for-list-projects-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,4BAA4B;IAEzC;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAE3B;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
@@ -0,0 +1,65 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface ProjectResourceForListProjectResourcesOutput
17
+ */
18
+ export interface ProjectResourceForListProjectResourcesOutput {
19
+ /**
20
+ * @type {number}
21
+ * @memberof ProjectResourceForListProjectResourcesOutput
22
+ */
23
+ AccountID?: number;
24
+ /**
25
+ * @type {string}
26
+ * @memberof ProjectResourceForListProjectResourcesOutput
27
+ */
28
+ CreateDate?: string;
29
+ /**
30
+ * @type {string}
31
+ * @memberof ProjectResourceForListProjectResourcesOutput
32
+ */
33
+ ProjectName?: string;
34
+ /**
35
+ * @type {string}
36
+ * @memberof ProjectResourceForListProjectResourcesOutput
37
+ */
38
+ ResourceID?: string;
39
+ /**
40
+ * @type {string}
41
+ * @memberof ProjectResourceForListProjectResourcesOutput
42
+ */
43
+ ResourceRegion?: string;
44
+ /**
45
+ * @type {string}
46
+ * @memberof ProjectResourceForListProjectResourcesOutput
47
+ */
48
+ ResourceTrn?: string;
49
+ /**
50
+ * @type {string}
51
+ * @memberof ProjectResourceForListProjectResourcesOutput
52
+ */
53
+ ResourceType?: string;
54
+ /**
55
+ * @type {string}
56
+ * @memberof ProjectResourceForListProjectResourcesOutput
57
+ */
58
+ ServiceName?: string;
59
+ /**
60
+ * @type {string}
61
+ * @memberof ProjectResourceForListProjectResourcesOutput
62
+ */
63
+ UpdateDate?: string;
64
+ }
65
+ //# sourceMappingURL=project-resource-for-list-project-resources-output.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"project-resource-for-list-project-resources-output.d.ts","sourceRoot":"","sources":["../../../src/types/project-resource-for-list-project-resources-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,4CAA4C;IAEzD;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
@@ -0,0 +1,46 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PolicyForListProjectIdentitiesOutput } from './policy-for-list-project-identities-output';
13
+ /**
14
+ *
15
+ *
16
+ * @export
17
+ * @interface ProjectRoleForListProjectIdentitiesOutput
18
+ */
19
+ export interface ProjectRoleForListProjectIdentitiesOutput {
20
+ /**
21
+ * @type {string}
22
+ * @memberof ProjectRoleForListProjectIdentitiesOutput
23
+ */
24
+ Description?: string;
25
+ /**
26
+ * @type {string}
27
+ * @memberof ProjectRoleForListProjectIdentitiesOutput
28
+ */
29
+ DisplayName?: string;
30
+ /**
31
+ * @type {Array<PolicyForListProjectIdentitiesOutput>}
32
+ * @memberof ProjectRoleForListProjectIdentitiesOutput
33
+ */
34
+ Policy?: Array<PolicyForListProjectIdentitiesOutput>;
35
+ /**
36
+ * @type {string}
37
+ * @memberof ProjectRoleForListProjectIdentitiesOutput
38
+ */
39
+ RoleName?: string;
40
+ /**
41
+ * @type {string}
42
+ * @memberof ProjectRoleForListProjectIdentitiesOutput
43
+ */
44
+ UpdateDate?: string;
45
+ }
46
+ //# sourceMappingURL=project-role-for-list-project-identities-output.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"project-role-for-list-project-identities-output.d.ts","sourceRoot":"","sources":["../../../src/types/project-role-for-list-project-identities-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,oCAAoC,EAAE,MAAM,6CAA6C,CAAC;AAClG;;;;;EAKE;AACH,MAAM,WAAW,yCAAyC;IAEtD;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,oCAAoC,CAAC,CAAC;IAErD;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
@@ -0,0 +1,46 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PolicyForListProjectIdentitiesOutput } from './policy-for-list-project-identities-output';
13
+ /**
14
+ *
15
+ *
16
+ * @export
17
+ * @interface ProjectUserForListProjectIdentitiesOutput
18
+ */
19
+ export interface ProjectUserForListProjectIdentitiesOutput {
20
+ /**
21
+ * @type {string}
22
+ * @memberof ProjectUserForListProjectIdentitiesOutput
23
+ */
24
+ Description?: string;
25
+ /**
26
+ * @type {string}
27
+ * @memberof ProjectUserForListProjectIdentitiesOutput
28
+ */
29
+ DisplayName?: string;
30
+ /**
31
+ * @type {Array<PolicyForListProjectIdentitiesOutput>}
32
+ * @memberof ProjectUserForListProjectIdentitiesOutput
33
+ */
34
+ Policy?: Array<PolicyForListProjectIdentitiesOutput>;
35
+ /**
36
+ * @type {string}
37
+ * @memberof ProjectUserForListProjectIdentitiesOutput
38
+ */
39
+ UpdateDate?: string;
40
+ /**
41
+ * @type {string}
42
+ * @memberof ProjectUserForListProjectIdentitiesOutput
43
+ */
44
+ UserName?: string;
45
+ }
46
+ //# sourceMappingURL=project-user-for-list-project-identities-output.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"project-user-for-list-project-identities-output.d.ts","sourceRoot":"","sources":["../../../src/types/project-user-for-list-project-identities-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,oCAAoC,EAAE,MAAM,6CAA6C,CAAC;AAClG;;;;;EAKE;AACH,MAAM,WAAW,yCAAyC;IAEtD;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,oCAAoC,CAAC,CAAC;IAErD;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB"}
@@ -0,0 +1,46 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PolicyForListProjectIdentitiesOutput } from './policy-for-list-project-identities-output';
13
+ /**
14
+ *
15
+ *
16
+ * @export
17
+ * @interface ProjectUserGroupForListProjectIdentitiesOutput
18
+ */
19
+ export interface ProjectUserGroupForListProjectIdentitiesOutput {
20
+ /**
21
+ * @type {string}
22
+ * @memberof ProjectUserGroupForListProjectIdentitiesOutput
23
+ */
24
+ Description?: string;
25
+ /**
26
+ * @type {string}
27
+ * @memberof ProjectUserGroupForListProjectIdentitiesOutput
28
+ */
29
+ DisplayName?: string;
30
+ /**
31
+ * @type {Array<PolicyForListProjectIdentitiesOutput>}
32
+ * @memberof ProjectUserGroupForListProjectIdentitiesOutput
33
+ */
34
+ Policy?: Array<PolicyForListProjectIdentitiesOutput>;
35
+ /**
36
+ * @type {string}
37
+ * @memberof ProjectUserGroupForListProjectIdentitiesOutput
38
+ */
39
+ UpdateDate?: string;
40
+ /**
41
+ * @type {string}
42
+ * @memberof ProjectUserGroupForListProjectIdentitiesOutput
43
+ */
44
+ UserGroupName?: string;
45
+ }
46
+ //# sourceMappingURL=project-user-group-for-list-project-identities-output.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"project-user-group-for-list-project-identities-output.d.ts","sourceRoot":"","sources":["../../../src/types/project-user-group-for-list-project-identities-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,oCAAoC,EAAE,MAAM,6CAA6C,CAAC;AAClG;;;;;EAKE;AACH,MAAM,WAAW,8CAA8C;IAE3D;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,oCAAoC,CAAC,CAAC;IAErD;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B"}
@@ -0,0 +1,35 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface UpdateProjectRequest
17
+ */
18
+ export interface UpdateProjectRequest {
19
+ /**
20
+ * @type {string}
21
+ * @memberof UpdateProjectRequest
22
+ */
23
+ Description?: string;
24
+ /**
25
+ * @type {string}
26
+ * @memberof UpdateProjectRequest
27
+ */
28
+ DisplayName?: string;
29
+ /**
30
+ * @type {string}
31
+ * @memberof UpdateProjectRequest
32
+ */
33
+ ProjectName: string;
34
+ }
35
+ //# sourceMappingURL=update-project-request.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-project-request.d.ts","sourceRoot":"","sources":["../../../src/types/update-project-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,oBAAoB;IAEjC;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,WAAW,EAAE,MAAM,CAAC;CACvB"}
@@ -0,0 +1,20 @@
1
+ /**
2
+ * iam20210801
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface UpdateProjectResponse
17
+ */
18
+ export interface UpdateProjectResponse {
19
+ }
20
+ //# sourceMappingURL=update-project-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-project-response.d.ts","sourceRoot":"","sources":["../../../src/types/update-project-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,qBAAqB;CACrC"}