@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
@@ -0,0 +1,25 @@
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
+ * @enum {string}
16
+ */
17
+ export declare enum KeyValueInputModeEnum {
18
+ Required = "REQUIRED",
19
+ Fixed = "FIXED",
20
+ IncludeOnDemand = "INCLUDE_ON_DEMAND",
21
+ IncludeByDefault = "INCLUDE_BY_DEFAULT"
22
+ }
23
+ export declare function KeyValueInputModeEnumFromJSON(json: any): KeyValueInputModeEnum;
24
+ export declare function KeyValueInputModeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): KeyValueInputModeEnum;
25
+ export declare function KeyValueInputModeEnumToJSON(value?: KeyValueInputModeEnum | null): any;
@@ -0,0 +1,39 @@
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
+ /**
17
+ *
18
+ * @export
19
+ * @enum {string}
20
+ */
21
+ var KeyValueInputModeEnum;
22
+ (function (KeyValueInputModeEnum) {
23
+ KeyValueInputModeEnum["Required"] = "REQUIRED";
24
+ KeyValueInputModeEnum["Fixed"] = "FIXED";
25
+ KeyValueInputModeEnum["IncludeOnDemand"] = "INCLUDE_ON_DEMAND";
26
+ KeyValueInputModeEnum["IncludeByDefault"] = "INCLUDE_BY_DEFAULT";
27
+ })(KeyValueInputModeEnum = exports.KeyValueInputModeEnum || (exports.KeyValueInputModeEnum = {}));
28
+ function KeyValueInputModeEnumFromJSON(json) {
29
+ return KeyValueInputModeEnumFromJSONTyped(json, false);
30
+ }
31
+ exports.KeyValueInputModeEnumFromJSON = KeyValueInputModeEnumFromJSON;
32
+ function KeyValueInputModeEnumFromJSONTyped(json, ignoreDiscriminator) {
33
+ return json;
34
+ }
35
+ exports.KeyValueInputModeEnumFromJSONTyped = KeyValueInputModeEnumFromJSONTyped;
36
+ function KeyValueInputModeEnumToJSON(value) {
37
+ return value;
38
+ }
39
+ exports.KeyValueInputModeEnumToJSON = KeyValueInputModeEnumToJSON;
@@ -2,13 +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 { KeyValueInputModeEnum } from './';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -27,6 +28,24 @@ export interface KeyValuePair {
27
28
  * @memberof KeyValuePair
28
29
  */
29
30
  value?: string;
31
+ /**
32
+ * Optional more verbose description.
33
+ * @type {string}
34
+ * @memberof KeyValuePair
35
+ */
36
+ description?: string;
37
+ /**
38
+ *
39
+ * @type {KeyValueInputModeEnum}
40
+ * @memberof KeyValuePair
41
+ */
42
+ inputMode?: KeyValueInputModeEnum;
43
+ /**
44
+ *
45
+ * @type {object}
46
+ * @memberof KeyValuePair
47
+ */
48
+ notes?: object;
30
49
  }
31
50
  export declare function KeyValuePairFromJSON(json: any): KeyValuePair;
32
51
  export declare function KeyValuePairFromJSONTyped(json: any, ignoreDiscriminator: boolean): KeyValuePair;
@@ -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,6 +14,7 @@
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  var runtime_1 = require("../runtime");
17
+ var _1 = require("./");
17
18
  function KeyValuePairFromJSON(json) {
18
19
  return KeyValuePairFromJSONTyped(json, false);
19
20
  }
@@ -25,6 +26,9 @@ function KeyValuePairFromJSONTyped(json, ignoreDiscriminator) {
25
26
  return {
26
27
  'key': json['key'],
27
28
  'value': !runtime_1.exists(json, 'value') ? undefined : json['value'],
29
+ 'description': !runtime_1.exists(json, 'description') ? undefined : json['description'],
30
+ 'inputMode': !runtime_1.exists(json, 'inputMode') ? undefined : _1.KeyValueInputModeEnumFromJSON(json['inputMode']),
31
+ 'notes': !runtime_1.exists(json, 'notes') ? undefined : json['notes'],
28
32
  };
29
33
  }
30
34
  exports.KeyValuePairFromJSONTyped = KeyValuePairFromJSONTyped;
@@ -38,6 +42,9 @@ function KeyValuePairToJSON(value) {
38
42
  return {
39
43
  'key': value.key,
40
44
  'value': value.value,
45
+ 'description': value.description,
46
+ 'inputMode': _1.KeyValueInputModeEnumToJSON(value.inputMode),
47
+ 'notes': value.notes,
41
48
  };
42
49
  }
43
50
  exports.KeyValuePairToJSON = KeyValuePairToJSON;
@@ -0,0 +1,24 @@
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
+ * @enum {string}
16
+ */
17
+ export declare enum ListTypeEnum {
18
+ Owned = "OWNED",
19
+ SharedPublic = "SHARED_PUBLIC",
20
+ All = "ALL"
21
+ }
22
+ export declare function ListTypeEnumFromJSON(json: any): ListTypeEnum;
23
+ export declare function ListTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListTypeEnum;
24
+ export declare function ListTypeEnumToJSON(value?: ListTypeEnum | null): any;
@@ -0,0 +1,38 @@
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
+ /**
17
+ *
18
+ * @export
19
+ * @enum {string}
20
+ */
21
+ var ListTypeEnum;
22
+ (function (ListTypeEnum) {
23
+ ListTypeEnum["Owned"] = "OWNED";
24
+ ListTypeEnum["SharedPublic"] = "SHARED_PUBLIC";
25
+ ListTypeEnum["All"] = "ALL";
26
+ })(ListTypeEnum = exports.ListTypeEnum || (exports.ListTypeEnum = {}));
27
+ function ListTypeEnumFromJSON(json) {
28
+ return ListTypeEnumFromJSONTyped(json, false);
29
+ }
30
+ exports.ListTypeEnumFromJSON = ListTypeEnumFromJSON;
31
+ function ListTypeEnumFromJSONTyped(json, ignoreDiscriminator) {
32
+ return json;
33
+ }
34
+ exports.ListTypeEnumFromJSONTyped = ListTypeEnumFromJSONTyped;
35
+ function ListTypeEnumToJSON(value) {
36
+ return value;
37
+ }
38
+ exports.ListTypeEnumToJSON = ListTypeEnumToJSON;
@@ -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 ModuleLoadSpec
16
+ */
17
+ export interface ModuleLoadSpec {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ModuleLoadSpec
22
+ */
23
+ moduleLoadCommand: string;
24
+ /**
25
+ *
26
+ * @type {Array<string>}
27
+ * @memberof ModuleLoadSpec
28
+ */
29
+ modulesToLoad?: Array<string>;
30
+ }
31
+ export declare function ModuleLoadSpecFromJSON(json: any): ModuleLoadSpec;
32
+ export declare function ModuleLoadSpecFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModuleLoadSpec;
33
+ export declare function ModuleLoadSpecToJSON(value?: ModuleLoadSpec | null): any;
@@ -0,0 +1,43 @@
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 ModuleLoadSpecFromJSON(json) {
18
+ return ModuleLoadSpecFromJSONTyped(json, false);
19
+ }
20
+ exports.ModuleLoadSpecFromJSON = ModuleLoadSpecFromJSON;
21
+ function ModuleLoadSpecFromJSONTyped(json, ignoreDiscriminator) {
22
+ if ((json === undefined) || (json === null)) {
23
+ return json;
24
+ }
25
+ return {
26
+ 'moduleLoadCommand': json['moduleLoadCommand'],
27
+ 'modulesToLoad': !runtime_1.exists(json, 'modulesToLoad') ? undefined : json['modulesToLoad'],
28
+ };
29
+ }
30
+ exports.ModuleLoadSpecFromJSONTyped = ModuleLoadSpecFromJSONTyped;
31
+ function ModuleLoadSpecToJSON(value) {
32
+ if (value === undefined) {
33
+ return undefined;
34
+ }
35
+ if (value === null) {
36
+ return null;
37
+ }
38
+ return {
39
+ 'moduleLoadCommand': value.moduleLoadCommand,
40
+ 'modulesToLoad': value.modulesToLoad,
41
+ };
42
+ }
43
+ exports.ModuleLoadSpecToJSON = ModuleLoadSpecToJSON;
@@ -0,0 +1,35 @@
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
+ * @enum {string}
16
+ */
17
+ export declare enum OperationTypeEnum {
18
+ Create = "CREATE",
19
+ Read = "READ",
20
+ Modify = "MODIFY",
21
+ Execute = "EXECUTE",
22
+ Delete = "DELETE",
23
+ Undelete = "UNDELETE",
24
+ ChangeOwner = "CHANGE_OWNER",
25
+ Enable = "ENABLE",
26
+ Disable = "DISABLE",
27
+ GetPerms = "GET_PERMS",
28
+ RevokePerms = "REVOKE_PERMS",
29
+ SetCred = "SET_CRED",
30
+ RemoveCred = "REMOVE_CRED",
31
+ GetCred = "GET_CRED"
32
+ }
33
+ export declare function OperationTypeEnumFromJSON(json: any): OperationTypeEnum;
34
+ export declare function OperationTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): OperationTypeEnum;
35
+ export declare function OperationTypeEnumToJSON(value?: OperationTypeEnum | null): any;
@@ -0,0 +1,49 @@
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
+ /**
17
+ *
18
+ * @export
19
+ * @enum {string}
20
+ */
21
+ var OperationTypeEnum;
22
+ (function (OperationTypeEnum) {
23
+ OperationTypeEnum["Create"] = "CREATE";
24
+ OperationTypeEnum["Read"] = "READ";
25
+ OperationTypeEnum["Modify"] = "MODIFY";
26
+ OperationTypeEnum["Execute"] = "EXECUTE";
27
+ OperationTypeEnum["Delete"] = "DELETE";
28
+ OperationTypeEnum["Undelete"] = "UNDELETE";
29
+ OperationTypeEnum["ChangeOwner"] = "CHANGE_OWNER";
30
+ OperationTypeEnum["Enable"] = "ENABLE";
31
+ OperationTypeEnum["Disable"] = "DISABLE";
32
+ OperationTypeEnum["GetPerms"] = "GET_PERMS";
33
+ OperationTypeEnum["RevokePerms"] = "REVOKE_PERMS";
34
+ OperationTypeEnum["SetCred"] = "SET_CRED";
35
+ OperationTypeEnum["RemoveCred"] = "REMOVE_CRED";
36
+ OperationTypeEnum["GetCred"] = "GET_CRED";
37
+ })(OperationTypeEnum = exports.OperationTypeEnum || (exports.OperationTypeEnum = {}));
38
+ function OperationTypeEnumFromJSON(json) {
39
+ return OperationTypeEnumFromJSONTyped(json, false);
40
+ }
41
+ exports.OperationTypeEnumFromJSON = OperationTypeEnumFromJSON;
42
+ function OperationTypeEnumFromJSONTyped(json, ignoreDiscriminator) {
43
+ return json;
44
+ }
45
+ exports.OperationTypeEnumFromJSONTyped = OperationTypeEnumFromJSONTyped;
46
+ function OperationTypeEnumToJSON(value) {
47
+ return value;
48
+ }
49
+ exports.OperationTypeEnumToJSON = OperationTypeEnumToJSON;
@@ -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).
@@ -17,19 +17,19 @@ import { AuthnEnum, Capability, JobRuntime, KeyValuePair, LogicalQueue, Schedule
17
17
  */
18
18
  export interface ReqPatchSystem {
19
19
  /**
20
- *
20
+ * Optional more verbose description.
21
21
  * @type {string}
22
22
  * @memberof ReqPatchSystem
23
23
  */
24
24
  description?: string;
25
25
  /**
26
- *
26
+ * FQDN, IP address, Globus endpoint ID or Globus collection ID.
27
27
  * @type {string}
28
28
  * @memberof ReqPatchSystem
29
29
  */
30
30
  host?: string;
31
31
  /**
32
- *
32
+ * Username to use when accessing the system. A specific user (such as a service account) or the dynamic user ``${apiUserId}``.
33
33
  * @type {string}
34
34
  * @memberof ReqPatchSystem
35
35
  */
@@ -65,29 +65,35 @@ export interface ReqPatchSystem {
65
65
  */
66
66
  proxyPort?: number;
67
67
  /**
68
- *
68
+ * An alternate system to use as a Data Transfer Node (DTN) during job execution.
69
69
  * @type {string}
70
70
  * @memberof ReqPatchSystem
71
71
  */
72
72
  dtnSystemId?: string;
73
73
  /**
74
- *
75
- * @type {string}
74
+ * Indicates if system supports running jobs using a batch scheduler.
75
+ * @type {boolean}
76
76
  * @memberof ReqPatchSystem
77
77
  */
78
- dtnMountPoint?: string;
78
+ canRunBatch?: boolean;
79
79
  /**
80
80
  *
81
- * @type {string}
81
+ * @type {boolean}
82
82
  * @memberof ReqPatchSystem
83
83
  */
84
- dtnMountSourcePath?: string;
84
+ enableCmdPrefix?: boolean;
85
85
  /**
86
- *
86
+ * Indicates if system allows for the creation of child systems.
87
87
  * @type {boolean}
88
88
  * @memberof ReqPatchSystem
89
89
  */
90
- canRunBatch?: boolean;
90
+ allowChildren?: boolean;
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof ReqPatchSystem
95
+ */
96
+ mpiCmd?: string;
91
97
  /**
92
98
  *
93
99
  * @type {Array<JobRuntime>}
@@ -160,12 +166,6 @@ export interface ReqPatchSystem {
160
166
  * @memberof ReqPatchSystem
161
167
  */
162
168
  notes?: object;
163
- /**
164
- *
165
- * @type {string}
166
- * @memberof ReqPatchSystem
167
- */
168
- importRefId?: string;
169
169
  }
170
170
  export declare function ReqPatchSystemFromJSON(json: any): ReqPatchSystem;
171
171
  export declare function ReqPatchSystemFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqPatchSystem;
@@ -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).
@@ -33,9 +33,10 @@ function ReqPatchSystemFromJSONTyped(json, ignoreDiscriminator) {
33
33
  'proxyHost': !runtime_1.exists(json, 'proxyHost') ? undefined : json['proxyHost'],
34
34
  'proxyPort': !runtime_1.exists(json, 'proxyPort') ? undefined : json['proxyPort'],
35
35
  'dtnSystemId': !runtime_1.exists(json, 'dtnSystemId') ? undefined : json['dtnSystemId'],
36
- 'dtnMountPoint': !runtime_1.exists(json, 'dtnMountPoint') ? undefined : json['dtnMountPoint'],
37
- 'dtnMountSourcePath': !runtime_1.exists(json, 'dtnMountSourcePath') ? undefined : json['dtnMountSourcePath'],
38
36
  'canRunBatch': !runtime_1.exists(json, 'canRunBatch') ? undefined : json['canRunBatch'],
37
+ 'enableCmdPrefix': !runtime_1.exists(json, 'enableCmdPrefix') ? undefined : json['enableCmdPrefix'],
38
+ 'allowChildren': !runtime_1.exists(json, 'allowChildren') ? undefined : json['allowChildren'],
39
+ 'mpiCmd': !runtime_1.exists(json, 'mpiCmd') ? undefined : json['mpiCmd'],
39
40
  'jobRuntimes': !runtime_1.exists(json, 'jobRuntimes') ? undefined : (json['jobRuntimes'].map(_1.JobRuntimeFromJSON)),
40
41
  'jobWorkingDir': !runtime_1.exists(json, 'jobWorkingDir') ? undefined : json['jobWorkingDir'],
41
42
  'jobEnvVariables': !runtime_1.exists(json, 'jobEnvVariables') ? undefined : (json['jobEnvVariables'].map(_1.KeyValuePairFromJSON)),
@@ -48,7 +49,6 @@ function ReqPatchSystemFromJSONTyped(json, ignoreDiscriminator) {
48
49
  'jobCapabilities': !runtime_1.exists(json, 'jobCapabilities') ? undefined : (json['jobCapabilities'].map(_1.CapabilityFromJSON)),
49
50
  'tags': !runtime_1.exists(json, 'tags') ? undefined : json['tags'],
50
51
  'notes': !runtime_1.exists(json, 'notes') ? undefined : json['notes'],
51
- 'importRefId': !runtime_1.exists(json, 'importRefId') ? undefined : json['importRefId'],
52
52
  };
53
53
  }
54
54
  exports.ReqPatchSystemFromJSONTyped = ReqPatchSystemFromJSONTyped;
@@ -69,9 +69,10 @@ function ReqPatchSystemToJSON(value) {
69
69
  'proxyHost': value.proxyHost,
70
70
  'proxyPort': value.proxyPort,
71
71
  'dtnSystemId': value.dtnSystemId,
72
- 'dtnMountPoint': value.dtnMountPoint,
73
- 'dtnMountSourcePath': value.dtnMountSourcePath,
74
72
  'canRunBatch': value.canRunBatch,
73
+ 'enableCmdPrefix': value.enableCmdPrefix,
74
+ 'allowChildren': value.allowChildren,
75
+ 'mpiCmd': value.mpiCmd,
75
76
  'jobRuntimes': value.jobRuntimes === undefined ? undefined : (value.jobRuntimes.map(_1.JobRuntimeToJSON)),
76
77
  'jobWorkingDir': value.jobWorkingDir,
77
78
  'jobEnvVariables': value.jobEnvVariables === undefined ? undefined : (value.jobEnvVariables.map(_1.KeyValuePairToJSON)),
@@ -84,7 +85,6 @@ function ReqPatchSystemToJSON(value) {
84
85
  'jobCapabilities': value.jobCapabilities === undefined ? undefined : (value.jobCapabilities.map(_1.CapabilityToJSON)),
85
86
  'tags': value.tags,
86
87
  'notes': value.notes,
87
- 'importRefId': value.importRefId,
88
88
  };
89
89
  }
90
90
  exports.ReqPatchSystemToJSON = ReqPatchSystemToJSON;
@@ -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 ReqPostChildSystem
16
+ */
17
+ export interface ReqPostChildSystem {
18
+ /**
19
+ * Short descriptive name for the system that is unique within the tenant.
20
+ * @type {string}
21
+ * @memberof ReqPostChildSystem
22
+ */
23
+ id?: string;
24
+ /**
25
+ * Username to use when accessing the system. A specific user (such as a service account) or the dynamic user ``${apiUserId}``.
26
+ * @type {string}
27
+ * @memberof ReqPostChildSystem
28
+ */
29
+ effectiveUserId: string;
30
+ /**
31
+ * Effective root directory to be used when listing files or moving files to and from the system.
32
+ * @type {string}
33
+ * @memberof ReqPostChildSystem
34
+ */
35
+ rootDir: string;
36
+ }
37
+ export declare function ReqPostChildSystemFromJSON(json: any): ReqPostChildSystem;
38
+ export declare function ReqPostChildSystemFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqPostChildSystem;
39
+ export declare function ReqPostChildSystemToJSON(value?: ReqPostChildSystem | 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 ReqPostChildSystemFromJSON(json) {
18
+ return ReqPostChildSystemFromJSONTyped(json, false);
19
+ }
20
+ exports.ReqPostChildSystemFromJSON = ReqPostChildSystemFromJSON;
21
+ function ReqPostChildSystemFromJSONTyped(json, ignoreDiscriminator) {
22
+ if ((json === undefined) || (json === null)) {
23
+ return json;
24
+ }
25
+ return {
26
+ 'id': !runtime_1.exists(json, 'id') ? undefined : json['id'],
27
+ 'effectiveUserId': json['effectiveUserId'],
28
+ 'rootDir': json['rootDir'],
29
+ };
30
+ }
31
+ exports.ReqPostChildSystemFromJSONTyped = ReqPostChildSystemFromJSONTyped;
32
+ function ReqPostChildSystemToJSON(value) {
33
+ if (value === undefined) {
34
+ return undefined;
35
+ }
36
+ if (value === null) {
37
+ return null;
38
+ }
39
+ return {
40
+ 'id': value.id,
41
+ 'effectiveUserId': value.effectiveUserId,
42
+ 'rootDir': value.rootDir,
43
+ };
44
+ }
45
+ exports.ReqPostChildSystemToJSON = ReqPostChildSystemToJSON;