@tapis/tapis-typescript-systems 0.0.2 → 0.0.4

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 (189) hide show
  1. package/.openapi-generator/FILES +19 -3
  2. package/README.md +2 -2
  3. package/dist/apis/ChildSystemsApi.d.ts +54 -0
  4. package/dist/apis/ChildSystemsApi.js +224 -0
  5. package/dist/apis/CredentialsApi.d.ts +51 -15
  6. package/dist/apis/CredentialsApi.js +170 -16
  7. package/dist/apis/GeneralApi.d.ts +5 -5
  8. package/dist/apis/GeneralApi.js +5 -11
  9. package/dist/apis/PermissionsApi.d.ts +3 -11
  10. package/dist/apis/PermissionsApi.js +3 -11
  11. package/dist/apis/SchedulerProfilesApi.d.ts +5 -13
  12. package/dist/apis/SchedulerProfilesApi.js +6 -14
  13. package/dist/apis/SharingApi.d.ts +85 -0
  14. package/dist/apis/SharingApi.js +328 -0
  15. package/dist/apis/SystemsApi.d.ts +36 -46
  16. package/dist/apis/SystemsApi.js +89 -49
  17. package/dist/apis/index.d.ts +2 -0
  18. package/dist/apis/index.js +2 -0
  19. package/dist/models/AuthnEnum.d.ts +2 -1
  20. package/dist/models/AuthnEnum.js +2 -1
  21. package/dist/models/Capability.d.ts +1 -1
  22. package/dist/models/Capability.js +1 -1
  23. package/dist/models/CategoryEnum.d.ts +1 -1
  24. package/dist/models/CategoryEnum.js +1 -1
  25. package/dist/models/Credential.d.ts +19 -1
  26. package/dist/models/Credential.js +7 -1
  27. package/dist/models/DatatypeEnum.d.ts +1 -1
  28. package/dist/models/DatatypeEnum.js +1 -1
  29. package/dist/models/JobRuntime.d.ts +1 -1
  30. package/dist/models/JobRuntime.js +1 -1
  31. package/dist/models/KeyValueInputModeEnum.d.ts +25 -0
  32. package/dist/models/KeyValueInputModeEnum.js +39 -0
  33. package/dist/models/KeyValuePair.d.ts +20 -1
  34. package/dist/models/KeyValuePair.js +8 -1
  35. package/dist/models/ListTypeEnum.d.ts +24 -0
  36. package/dist/models/ListTypeEnum.js +38 -0
  37. package/dist/models/LogicalQueue.d.ts +1 -1
  38. package/dist/models/LogicalQueue.js +1 -1
  39. package/dist/models/ModuleLoadSpec.d.ts +33 -0
  40. package/dist/models/ModuleLoadSpec.js +43 -0
  41. package/dist/models/OperationTypeEnum.d.ts +35 -0
  42. package/dist/models/OperationTypeEnum.js +49 -0
  43. package/dist/models/ReqMatchConstraints.d.ts +1 -1
  44. package/dist/models/ReqMatchConstraints.js +1 -1
  45. package/dist/models/ReqPatchSystem.d.ts +18 -18
  46. package/dist/models/ReqPatchSystem.js +7 -7
  47. package/dist/models/ReqPerms.d.ts +1 -1
  48. package/dist/models/ReqPerms.js +1 -1
  49. package/dist/models/ReqPostChildSystem.d.ts +39 -0
  50. package/dist/models/ReqPostChildSystem.js +45 -0
  51. package/dist/models/ReqPostPutCredential.d.ts +69 -0
  52. package/dist/models/{ReqCreateCredential.js → ReqPostPutCredential.js} +12 -8
  53. package/dist/models/ReqPostSchedulerProfile.d.ts +52 -0
  54. package/dist/models/{ReqCreateSchedulerProfile.js → ReqPostSchedulerProfile.js} +10 -12
  55. package/dist/models/ReqPostSystem.d.ts +220 -0
  56. package/dist/models/{ReqCreateSystem.js → ReqPostSystem.js} +16 -18
  57. package/dist/models/ReqPutSystem.d.ts +21 -21
  58. package/dist/models/ReqPutSystem.js +9 -9
  59. package/dist/models/ReqSearchSystems.d.ts +1 -1
  60. package/dist/models/ReqSearchSystems.js +1 -1
  61. package/dist/models/ReqShareUpdate.d.ts +27 -0
  62. package/dist/models/ReqShareUpdate.js +40 -0
  63. package/dist/models/ReqUnlinkChildren.d.ts +27 -0
  64. package/dist/models/ReqUnlinkChildren.js +41 -0
  65. package/dist/models/ReqUpdateCredential.d.ts +75 -0
  66. package/dist/models/ReqUpdateCredential.js +57 -0
  67. package/dist/models/RespBasic.d.ts +13 -1
  68. package/dist/models/RespBasic.js +5 -1
  69. package/dist/models/RespBoolean.d.ts +13 -1
  70. package/dist/models/RespBoolean.js +5 -1
  71. package/dist/models/RespChangeCount.d.ts +13 -1
  72. package/dist/models/RespChangeCount.js +5 -1
  73. package/dist/models/RespCredential.d.ts +13 -1
  74. package/dist/models/RespCredential.js +5 -1
  75. package/dist/models/RespGlobusAuthUrl.d.ts +64 -0
  76. package/dist/models/RespGlobusAuthUrl.js +54 -0
  77. package/dist/models/RespNameArray.d.ts +13 -1
  78. package/dist/models/RespNameArray.js +5 -1
  79. package/dist/models/RespResourceUrl.d.ts +13 -1
  80. package/dist/models/RespResourceUrl.js +5 -1
  81. package/dist/models/RespSchedulerProfile.d.ts +13 -1
  82. package/dist/models/RespSchedulerProfile.js +5 -1
  83. package/dist/models/RespSchedulerProfiles.d.ts +13 -1
  84. package/dist/models/RespSchedulerProfiles.js +5 -1
  85. package/dist/models/RespShareInfo.d.ts +64 -0
  86. package/dist/models/RespShareInfo.js +54 -0
  87. package/dist/models/RespSystem.d.ts +13 -1
  88. package/dist/models/RespSystem.js +5 -1
  89. package/dist/models/RespSystemHistory.d.ts +64 -0
  90. package/dist/models/RespSystemHistory.js +54 -0
  91. package/dist/models/RespSystems.d.ts +13 -1
  92. package/dist/models/RespSystems.js +5 -1
  93. package/dist/models/RespSystemsMetadata.d.ts +1 -1
  94. package/dist/models/RespSystemsMetadata.js +1 -1
  95. package/dist/models/ResultBoolean.d.ts +1 -1
  96. package/dist/models/ResultBoolean.js +1 -1
  97. package/dist/models/ResultChangeCount.d.ts +1 -1
  98. package/dist/models/ResultChangeCount.js +1 -1
  99. package/dist/models/ResultGlobusAuthUrl.d.ts +39 -0
  100. package/dist/models/ResultGlobusAuthUrl.js +45 -0
  101. package/dist/models/ResultNameArray.d.ts +1 -1
  102. package/dist/models/ResultNameArray.js +1 -1
  103. package/dist/models/ResultResourceUrl.d.ts +1 -1
  104. package/dist/models/ResultResourceUrl.js +1 -1
  105. package/dist/models/RuntimeTypeEnum.d.ts +3 -2
  106. package/dist/models/RuntimeTypeEnum.js +2 -1
  107. package/dist/models/SchedulerHiddenOptionEnum.d.ts +1 -1
  108. package/dist/models/SchedulerHiddenOptionEnum.js +1 -1
  109. package/dist/models/SchedulerProfile.d.ts +5 -11
  110. package/dist/models/SchedulerProfile.js +3 -5
  111. package/dist/models/SchedulerTypeEnum.d.ts +1 -1
  112. package/dist/models/SchedulerTypeEnum.js +1 -1
  113. package/dist/models/ShareInfo.d.ts +33 -0
  114. package/dist/models/ShareInfo.js +42 -0
  115. package/dist/models/SystemHistory.d.ts +64 -0
  116. package/dist/models/SystemHistory.js +54 -0
  117. package/dist/models/SystemTypeEnum.d.ts +2 -2
  118. package/dist/models/SystemTypeEnum.js +2 -2
  119. package/dist/models/TapisSystem.d.ts +38 -26
  120. package/dist/models/TapisSystem.js +15 -11
  121. package/dist/models/index.d.ts +17 -3
  122. package/dist/models/index.js +17 -3
  123. package/dist/runtime.d.ts +1 -1
  124. package/dist/runtime.js +1 -1
  125. package/package.json +1 -1
  126. package/src/apis/ChildSystemsApi.ts +171 -0
  127. package/src/apis/CredentialsApi.ts +160 -20
  128. package/src/apis/GeneralApi.ts +5 -13
  129. package/src/apis/PermissionsApi.ts +3 -11
  130. package/src/apis/SchedulerProfilesApi.ts +10 -18
  131. package/src/apis/SharingApi.ts +250 -0
  132. package/src/apis/SystemsApi.ts +106 -55
  133. package/src/apis/index.ts +2 -0
  134. package/src/models/AuthnEnum.ts +2 -1
  135. package/src/models/Capability.ts +1 -1
  136. package/src/models/CategoryEnum.ts +1 -1
  137. package/src/models/Credential.ts +25 -1
  138. package/src/models/DatatypeEnum.ts +1 -1
  139. package/src/models/JobRuntime.ts +1 -1
  140. package/src/models/KeyValueInputModeEnum.ts +38 -0
  141. package/src/models/KeyValuePair.ts +32 -1
  142. package/src/models/ListTypeEnum.ts +37 -0
  143. package/src/models/LogicalQueue.ts +1 -1
  144. package/src/models/ModuleLoadSpec.ts +64 -0
  145. package/src/models/OperationTypeEnum.ts +48 -0
  146. package/src/models/ReqMatchConstraints.ts +1 -1
  147. package/src/models/ReqPatchSystem.ts +24 -24
  148. package/src/models/ReqPerms.ts +1 -1
  149. package/src/models/ReqPostChildSystem.ts +72 -0
  150. package/src/models/{ReqCreateCredential.ts → ReqPostPutCredential.ts} +29 -13
  151. package/src/models/{ReqCreateSchedulerProfile.ts → ReqPostSchedulerProfile.ts} +21 -25
  152. package/src/models/{ReqCreateSystem.ts → ReqPostSystem.ts} +77 -85
  153. package/src/models/ReqPutSystem.ts +32 -32
  154. package/src/models/ReqSearchSystems.ts +1 -1
  155. package/src/models/ReqShareUpdate.ts +56 -0
  156. package/src/models/ReqUnlinkChildren.ts +56 -0
  157. package/src/models/ReqUpdateCredential.ts +120 -0
  158. package/src/models/RespBasic.ts +17 -1
  159. package/src/models/RespBoolean.ts +17 -1
  160. package/src/models/RespChangeCount.ts +17 -1
  161. package/src/models/RespCredential.ts +17 -1
  162. package/src/models/RespGlobusAuthUrl.ts +111 -0
  163. package/src/models/RespNameArray.ts +17 -1
  164. package/src/models/RespResourceUrl.ts +17 -1
  165. package/src/models/RespSchedulerProfile.ts +17 -1
  166. package/src/models/RespSchedulerProfiles.ts +17 -1
  167. package/src/models/RespShareInfo.ts +111 -0
  168. package/src/models/RespSystem.ts +17 -1
  169. package/src/models/RespSystemHistory.ts +111 -0
  170. package/src/models/RespSystems.ts +17 -1
  171. package/src/models/RespSystemsMetadata.ts +1 -1
  172. package/src/models/ResultBoolean.ts +1 -1
  173. package/src/models/ResultChangeCount.ts +1 -1
  174. package/src/models/ResultGlobusAuthUrl.ts +72 -0
  175. package/src/models/ResultNameArray.ts +1 -1
  176. package/src/models/ResultResourceUrl.ts +1 -1
  177. package/src/models/RuntimeTypeEnum.ts +3 -2
  178. package/src/models/SchedulerHiddenOptionEnum.ts +1 -1
  179. package/src/models/SchedulerProfile.ts +10 -14
  180. package/src/models/SchedulerTypeEnum.ts +1 -1
  181. package/src/models/ShareInfo.ts +64 -0
  182. package/src/models/SystemHistory.ts +111 -0
  183. package/src/models/SystemTypeEnum.ts +2 -2
  184. package/src/models/TapisSystem.ts +52 -36
  185. package/src/models/index.ts +17 -3
  186. package/src/runtime.ts +1 -1
  187. package/dist/models/ReqCreateCredential.d.ts +0 -57
  188. package/dist/models/ReqCreateSchedulerProfile.d.ts +0 -58
  189. package/dist/models/ReqCreateSystem.d.ts +0 -226
@@ -2,7 +2,7 @@
2
2
  * Tapis Systems API
3
3
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
4
4
  *
5
- * The version of the OpenAPI document: 1.0.0-rc1
5
+ * The version of the OpenAPI document: 1.6.3
6
6
  * Contact: cicsupport@tacc.utexas.edu
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Tapis Systems API
6
6
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
7
7
  *
8
- * The version of the OpenAPI document: 1.0.0-rc1
8
+ * The version of the OpenAPI document: 1.6.3
9
9
  * Contact: cicsupport@tacc.utexas.edu
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -0,0 +1,39 @@
1
+ /**
2
+ * Tapis Systems API
3
+ * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
4
+ *
5
+ * The version of the OpenAPI document: 1.6.3
6
+ * Contact: cicsupport@tacc.utexas.edu
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ResultGlobusAuthUrl
16
+ */
17
+ export interface ResultGlobusAuthUrl {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ResultGlobusAuthUrl
22
+ */
23
+ url?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ResultGlobusAuthUrl
28
+ */
29
+ sesssionId?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof ResultGlobusAuthUrl
34
+ */
35
+ systemId?: string;
36
+ }
37
+ export declare function ResultGlobusAuthUrlFromJSON(json: any): ResultGlobusAuthUrl;
38
+ export declare function ResultGlobusAuthUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResultGlobusAuthUrl;
39
+ export declare function ResultGlobusAuthUrlToJSON(value?: ResultGlobusAuthUrl | null): any;
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Tapis Systems API
6
+ * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
7
+ *
8
+ * The version of the OpenAPI document: 1.6.3
9
+ * Contact: cicsupport@tacc.utexas.edu
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ var runtime_1 = require("../runtime");
17
+ function ResultGlobusAuthUrlFromJSON(json) {
18
+ return ResultGlobusAuthUrlFromJSONTyped(json, false);
19
+ }
20
+ exports.ResultGlobusAuthUrlFromJSON = ResultGlobusAuthUrlFromJSON;
21
+ function ResultGlobusAuthUrlFromJSONTyped(json, ignoreDiscriminator) {
22
+ if ((json === undefined) || (json === null)) {
23
+ return json;
24
+ }
25
+ return {
26
+ 'url': !runtime_1.exists(json, 'url') ? undefined : json['url'],
27
+ 'sesssionId': !runtime_1.exists(json, 'sesssionId') ? undefined : json['sesssionId'],
28
+ 'systemId': !runtime_1.exists(json, 'systemId') ? undefined : json['systemId'],
29
+ };
30
+ }
31
+ exports.ResultGlobusAuthUrlFromJSONTyped = ResultGlobusAuthUrlFromJSONTyped;
32
+ function ResultGlobusAuthUrlToJSON(value) {
33
+ if (value === undefined) {
34
+ return undefined;
35
+ }
36
+ if (value === null) {
37
+ return null;
38
+ }
39
+ return {
40
+ 'url': value.url,
41
+ 'sesssionId': value.sesssionId,
42
+ 'systemId': value.systemId,
43
+ };
44
+ }
45
+ exports.ResultGlobusAuthUrlToJSON = ResultGlobusAuthUrlToJSON;
@@ -2,7 +2,7 @@
2
2
  * Tapis Systems API
3
3
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
4
4
  *
5
- * The version of the OpenAPI document: 1.0.0-rc1
5
+ * The version of the OpenAPI document: 1.6.3
6
6
  * Contact: cicsupport@tacc.utexas.edu
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Tapis Systems API
6
6
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
7
7
  *
8
- * The version of the OpenAPI document: 1.0.0-rc1
8
+ * The version of the OpenAPI document: 1.6.3
9
9
  * Contact: cicsupport@tacc.utexas.edu
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Tapis Systems API
3
3
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
4
4
  *
5
- * The version of the OpenAPI document: 1.0.0-rc1
5
+ * The version of the OpenAPI document: 1.6.3
6
6
  * Contact: cicsupport@tacc.utexas.edu
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Tapis Systems API
6
6
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
7
7
  *
8
- * The version of the OpenAPI document: 1.0.0-rc1
8
+ * The version of the OpenAPI document: 1.6.3
9
9
  * Contact: cicsupport@tacc.utexas.edu
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Tapis Systems API
3
3
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
4
4
  *
5
- * The version of the OpenAPI document: 1.0.0-rc1
5
+ * The version of the OpenAPI document: 1.6.3
6
6
  * Contact: cicsupport@tacc.utexas.edu
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,8 @@
16
16
  */
17
17
  export declare enum RuntimeTypeEnum {
18
18
  Docker = "DOCKER",
19
- Singularity = "SINGULARITY"
19
+ Singularity = "SINGULARITY",
20
+ Zip = "ZIP"
20
21
  }
21
22
  export declare function RuntimeTypeEnumFromJSON(json: any): RuntimeTypeEnum;
22
23
  export declare function RuntimeTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): RuntimeTypeEnum;
@@ -5,7 +5,7 @@
5
5
  * Tapis Systems API
6
6
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
7
7
  *
8
- * The version of the OpenAPI document: 1.0.0-rc1
8
+ * The version of the OpenAPI document: 1.6.3
9
9
  * Contact: cicsupport@tacc.utexas.edu
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,6 +22,7 @@ var RuntimeTypeEnum;
22
22
  (function (RuntimeTypeEnum) {
23
23
  RuntimeTypeEnum["Docker"] = "DOCKER";
24
24
  RuntimeTypeEnum["Singularity"] = "SINGULARITY";
25
+ RuntimeTypeEnum["Zip"] = "ZIP";
25
26
  })(RuntimeTypeEnum = exports.RuntimeTypeEnum || (exports.RuntimeTypeEnum = {}));
26
27
  function RuntimeTypeEnumFromJSON(json) {
27
28
  return RuntimeTypeEnumFromJSONTyped(json, false);
@@ -2,7 +2,7 @@
2
2
  * Tapis Systems API
3
3
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
4
4
  *
5
- * The version of the OpenAPI document: 1.0.0-rc1
5
+ * The version of the OpenAPI document: 1.6.3
6
6
  * Contact: cicsupport@tacc.utexas.edu
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Tapis Systems API
6
6
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
7
7
  *
8
- * The version of the OpenAPI document: 1.0.0-rc1
8
+ * The version of the OpenAPI document: 1.6.3
9
9
  * Contact: cicsupport@tacc.utexas.edu
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,14 +2,14 @@
2
2
  * Tapis Systems API
3
3
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
4
4
  *
5
- * The version of the OpenAPI document: 1.0.0-rc1
5
+ * The version of the OpenAPI document: 1.6.3
6
6
  * Contact: cicsupport@tacc.utexas.edu
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { SchedulerHiddenOptionEnum } from './';
12
+ import { ModuleLoadSpec, SchedulerHiddenOptionEnum } from './';
13
13
  /**
14
14
  *
15
15
  * @export
@@ -29,7 +29,7 @@ export interface SchedulerProfile {
29
29
  */
30
30
  name: string;
31
31
  /**
32
- *
32
+ * Optional more verbose description.
33
33
  * @type {string}
34
34
  * @memberof SchedulerProfile
35
35
  */
@@ -42,16 +42,10 @@ export interface SchedulerProfile {
42
42
  owner?: string;
43
43
  /**
44
44
  *
45
- * @type {string}
46
- * @memberof SchedulerProfile
47
- */
48
- moduleLoadCommand: string;
49
- /**
50
- *
51
- * @type {Array<string>}
45
+ * @type {Array<ModuleLoadSpec>}
52
46
  * @memberof SchedulerProfile
53
47
  */
54
- modulesToLoad?: Array<string>;
48
+ moduleLoads?: Array<ModuleLoadSpec>;
55
49
  /**
56
50
  *
57
51
  * @type {Array<SchedulerHiddenOptionEnum>}
@@ -5,7 +5,7 @@
5
5
  * Tapis Systems API
6
6
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
7
7
  *
8
- * The version of the OpenAPI document: 1.0.0-rc1
8
+ * The version of the OpenAPI document: 1.6.3
9
9
  * Contact: cicsupport@tacc.utexas.edu
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,8 +28,7 @@ function SchedulerProfileFromJSONTyped(json, ignoreDiscriminator) {
28
28
  'name': json['name'],
29
29
  'description': !runtime_1.exists(json, 'description') ? undefined : json['description'],
30
30
  'owner': !runtime_1.exists(json, 'owner') ? undefined : json['owner'],
31
- 'moduleLoadCommand': json['moduleLoadCommand'],
32
- 'modulesToLoad': !runtime_1.exists(json, 'modulesToLoad') ? undefined : json['modulesToLoad'],
31
+ 'moduleLoads': !runtime_1.exists(json, 'moduleLoads') ? undefined : (json['moduleLoads'].map(_1.ModuleLoadSpecFromJSON)),
33
32
  'hiddenOptions': !runtime_1.exists(json, 'hiddenOptions') ? undefined : (json['hiddenOptions'].map(_1.SchedulerHiddenOptionEnumFromJSON)),
34
33
  };
35
34
  }
@@ -46,8 +45,7 @@ function SchedulerProfileToJSON(value) {
46
45
  'name': value.name,
47
46
  'description': value.description,
48
47
  'owner': value.owner,
49
- 'moduleLoadCommand': value.moduleLoadCommand,
50
- 'modulesToLoad': value.modulesToLoad,
48
+ 'moduleLoads': value.moduleLoads === undefined ? undefined : (value.moduleLoads.map(_1.ModuleLoadSpecToJSON)),
51
49
  'hiddenOptions': value.hiddenOptions === undefined ? undefined : (value.hiddenOptions.map(_1.SchedulerHiddenOptionEnumToJSON)),
52
50
  };
53
51
  }
@@ -2,7 +2,7 @@
2
2
  * Tapis Systems API
3
3
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
4
4
  *
5
- * The version of the OpenAPI document: 1.0.0-rc1
5
+ * The version of the OpenAPI document: 1.6.3
6
6
  * Contact: cicsupport@tacc.utexas.edu
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Tapis Systems API
6
6
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
7
7
  *
8
- * The version of the OpenAPI document: 1.0.0-rc1
8
+ * The version of the OpenAPI document: 1.6.3
9
9
  * Contact: cicsupport@tacc.utexas.edu
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -0,0 +1,33 @@
1
+ /**
2
+ * Tapis Systems API
3
+ * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
4
+ *
5
+ * The version of the OpenAPI document: 1.6.3
6
+ * Contact: cicsupport@tacc.utexas.edu
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ShareInfo
16
+ */
17
+ export interface ShareInfo {
18
+ /**
19
+ *
20
+ * @type {boolean}
21
+ * @memberof ShareInfo
22
+ */
23
+ _public: boolean;
24
+ /**
25
+ *
26
+ * @type {Array<string>}
27
+ * @memberof ShareInfo
28
+ */
29
+ userList: Array<string>;
30
+ }
31
+ export declare function ShareInfoFromJSON(json: any): ShareInfo;
32
+ export declare function ShareInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShareInfo;
33
+ export declare function ShareInfoToJSON(value?: ShareInfo | null): any;
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Tapis Systems API
6
+ * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
7
+ *
8
+ * The version of the OpenAPI document: 1.6.3
9
+ * Contact: cicsupport@tacc.utexas.edu
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ function ShareInfoFromJSON(json) {
17
+ return ShareInfoFromJSONTyped(json, false);
18
+ }
19
+ exports.ShareInfoFromJSON = ShareInfoFromJSON;
20
+ function ShareInfoFromJSONTyped(json, ignoreDiscriminator) {
21
+ if ((json === undefined) || (json === null)) {
22
+ return json;
23
+ }
24
+ return {
25
+ '_public': json['public'],
26
+ 'userList': json['userList'],
27
+ };
28
+ }
29
+ exports.ShareInfoFromJSONTyped = ShareInfoFromJSONTyped;
30
+ function ShareInfoToJSON(value) {
31
+ if (value === undefined) {
32
+ return undefined;
33
+ }
34
+ if (value === null) {
35
+ return null;
36
+ }
37
+ return {
38
+ 'public': value._public,
39
+ 'userList': value.userList,
40
+ };
41
+ }
42
+ exports.ShareInfoToJSON = ShareInfoToJSON;
@@ -0,0 +1,64 @@
1
+ /**
2
+ * Tapis Systems API
3
+ * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
4
+ *
5
+ * The version of the OpenAPI document: 1.6.3
6
+ * Contact: cicsupport@tacc.utexas.edu
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { OperationTypeEnum } from './';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface SystemHistory
17
+ */
18
+ export interface SystemHistory {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof SystemHistory
23
+ */
24
+ jwtTenant?: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof SystemHistory
29
+ */
30
+ jwtUser?: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof SystemHistory
35
+ */
36
+ oboTenant?: string;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof SystemHistory
41
+ */
42
+ oboUser?: string;
43
+ /**
44
+ *
45
+ * @type {OperationTypeEnum}
46
+ * @memberof SystemHistory
47
+ */
48
+ operation?: OperationTypeEnum;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof SystemHistory
53
+ */
54
+ description?: string;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof SystemHistory
59
+ */
60
+ created?: string;
61
+ }
62
+ export declare function SystemHistoryFromJSON(json: any): SystemHistory;
63
+ export declare function SystemHistoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemHistory;
64
+ export declare function SystemHistoryToJSON(value?: SystemHistory | null): any;
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Tapis Systems API
6
+ * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
7
+ *
8
+ * The version of the OpenAPI document: 1.6.3
9
+ * Contact: cicsupport@tacc.utexas.edu
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ var runtime_1 = require("../runtime");
17
+ var _1 = require("./");
18
+ function SystemHistoryFromJSON(json) {
19
+ return SystemHistoryFromJSONTyped(json, false);
20
+ }
21
+ exports.SystemHistoryFromJSON = SystemHistoryFromJSON;
22
+ function SystemHistoryFromJSONTyped(json, ignoreDiscriminator) {
23
+ if ((json === undefined) || (json === null)) {
24
+ return json;
25
+ }
26
+ return {
27
+ 'jwtTenant': !runtime_1.exists(json, 'jwtTenant') ? undefined : json['jwtTenant'],
28
+ 'jwtUser': !runtime_1.exists(json, 'jwtUser') ? undefined : json['jwtUser'],
29
+ 'oboTenant': !runtime_1.exists(json, 'oboTenant') ? undefined : json['oboTenant'],
30
+ 'oboUser': !runtime_1.exists(json, 'oboUser') ? undefined : json['oboUser'],
31
+ 'operation': !runtime_1.exists(json, 'operation') ? undefined : _1.OperationTypeEnumFromJSON(json['operation']),
32
+ 'description': !runtime_1.exists(json, 'description') ? undefined : json['description'],
33
+ 'created': !runtime_1.exists(json, 'created') ? undefined : json['created'],
34
+ };
35
+ }
36
+ exports.SystemHistoryFromJSONTyped = SystemHistoryFromJSONTyped;
37
+ function SystemHistoryToJSON(value) {
38
+ if (value === undefined) {
39
+ return undefined;
40
+ }
41
+ if (value === null) {
42
+ return null;
43
+ }
44
+ return {
45
+ 'jwtTenant': value.jwtTenant,
46
+ 'jwtUser': value.jwtUser,
47
+ 'oboTenant': value.oboTenant,
48
+ 'oboUser': value.oboUser,
49
+ 'operation': _1.OperationTypeEnumToJSON(value.operation),
50
+ 'description': value.description,
51
+ 'created': value.created,
52
+ };
53
+ }
54
+ exports.SystemHistoryToJSON = SystemHistoryToJSON;
@@ -2,7 +2,7 @@
2
2
  * Tapis Systems API
3
3
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
4
4
  *
5
- * The version of the OpenAPI document: 1.0.0-rc1
5
+ * The version of the OpenAPI document: 1.6.3
6
6
  * Contact: cicsupport@tacc.utexas.edu
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- *
13
+ * Type of system
14
14
  * @export
15
15
  * @enum {string}
16
16
  */
@@ -5,7 +5,7 @@
5
5
  * Tapis Systems API
6
6
  * The Tapis Systems API provides for management of Tapis Systems including permissions, credentials and Scheduler Profiles.
7
7
  *
8
- * The version of the OpenAPI document: 1.0.0-rc1
8
+ * The version of the OpenAPI document: 1.6.3
9
9
  * Contact: cicsupport@tacc.utexas.edu
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,7 +14,7 @@
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  /**
17
- *
17
+ * Type of system
18
18
  * @export
19
19
  * @enum {string}
20
20
  */