@nexgencloud/hyperstack-sdk-javascript 1.25.0-alpha → 1.48.0-alpha

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 (420) hide show
  1. package/README.md +268 -245
  2. package/dist/ApiClient.js +2 -7
  3. package/dist/api/AccessKeysApi.js +168 -0
  4. package/dist/api/AliveApi.js +33 -2
  5. package/dist/api/ApiKeyApi.js +33 -33
  6. package/dist/api/AssigningMemberRoleApi.js +20 -20
  7. package/dist/api/AuthApi.js +146 -6
  8. package/dist/api/BetaAccessApi.js +161 -0
  9. package/dist/api/BillingApi.js +1394 -465
  10. package/dist/api/BucketsApi.js +180 -0
  11. package/dist/api/CalculateApi.js +9 -9
  12. package/dist/api/CallbacksApi.js +87 -87
  13. package/dist/api/ClusterEventsApi.js +8 -8
  14. package/dist/api/ClustersApi.js +531 -23
  15. package/dist/api/ComplianceApi.js +24 -24
  16. package/dist/api/CreditApi.js +13 -11
  17. package/dist/api/CustomerContractApi.js +71 -71
  18. package/dist/api/DashboardApi.js +9 -9
  19. package/dist/api/DeploymentApi.js +11 -11
  20. package/dist/api/EnvironmentApi.js +83 -41
  21. package/dist/api/FIPExclusionsApi.js +85 -0
  22. package/dist/api/FirewallAttachmentApi.js +11 -9
  23. package/dist/api/FirewallsApi.js +82 -82
  24. package/dist/api/FlavorApi.js +4 -4
  25. package/dist/api/FloatingIpApi.js +31 -31
  26. package/dist/api/GpuApi.js +7 -7
  27. package/dist/api/HealthApi.js +76 -0
  28. package/dist/api/ImageApi.js +25 -25
  29. package/dist/api/InviteApi.js +53 -12
  30. package/dist/api/KeypairApi.js +17 -17
  31. package/dist/api/OrganizationApi.js +10 -10
  32. package/dist/api/PartnerConfigApi.js +117 -0
  33. package/dist/api/PaymentApi.js +66 -21
  34. package/dist/api/PermissionApi.js +4 -4
  35. package/dist/api/PolicyApi.js +4 -4
  36. package/dist/api/PricebookApi.js +9 -7
  37. package/dist/api/ProfileApi.js +43 -43
  38. package/dist/api/RbacRoleApi.js +46 -46
  39. package/dist/api/RegionApi.js +6 -6
  40. package/dist/api/RegionsApi.js +76 -0
  41. package/dist/api/SecurityRulesApi.js +2 -2
  42. package/dist/api/SnapshotEventsApi.js +8 -8
  43. package/dist/api/SnapshotsApi.js +73 -73
  44. package/dist/api/StockApi.js +9 -9
  45. package/dist/api/TemplateApi.js +50 -50
  46. package/dist/api/UserApi.js +53 -47
  47. package/dist/api/UserDetailChoiceApi.js +9 -9
  48. package/dist/api/UserPermissionApi.js +7 -7
  49. package/dist/api/VirtualMachineApi.js +464 -355
  50. package/dist/api/VirtualMachineEventsApi.js +16 -16
  51. package/dist/api/VncUrlApi.js +32 -28
  52. package/dist/api/VolumeApi.js +108 -59
  53. package/dist/api/VolumeAttachmentApi.js +79 -33
  54. package/dist/api/VouchersApi.js +86 -0
  55. package/dist/index.js +525 -714
  56. package/dist/model/{EnvironmentFieldsforVolume.js → AccessTokenField.js} +23 -23
  57. package/dist/model/AddUserInfoSuccessResponseModel.js +1 -1
  58. package/dist/model/AllocatedGPUCountGraph.js +1 -1
  59. package/dist/model/ApiKeyFields.js +1 -1
  60. package/dist/model/AssignRbacRolePayload.js +1 -1
  61. package/dist/model/AttachCallbackPayload.js +1 -1
  62. package/dist/model/AttachCallbackResponse.js +1 -1
  63. package/dist/model/AttachFirewallWithVM.js +1 -1
  64. package/dist/model/AttachFirewallsToVMPayload.js +1 -1
  65. package/dist/model/AttachVolumeFields.js +21 -1
  66. package/dist/model/AttachVolumes.js +1 -1
  67. package/dist/model/AttachVolumesPayload.js +13 -2
  68. package/dist/model/{InternalVolumeAttachmentFields.js → AttachmentsFieldsForVolume.js} +39 -37
  69. package/dist/model/{VirtualMachineUsage.js → Attributes.js} +68 -34
  70. package/dist/model/AuthGetTokenResponseModel.js +5 -13
  71. package/dist/model/AuthUserFields.js +1 -1
  72. package/dist/model/AuthUserInfoResponseModel.js +1 -1
  73. package/dist/model/{FlavorVMFields.js → BetaAccessRequestFields.js} +68 -50
  74. package/dist/model/BetaAccessRequestPayload.js +122 -0
  75. package/dist/model/{CreateDiscountResponse.js → BetaAccessRequestResponseModel.js} +27 -27
  76. package/dist/model/{Creditrequests.js → BetaAccessStatusItem.js} +57 -42
  77. package/dist/model/{VolumesLastStatusChangeResponse.js → BetaAccessStatusResponseModel.js} +38 -37
  78. package/dist/model/BillingHistory.js +99 -0
  79. package/dist/model/{WarningMailLogResponse.js → BillingHistoryDataSynthesisDetails.js} +48 -43
  80. package/dist/model/{VMUsageResponse.js → BillingHistoryFineTuning.js} +46 -41
  81. package/dist/model/BillingHistoryModelEvalutationDetails.js +143 -0
  82. package/dist/model/{ContractEligibleInstancesResponse.js → BillingHistoryServerlessInference.js} +48 -43
  83. package/dist/model/{GetAllDiscountForAllOrganizationResponse.js → BillingHistoryServerlessInferenceDetails.js} +52 -39
  84. package/dist/model/{Billingmetricesfields.js → BillingMetricesFields.js} +28 -28
  85. package/dist/model/{Billingmetricesresponse.js → BillingMetricesResponse.js} +24 -24
  86. package/dist/model/ClusterEvents.js +1 -1
  87. package/dist/model/ClusterEventsFields.js +1 -1
  88. package/dist/model/ClusterFields.js +76 -13
  89. package/dist/model/{FlavorPayload.js → ClusterFlavorFields.js} +74 -74
  90. package/dist/model/ClusterListResponse.js +1 -1
  91. package/dist/model/{InternalSecurityRulesFieldsForInstance.js → ClusterNodeFields.js} +76 -58
  92. package/dist/model/{InternalInstanceKeypairFields.js → ClusterNodeGroupFields.js} +65 -43
  93. package/dist/model/{StockVisibilityUserListResponse.js → ClusterNodeGroupsCreateResponse.js} +46 -32
  94. package/dist/model/{CreateUpdatePolicyResponseModel.js → ClusterNodeGroupsGetResponse.js} +27 -27
  95. package/dist/model/{InternalInstancesResponse.js → ClusterNodeGroupsListResponse.js} +36 -36
  96. package/dist/model/{ContractEligibleInstanceFields.js → ClusterNodeInstanceFields.js} +53 -45
  97. package/dist/model/{ImageLogos.js → ClusterNodesListResponse.js} +36 -36
  98. package/dist/model/ClusterResponse.js +1 -1
  99. package/dist/model/{GetVersionResponse.js → ClusterVersion.js} +54 -30
  100. package/dist/model/ClusterVersions.js +27 -6
  101. package/dist/model/Colors.js +105 -0
  102. package/dist/model/CommonResponseModel.js +1 -1
  103. package/dist/model/ComplianceFields.js +1 -1
  104. package/dist/model/ComplianceModelFields.js +1 -1
  105. package/dist/model/CompliancePayload.js +1 -1
  106. package/dist/model/ComplianceResponse.js +1 -1
  107. package/dist/model/ContainerOverviewFields.js +1 -1
  108. package/dist/model/Contract.js +1 -1
  109. package/dist/model/ContractDiscountPlanFields.js +9 -1
  110. package/dist/model/ContractGPUAllocationGraphResponse.js +1 -1
  111. package/dist/model/ContractInstanceFields.js +15 -1
  112. package/dist/model/ContractInstancesResponse.js +1 -1
  113. package/dist/model/{ApiKeyVerifyFields.js → CreateClusterNodeFields.js} +48 -38
  114. package/dist/model/{CreateUpdatePolicyPayload.js → CreateClusterNodeGroupPayload.js} +72 -44
  115. package/dist/model/CreateClusterPayload.js +74 -22
  116. package/dist/model/CreateEnvironment.js +3 -3
  117. package/dist/model/CreateFirewallPayload.js +1 -1
  118. package/dist/model/CreateFirewallRulePayload.js +1 -1
  119. package/dist/model/CreateImage.js +1 -1
  120. package/dist/model/CreateImagePayload.js +1 -1
  121. package/dist/model/CreateInstancesPayload.js +11 -11
  122. package/dist/model/CreateInstancesResponse.js +1 -1
  123. package/dist/model/CreateProfilePayload.js +3 -3
  124. package/dist/model/CreateProfileResponse.js +1 -1
  125. package/dist/model/CreateSecurityRulePayload.js +1 -1
  126. package/dist/model/CreateSnapshotPayload.js +5 -16
  127. package/dist/model/CreateSnapshotResponse.js +1 -1
  128. package/dist/model/CreateUpdateComplianceResponse.js +1 -1
  129. package/dist/model/CreateUpdateRbacRolePayload.js +1 -1
  130. package/dist/model/CreateVolumePayload.js +3 -3
  131. package/dist/model/CustomerContractDetailResponseModel.js +1 -1
  132. package/dist/model/CustomerContractFields.js +1 -1
  133. package/dist/model/DashboardInfoResponse.js +1 -1
  134. package/dist/model/{ContractBillingHistoryResponseModel.js → DataSynthesisBillingHistoryDetailsResponseSchema.js} +29 -27
  135. package/dist/model/{ContractlBillingHistoryResponseMetrics.js → DeleteClusterNodesFields.js} +25 -21
  136. package/dist/model/DeploymentFields.js +1 -1
  137. package/dist/model/{DeploymentFieldsforstartdeployments.js → DeploymentFieldsForStartDeployments.js} +24 -24
  138. package/dist/model/Deployments.js +1 -1
  139. package/dist/model/DetachVolumes.js +1 -1
  140. package/dist/model/DetachVolumesPayload.js +1 -1
  141. package/dist/model/{EditlabelofanexistingVMPayload.js → EditLabelOfAnExistingVMPayload.js} +18 -18
  142. package/dist/model/Environment.js +1 -1
  143. package/dist/model/EnvironmentFeatures.js +36 -1
  144. package/dist/model/EnvironmentFields.js +1 -1
  145. package/dist/model/{InternalEnvironmentFields.js → EnvironmentFieldsForVolume.js} +23 -31
  146. package/dist/model/Environments.js +1 -1
  147. package/dist/model/ErrorResponseModel.js +1 -1
  148. package/dist/model/FirewallAttachmentModel.js +1 -1
  149. package/dist/model/FirewallAttachmentVMModel.js +1 -1
  150. package/dist/model/FirewallDetailFields.js +1 -1
  151. package/dist/model/FirewallDetailResponse.js +1 -1
  152. package/dist/model/FirewallEnvironmentFields.js +1 -1
  153. package/dist/model/FirewallFields.js +1 -1
  154. package/dist/model/FirewallResponse.js +1 -1
  155. package/dist/model/FirewallRule.js +1 -1
  156. package/dist/model/FirewallsListResponse.js +1 -1
  157. package/dist/model/FlavorFields.js +9 -1
  158. package/dist/model/FlavorItemGetResponse.js +1 -1
  159. package/dist/model/{CustomerFields.js → FlavorLabelFields.js} +26 -24
  160. package/dist/model/FlavorListResponse.js +1 -1
  161. package/dist/model/FlavorObjectFields.js +1 -1
  162. package/dist/model/GPUFields.js +1 -1
  163. package/dist/model/GPUList.js +1 -1
  164. package/dist/model/GPURegionFields.js +1 -1
  165. package/dist/model/GenerateUpdateApiKeyPayload.js +1 -1
  166. package/dist/model/GenerateUpdateApiKeyResponseModel.js +1 -1
  167. package/dist/model/GetApiKeysResponseModel.js +1 -1
  168. package/dist/model/{Getcreditandthresholdinfo.js → GetCreditAndThresholdInfo.js} +20 -20
  169. package/dist/model/{Getcreditandthresholdinfoinresponse.js → GetCreditAndThresholdInfoInResponse.js} +24 -24
  170. package/dist/model/GetCustomerContractsListResponseModel.js +1 -1
  171. package/dist/model/GetInstanceLogsResponse.js +89 -0
  172. package/dist/model/GetInvitesResponseModel.js +1 -1
  173. package/dist/model/GetOrganizationResponseModel.js +1 -1
  174. package/dist/model/GetPermissionsResponseModel.js +1 -1
  175. package/dist/model/GetPoliciesResponseModel.js +1 -1
  176. package/dist/model/GetRbacRolesResponseModel.js +1 -1
  177. package/dist/model/GetUserPermissionsResponseModel.js +1 -1
  178. package/dist/model/GraphDatetimeValueModel.js +1 -1
  179. package/dist/model/Image.js +1 -1
  180. package/dist/model/ImageFields.js +1 -1
  181. package/dist/model/ImageGetResponse.js +1 -1
  182. package/dist/model/Images.js +1 -1
  183. package/dist/model/ImportKeypairPayload.js +1 -1
  184. package/dist/model/ImportKeypairResponse.js +1 -1
  185. package/dist/model/InfrahubResourceObjectResponseForCustomer.js +1 -1
  186. package/dist/model/Instance.js +1 -1
  187. package/dist/model/InstanceEnvironmentFields.js +1 -1
  188. package/dist/model/InstanceEvents.js +1 -1
  189. package/dist/model/InstanceEventsFields.js +1 -1
  190. package/dist/model/InstanceFields.js +21 -5
  191. package/dist/model/InstanceFlavorFields.js +42 -1
  192. package/dist/model/InstanceImageFields.js +1 -1
  193. package/dist/model/InstanceKeypairFields.js +1 -1
  194. package/dist/model/InstanceOverviewFields.js +1 -1
  195. package/dist/model/InstanceResizePayload.js +1 -1
  196. package/dist/model/Instances.js +1 -1
  197. package/dist/model/InviteFields.js +1 -1
  198. package/dist/model/InviteUserPayload.js +1 -1
  199. package/dist/model/InviteUserResponseModel.js +1 -1
  200. package/dist/model/KeypairEnvironmentFeatures.js +120 -0
  201. package/dist/model/{InternalVolumeFields.js → KeypairEnvironmentFields.js} +41 -39
  202. package/dist/model/KeypairFields.js +8 -6
  203. package/dist/model/Keypairs.js +1 -1
  204. package/dist/model/LableResonse.js +1 -1
  205. package/dist/model/{Lastdaycostfields.js → LastDayCostFields.js} +21 -21
  206. package/dist/model/{Lastdaycostresponse.js → LastDayCostResponse.js} +24 -24
  207. package/dist/model/{TokenFields.js → Logos.js} +47 -35
  208. package/dist/model/{LogoutPayload.js → MFAStatusFields.js} +27 -30
  209. package/dist/model/{GPU.js → MFAStatusResponse.js} +31 -31
  210. package/dist/model/{VerifyApiKeyResponseModel.js → ManualReconciliationModel.js} +33 -29
  211. package/dist/model/{Creditrequestresponse.js → MasterFlavorsResponse.js} +30 -30
  212. package/dist/model/MetricItemFields.js +1 -1
  213. package/dist/model/MetricsFields.js +1 -1
  214. package/dist/model/ModelEvaluationBillingHistoryDetailsResponseSchema.js +113 -0
  215. package/dist/model/NameAvailableModel.js +1 -1
  216. package/dist/model/NewConfigurationsResponse.js +1 -1
  217. package/dist/model/NewModelResponse.js +1 -1
  218. package/dist/model/NewStockResponse.js +1 -1
  219. package/dist/model/NewStockRetriveResponse.js +1 -1
  220. package/dist/model/ObjectStorageAccessKeyCreateRequest.js +117 -0
  221. package/dist/model/{FutureNodeModel.js → ObjectStorageAccessKeyCreateResponse.js} +70 -66
  222. package/dist/model/{ContractChangePayload.js → ObjectStorageAccessKeyListResponse.js} +44 -64
  223. package/dist/model/{FutureNodeUpdateModel.js → ObjectStorageAccessKeyResponse.js} +60 -51
  224. package/dist/model/{SetDefaultsPayload.js → ObjectStorageBucketListResponse.js} +53 -37
  225. package/dist/model/{CreateUpdatePermissionPayload.js → ObjectStorageBucketResponse.js} +75 -49
  226. package/dist/model/{PowerUsageModel.js → ObjectStorageDeleteResponse.js} +28 -38
  227. package/dist/model/{ContractEventCreateModel.js → ObjectStorageErrorResponse.js} +40 -47
  228. package/dist/model/{VerifyApiKeyPayload.js → ObjectStorageHealthResponse.js} +28 -29
  229. package/dist/model/{SingleVisibilityUserResponse.js → ObjectStoragePaginationMeta.js} +38 -38
  230. package/dist/model/{CreateGPU.js → ObjectStorageRegionListResponse.js} +46 -53
  231. package/dist/model/{RegionPayload.js → ObjectStorageRegionResponse.js} +20 -32
  232. package/dist/model/ObjectStorageRegionsEnum.js +53 -0
  233. package/dist/model/OrganizationFields.js +1 -1
  234. package/dist/model/OrganizationLevelBillingHistory.js +1 -1
  235. package/dist/model/OrganizationLevelBillingHistoryResources.js +1 -1
  236. package/dist/model/OrganizationLevelBillingHistoryResponseAttributes.js +1 -1
  237. package/dist/model/OrganizationLevelBillingHistoryResponseMetrics.js +1 -1
  238. package/dist/model/OrganizationLevelBillingHistoryResponseModel.js +1 -1
  239. package/dist/model/{OrganizationThresholdfields.js → OrganizationThresholdFields.js} +22 -22
  240. package/dist/model/{Organizationthresholdupdateresponse.js → OrganizationThresholdUpdateResponse.js} +24 -24
  241. package/dist/model/{Organizationthresholdsresponse.js → OrganizationThresholdsResponse.js} +24 -24
  242. package/dist/model/OrganizationUserResponseModel.js +1 -1
  243. package/dist/model/OverviewInfo.js +1 -1
  244. package/dist/model/Pagination.js +104 -0
  245. package/dist/model/PaginationData.js +1 -1
  246. package/dist/model/PartnerConfig.js +192 -0
  247. package/dist/model/PaymentDetailsFields.js +21 -1
  248. package/dist/model/PaymentDetailsResponse.js +1 -1
  249. package/dist/model/PaymentInitiateFields.js +1 -1
  250. package/dist/model/PaymentInitiatePayload.js +1 -1
  251. package/dist/model/PaymentInitiateResponse.js +1 -1
  252. package/dist/model/PermissionFields.js +1 -1
  253. package/dist/model/PolicyFields.js +1 -1
  254. package/dist/model/PolicyPermissionFields.js +1 -1
  255. package/dist/model/PricebookModel.js +1 -1
  256. package/dist/model/PricebookResourceObjectResponseForCustomer.js +1 -1
  257. package/dist/model/{NewStockUpdateResponseModel.js → PrimaryColor.js} +31 -27
  258. package/dist/model/ProfileFields.js +1 -1
  259. package/dist/model/ProfileListResponse.js +1 -1
  260. package/dist/model/ProfileObjectFields.js +1 -1
  261. package/dist/model/RbacRoleDetailResponseModel.js +1 -1
  262. package/dist/model/RbacRoleDetailResponseModelFixed.js +1 -1
  263. package/dist/model/RbacRoleField.js +1 -1
  264. package/dist/model/RbacRoleFields.js +1 -1
  265. package/dist/model/{CustomerPayload.js → RedeemVoucherPayload.js} +29 -38
  266. package/dist/model/RegionFields.js +49 -1
  267. package/dist/model/Regions.js +1 -1
  268. package/dist/model/RemoveMemberFromOrganizationResponseModel.js +1 -1
  269. package/dist/model/RemoveMemberPayload.js +1 -1
  270. package/dist/model/RequestConsole.js +1 -1
  271. package/dist/model/{ExcludeBillingPostResponse.js → RequestInstanceLogsPayload.js} +22 -27
  272. package/dist/model/RequestInstanceLogsResponse.js +85 -0
  273. package/dist/model/ResourceBillingEventsHistoryMetrics.js +1 -1
  274. package/dist/model/ResourceBillingEventsHistoryResponse.js +1 -1
  275. package/dist/model/ResourceBillingResponseForCustomer.js +1 -1
  276. package/dist/model/{ContractBillingHistory.js → ResourceLevelBillingBucketDetailsResources.js} +27 -27
  277. package/dist/model/ResourceLevelBillingDetailsAttributes.js +1 -1
  278. package/dist/model/ResourceLevelBillingDetailsMetrics.js +1 -1
  279. package/dist/model/ResourceLevelBillingDetailsVM.js +1 -1
  280. package/dist/model/ResourceLevelBillingDetailsVolume.js +1 -1
  281. package/dist/model/ResourceLevelBillingDetailsVolumeAttributes.js +1 -1
  282. package/dist/model/ResourceLevelBillingDetailsVolumeMetrics.js +1 -1
  283. package/dist/model/ResourceLevelBillingHistory.js +1 -1
  284. package/dist/model/ResourceLevelBillingHistoryResources.js +1 -1
  285. package/dist/model/{NodeResponseModel.js → ResourceLevelBillingHistoryResourcesCluster.js} +47 -31
  286. package/dist/model/ResourceLevelBillingHistoryResponseAttributes.js +9 -1
  287. package/dist/model/ResourceLevelBillingHistoryResponseMetrics.js +1 -1
  288. package/dist/model/ResourceLevelBillingVMDetailsResources.js +1 -1
  289. package/dist/model/ResourceLevelBillingVolumeDetailsResources.js +1 -1
  290. package/dist/model/{AuthRequestLoginResponseModel.js → ResourceLevelBucketBillingDetailsResponseModel.js} +27 -27
  291. package/dist/model/{CreateUpdatePermissionResponseModel.js → ResourceLevelBucketBillingHistoryResponseModel.js} +31 -31
  292. package/dist/model/ResourceLevelClusterBillingDetailsResponseModel.js +111 -0
  293. package/dist/model/ResourceLevelClusterBillingHistoryResponseModel.js +111 -0
  294. package/dist/model/ResourceLevelClusterGraphBillingDetailsResponseModel.js +111 -0
  295. package/dist/model/ResourceLevelGraphBillingDetailVolume.js +1 -1
  296. package/dist/model/ResourceLevelGraphBillingDetailsAttributes.js +1 -1
  297. package/dist/model/{OrganizationObjectResponse.js → ResourceLevelGraphBillingDetailsBucket.js} +45 -29
  298. package/dist/model/ResourceLevelGraphBillingDetailsMetrics.js +1 -1
  299. package/dist/model/ResourceLevelGraphBillingDetailsVM.js +1 -1
  300. package/dist/model/ResourceLevelGraphBillingVMDetailsResources.js +1 -1
  301. package/dist/model/ResourceLevelGraphBillingVolumeDetailsResources.js +1 -1
  302. package/dist/model/ResourceLevelVMBillingDetailsResponseModel.js +1 -1
  303. package/dist/model/ResourceLevelVmBillingHistoryResponseModel.js +1 -1
  304. package/dist/model/ResourceLevelVmGraphBillingDetailsResponseModel.js +1 -1
  305. package/dist/model/ResourceLevelVolumeBillingDetailsResponseModel.js +1 -1
  306. package/dist/model/ResourceLevelVolumeBillingHistoryResponseModel.js +1 -1
  307. package/dist/model/ResourceLevelVolumeGraphBillingDetailsResponseModel.js +1 -1
  308. package/dist/model/ResourceObjectResponseForCustomer.js +1 -1
  309. package/dist/model/ResponseModel.js +1 -1
  310. package/dist/model/RolePermissionFields.js +1 -1
  311. package/dist/model/RolePolicyFields.js +1 -1
  312. package/dist/model/{Data.js → SecondaryColor.js} +31 -38
  313. package/dist/model/SecurityGroupRule.js +1 -1
  314. package/dist/model/SecurityGroupRuleFields.js +1 -1
  315. package/dist/model/{SecurityRulesFieldsforInstance.js → SecurityRulesFieldsForInstance.js} +26 -26
  316. package/dist/model/SecurityRulesProtocolFields.js +1 -1
  317. package/dist/model/{Organizationcreditrechargelimitresponse.js → ServerlessInferencedBillingHistoryDetailsResponseSchema.js} +29 -27
  318. package/dist/model/SnapshotFields.js +27 -5
  319. package/dist/model/SnapshotRestoreRequest.js +1 -1
  320. package/dist/model/SnapshotRetrieve.js +1 -1
  321. package/dist/model/SnapshotRetrieveFields.js +170 -5
  322. package/dist/model/Snapshots.js +1 -1
  323. package/dist/model/StartDeployment.js +5 -5
  324. package/dist/model/StartDeploymentPayload.js +1 -1
  325. package/dist/model/SubResourceGraphBillingDetailsMetrics.js +1 -1
  326. package/dist/model/SubResourcesCostsResponseModel.js +1 -1
  327. package/dist/model/SubResourcesGraphBillingHistoryFields.js +1 -1
  328. package/dist/model/SubResourcesGraphResponseModel.js +1 -1
  329. package/dist/model/{Subscribeorunsubscribeupdatepayload.js → SubscribeOrUnsubscribeUpdatePayload.js} +20 -20
  330. package/dist/model/Template.js +1 -1
  331. package/dist/model/TemplateFields.js +1 -1
  332. package/dist/model/Templates.js +1 -1
  333. package/dist/model/TokenBasedBillingHistoryResponse.js +113 -0
  334. package/dist/model/URIs.js +161 -0
  335. package/dist/model/UpdateClusterNodeGroupPayload.js +93 -0
  336. package/dist/model/UpdateEnvironment.js +1 -1
  337. package/dist/model/UpdateKeypairName.js +1 -1
  338. package/dist/model/{UpdateKeypairnameresponse.js → UpdateKeypairNameResponse.js} +20 -20
  339. package/dist/model/UpdateOrganizationPayload.js +1 -1
  340. package/dist/model/UpdateOrganizationResponseModel.js +1 -1
  341. package/dist/model/UpdateTemplate.js +1 -1
  342. package/dist/model/UpdateVolumeAttachmentPayload.js +85 -0
  343. package/dist/model/{UserTransferPayload.js → UpdateVolumePayload.js} +29 -38
  344. package/dist/model/{FlavorResponse.js → UpdateVolumeResponse.js} +41 -32
  345. package/dist/model/UserDefaultChoiceForUserFields.js +1 -1
  346. package/dist/model/UserDefaultChoicesForUserResponse.js +1 -1
  347. package/dist/model/{Userinfopostpayload.js → UserInfoPostPayload.js} +30 -30
  348. package/dist/model/{FutureNodesStockModel.js → UserOrganizationsResponse.js} +28 -28
  349. package/dist/model/UserPermissionFields.js +1 -1
  350. package/dist/model/UsersInfoFields.js +13 -1
  351. package/dist/model/UsersInfoListResponse.js +1 -1
  352. package/dist/model/VNCURL.js +1 -1
  353. package/dist/model/VNCURLFields.js +1 -1
  354. package/dist/model/Volume.js +1 -1
  355. package/dist/model/VolumeAttachmentFields.js +21 -5
  356. package/dist/model/VolumeFields.js +38 -5
  357. package/dist/model/{VolumeFieldsforInstance.js → VolumeFieldsForInstance.js} +23 -23
  358. package/dist/model/VolumeOverviewFields.js +1 -1
  359. package/dist/model/VolumeTypes.js +1 -1
  360. package/dist/model/Volumes.js +36 -12
  361. package/dist/model/{InfrahubResourceObjectResponse.js → VolumesFields.js} +95 -85
  362. package/dist/model/{FutureNodeStockModel.js → Voucher.js} +44 -33
  363. package/dist/model/{Creditrechargelimitresponse.js → VoucherRedeemResponseSchema.js} +56 -47
  364. package/dist/model/WorkloadBillingHistoryResponse.js +113 -0
  365. package/package.json +1 -1
  366. package/dist/model/AddUpdateFlavorOrganizationPayload.js +0 -242
  367. package/dist/model/AuthRequestLoginFields.js +0 -101
  368. package/dist/model/BillingImmuneResourcesResponse.js +0 -111
  369. package/dist/model/BillingResponse.js +0 -130
  370. package/dist/model/ContractBillingHistoryResponseAttributes.js +0 -149
  371. package/dist/model/ContractResourcePayload.js +0 -146
  372. package/dist/model/CreateContractFields.js +0 -170
  373. package/dist/model/CreateContractPayload.js +0 -178
  374. package/dist/model/CreateDiscountsPayload.js +0 -192
  375. package/dist/model/Creditrechargelimitfield.js +0 -109
  376. package/dist/model/DiscountEntityModel.js +0 -122
  377. package/dist/model/DiscountFields.js +0 -149
  378. package/dist/model/DiscountPlanFields.js +0 -181
  379. package/dist/model/DiscountResourceFields.js +0 -113
  380. package/dist/model/DiscountResourcePayload.js +0 -142
  381. package/dist/model/ExcludeBillingPostPayload.js +0 -135
  382. package/dist/model/ExportBillingDataRequest.js +0 -186
  383. package/dist/model/ExportBillingDataResponse.js +0 -101
  384. package/dist/model/FieldChange.js +0 -116
  385. package/dist/model/FlavorVMsResponse.js +0 -130
  386. package/dist/model/FutureNodeResponseModel.js +0 -122
  387. package/dist/model/GetAllContractFields.js +0 -137
  388. package/dist/model/GetAllContractsResponseModel.js +0 -130
  389. package/dist/model/GetAllDiscountsFields.js +0 -158
  390. package/dist/model/GetDiscountDetailResponse.js +0 -111
  391. package/dist/model/GetDiscountResponse.js +0 -130
  392. package/dist/model/GetEntityDiscountDetailResponse.js +0 -159
  393. package/dist/model/GetTokenPayload.js +0 -126
  394. package/dist/model/HistoricalInstance.js +0 -138
  395. package/dist/model/HistoricalInstancesFields.js +0 -201
  396. package/dist/model/InsertDiscountPlanFields.js +0 -168
  397. package/dist/model/InstancesSummaryFields.js +0 -249
  398. package/dist/model/InternalInstanceFields.js +0 -344
  399. package/dist/model/InternalInstanceFlavorFields.js +0 -161
  400. package/dist/model/InternalInstanceImageFields.js +0 -133
  401. package/dist/model/InternalVolumesResponse.js +0 -130
  402. package/dist/model/LogoGetResponse.js +0 -109
  403. package/dist/model/NodeModel.js +0 -230
  404. package/dist/model/NodePayloadModel.js +0 -122
  405. package/dist/model/NodePowerUsageModel.js +0 -244
  406. package/dist/model/NodeStockPayloadModel.js +0 -110
  407. package/dist/model/NodeStockResponseModel.js +0 -110
  408. package/dist/model/NodeStocksPayload.js +0 -144
  409. package/dist/model/PricebookResourceObjectResponse.js +0 -173
  410. package/dist/model/RefreshTokenPayload.js +0 -126
  411. package/dist/model/RegionResponse.js +0 -111
  412. package/dist/model/StockVisibilityUserPayload.js +0 -112
  413. package/dist/model/SuccessResponseModel.js +0 -100
  414. package/dist/model/UpdateContractPayload.js +0 -168
  415. package/dist/model/UpdateDiscountsPayload.js +0 -160
  416. package/dist/model/UpdateDiscountsStatusPayload.js +0 -112
  417. package/dist/model/UpdateGPU.js +0 -114
  418. package/dist/model/VMUsageRequestPayload.js +0 -113
  419. package/dist/model/VolumeStatusChangeFields.js +0 -125
  420. package/dist/model/WarningMailLogFields.js +0 -149
@@ -29,12 +29,13 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The SnapshotRetrieveFields model module.
31
31
  * @module model/SnapshotRetrieveFields
32
- * @version v1.25.0-alpha
32
+ * @version v1.48.0-alpha
33
33
  */
34
34
  var SnapshotRetrieveFields = /*#__PURE__*/function () {
35
35
  /**
36
36
  * Constructs a new <code>SnapshotRetrieveFields</code>.
37
37
  * @alias module:model/SnapshotRetrieveFields
38
+ * @param createdAt {Date} Creation timestamp
38
39
  * @param description {String} Description of the snapshot
39
40
  * @param id {Number} Snapshot ID
40
41
  * @param isImage {Boolean} Indicates if the snapshot is an image
@@ -42,11 +43,12 @@ var SnapshotRetrieveFields = /*#__PURE__*/function () {
42
43
  * @param regionId {Number} Region where the snapshot will be available
43
44
  * @param size {Number} Size in GB of the snapshot
44
45
  * @param status {String} Status of the snapshot
46
+ * @param updatedAt {Date} Last update timestamp
45
47
  * @param vmId {Number} ID of the VM from which the snapshot is created
46
48
  */
47
- function SnapshotRetrieveFields(description, id, isImage, name, regionId, size, status, vmId) {
49
+ function SnapshotRetrieveFields(createdAt, description, id, isImage, name, regionId, size, status, updatedAt, vmId) {
48
50
  _classCallCheck(this, SnapshotRetrieveFields);
49
- SnapshotRetrieveFields.initialize(this, description, id, isImage, name, regionId, size, status, vmId);
51
+ SnapshotRetrieveFields.initialize(this, createdAt, description, id, isImage, name, regionId, size, status, updatedAt, vmId);
50
52
  }
51
53
 
52
54
  /**
@@ -56,7 +58,8 @@ var SnapshotRetrieveFields = /*#__PURE__*/function () {
56
58
  */
57
59
  return _createClass(SnapshotRetrieveFields, null, [{
58
60
  key: "initialize",
59
- value: function initialize(obj, description, id, isImage, name, regionId, size, status, vmId) {
61
+ value: function initialize(obj, createdAt, description, id, isImage, name, regionId, size, status, updatedAt, vmId) {
62
+ obj['created_at'] = createdAt;
60
63
  obj['description'] = description;
61
64
  obj['id'] = id;
62
65
  obj['is_image'] = isImage;
@@ -64,6 +67,7 @@ var SnapshotRetrieveFields = /*#__PURE__*/function () {
64
67
  obj['region_id'] = regionId;
65
68
  obj['size'] = size;
66
69
  obj['status'] = status;
70
+ obj['updated_at'] = updatedAt;
67
71
  obj['vm_id'] = vmId;
68
72
  }
69
73
 
@@ -79,6 +83,12 @@ var SnapshotRetrieveFields = /*#__PURE__*/function () {
79
83
  value: function constructFromObject(data, obj) {
80
84
  if (data) {
81
85
  obj = obj || new SnapshotRetrieveFields();
86
+ if (data.hasOwnProperty('created_at')) {
87
+ obj['created_at'] = _ApiClient["default"].convertToType(data['created_at'], 'Date');
88
+ }
89
+ if (data.hasOwnProperty('custom_image')) {
90
+ obj['custom_image'] = _ApiClient["default"].convertToType(data['custom_image'], 'String');
91
+ }
82
92
  if (data.hasOwnProperty('description')) {
83
93
  obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
84
94
  }
@@ -91,9 +101,15 @@ var SnapshotRetrieveFields = /*#__PURE__*/function () {
91
101
  if (data.hasOwnProperty('is_image')) {
92
102
  obj['is_image'] = _ApiClient["default"].convertToType(data['is_image'], 'Boolean');
93
103
  }
104
+ if (data.hasOwnProperty('labels')) {
105
+ obj['labels'] = _ApiClient["default"].convertToType(data['labels'], 'String');
106
+ }
94
107
  if (data.hasOwnProperty('name')) {
95
108
  obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
96
109
  }
110
+ if (data.hasOwnProperty('region')) {
111
+ obj['region'] = _ApiClient["default"].convertToType(data['region'], 'String');
112
+ }
97
113
  if (data.hasOwnProperty('region_id')) {
98
114
  obj['region_id'] = _ApiClient["default"].convertToType(data['region_id'], 'Number');
99
115
  }
@@ -103,9 +119,36 @@ var SnapshotRetrieveFields = /*#__PURE__*/function () {
103
119
  if (data.hasOwnProperty('status')) {
104
120
  obj['status'] = _ApiClient["default"].convertToType(data['status'], 'String');
105
121
  }
122
+ if (data.hasOwnProperty('updated_at')) {
123
+ obj['updated_at'] = _ApiClient["default"].convertToType(data['updated_at'], 'Date');
124
+ }
125
+ if (data.hasOwnProperty('vm_environment')) {
126
+ obj['vm_environment'] = _ApiClient["default"].convertToType(data['vm_environment'], 'String');
127
+ }
128
+ if (data.hasOwnProperty('vm_flavor')) {
129
+ obj['vm_flavor'] = _ApiClient["default"].convertToType(data['vm_flavor'], 'String');
130
+ }
106
131
  if (data.hasOwnProperty('vm_id')) {
107
132
  obj['vm_id'] = _ApiClient["default"].convertToType(data['vm_id'], 'Number');
108
133
  }
134
+ if (data.hasOwnProperty('vm_image')) {
135
+ obj['vm_image'] = _ApiClient["default"].convertToType(data['vm_image'], 'String');
136
+ }
137
+ if (data.hasOwnProperty('vm_keypair')) {
138
+ obj['vm_keypair'] = _ApiClient["default"].convertToType(data['vm_keypair'], 'String');
139
+ }
140
+ if (data.hasOwnProperty('vm_name')) {
141
+ obj['vm_name'] = _ApiClient["default"].convertToType(data['vm_name'], 'String');
142
+ }
143
+ if (data.hasOwnProperty('vm_status')) {
144
+ obj['vm_status'] = _ApiClient["default"].convertToType(data['vm_status'], 'String');
145
+ }
146
+ if (data.hasOwnProperty('volume_id')) {
147
+ obj['volume_id'] = _ApiClient["default"].convertToType(data['volume_id'], 'String');
148
+ }
149
+ if (data.hasOwnProperty('volume_name')) {
150
+ obj['volume_name'] = _ApiClient["default"].convertToType(data['volume_name'], 'String');
151
+ }
109
152
  }
110
153
  return obj;
111
154
  }
@@ -134,22 +177,78 @@ var SnapshotRetrieveFields = /*#__PURE__*/function () {
134
177
  } finally {
135
178
  _iterator.f();
136
179
  }
180
+ if (data['custom_image'] && !(typeof data['custom_image'] === 'string' || data['custom_image'] instanceof String)) {
181
+ throw new Error("Expected the field `custom_image` to be a primitive type in the JSON string but got " + data['custom_image']);
182
+ }
183
+ // ensure the json data is a string
137
184
  if (data['description'] && !(typeof data['description'] === 'string' || data['description'] instanceof String)) {
138
185
  throw new Error("Expected the field `description` to be a primitive type in the JSON string but got " + data['description']);
139
186
  }
140
187
  // ensure the json data is a string
188
+ if (data['labels'] && !(typeof data['labels'] === 'string' || data['labels'] instanceof String)) {
189
+ throw new Error("Expected the field `labels` to be a primitive type in the JSON string but got " + data['labels']);
190
+ }
191
+ // ensure the json data is a string
141
192
  if (data['name'] && !(typeof data['name'] === 'string' || data['name'] instanceof String)) {
142
193
  throw new Error("Expected the field `name` to be a primitive type in the JSON string but got " + data['name']);
143
194
  }
144
195
  // ensure the json data is a string
196
+ if (data['region'] && !(typeof data['region'] === 'string' || data['region'] instanceof String)) {
197
+ throw new Error("Expected the field `region` to be a primitive type in the JSON string but got " + data['region']);
198
+ }
199
+ // ensure the json data is a string
145
200
  if (data['status'] && !(typeof data['status'] === 'string' || data['status'] instanceof String)) {
146
201
  throw new Error("Expected the field `status` to be a primitive type in the JSON string but got " + data['status']);
147
202
  }
203
+ // ensure the json data is a string
204
+ if (data['vm_environment'] && !(typeof data['vm_environment'] === 'string' || data['vm_environment'] instanceof String)) {
205
+ throw new Error("Expected the field `vm_environment` to be a primitive type in the JSON string but got " + data['vm_environment']);
206
+ }
207
+ // ensure the json data is a string
208
+ if (data['vm_flavor'] && !(typeof data['vm_flavor'] === 'string' || data['vm_flavor'] instanceof String)) {
209
+ throw new Error("Expected the field `vm_flavor` to be a primitive type in the JSON string but got " + data['vm_flavor']);
210
+ }
211
+ // ensure the json data is a string
212
+ if (data['vm_image'] && !(typeof data['vm_image'] === 'string' || data['vm_image'] instanceof String)) {
213
+ throw new Error("Expected the field `vm_image` to be a primitive type in the JSON string but got " + data['vm_image']);
214
+ }
215
+ // ensure the json data is a string
216
+ if (data['vm_keypair'] && !(typeof data['vm_keypair'] === 'string' || data['vm_keypair'] instanceof String)) {
217
+ throw new Error("Expected the field `vm_keypair` to be a primitive type in the JSON string but got " + data['vm_keypair']);
218
+ }
219
+ // ensure the json data is a string
220
+ if (data['vm_name'] && !(typeof data['vm_name'] === 'string' || data['vm_name'] instanceof String)) {
221
+ throw new Error("Expected the field `vm_name` to be a primitive type in the JSON string but got " + data['vm_name']);
222
+ }
223
+ // ensure the json data is a string
224
+ if (data['vm_status'] && !(typeof data['vm_status'] === 'string' || data['vm_status'] instanceof String)) {
225
+ throw new Error("Expected the field `vm_status` to be a primitive type in the JSON string but got " + data['vm_status']);
226
+ }
227
+ // ensure the json data is a string
228
+ if (data['volume_id'] && !(typeof data['volume_id'] === 'string' || data['volume_id'] instanceof String)) {
229
+ throw new Error("Expected the field `volume_id` to be a primitive type in the JSON string but got " + data['volume_id']);
230
+ }
231
+ // ensure the json data is a string
232
+ if (data['volume_name'] && !(typeof data['volume_name'] === 'string' || data['volume_name'] instanceof String)) {
233
+ throw new Error("Expected the field `volume_name` to be a primitive type in the JSON string but got " + data['volume_name']);
234
+ }
148
235
  return true;
149
236
  }
150
237
  }]);
151
238
  }();
152
- SnapshotRetrieveFields.RequiredProperties = ["description", "id", "is_image", "name", "region_id", "size", "status", "vm_id"];
239
+ SnapshotRetrieveFields.RequiredProperties = ["created_at", "description", "id", "is_image", "name", "region_id", "size", "status", "updated_at", "vm_id"];
240
+
241
+ /**
242
+ * Creation timestamp
243
+ * @member {Date} created_at
244
+ */
245
+ SnapshotRetrieveFields.prototype['created_at'] = undefined;
246
+
247
+ /**
248
+ *
249
+ * @member {String} custom_image
250
+ */
251
+ SnapshotRetrieveFields.prototype['custom_image'] = undefined;
153
252
 
154
253
  /**
155
254
  * Description of the snapshot
@@ -175,12 +274,24 @@ SnapshotRetrieveFields.prototype['id'] = undefined;
175
274
  */
176
275
  SnapshotRetrieveFields.prototype['is_image'] = undefined;
177
276
 
277
+ /**
278
+ *
279
+ * @member {String} labels
280
+ */
281
+ SnapshotRetrieveFields.prototype['labels'] = undefined;
282
+
178
283
  /**
179
284
  * Snapshot name
180
285
  * @member {String} name
181
286
  */
182
287
  SnapshotRetrieveFields.prototype['name'] = undefined;
183
288
 
289
+ /**
290
+ *
291
+ * @member {String} region
292
+ */
293
+ SnapshotRetrieveFields.prototype['region'] = undefined;
294
+
184
295
  /**
185
296
  * Region where the snapshot will be available
186
297
  * @member {Number} region_id
@@ -199,9 +310,63 @@ SnapshotRetrieveFields.prototype['size'] = undefined;
199
310
  */
200
311
  SnapshotRetrieveFields.prototype['status'] = undefined;
201
312
 
313
+ /**
314
+ * Last update timestamp
315
+ * @member {Date} updated_at
316
+ */
317
+ SnapshotRetrieveFields.prototype['updated_at'] = undefined;
318
+
319
+ /**
320
+ *
321
+ * @member {String} vm_environment
322
+ */
323
+ SnapshotRetrieveFields.prototype['vm_environment'] = undefined;
324
+
325
+ /**
326
+ *
327
+ * @member {String} vm_flavor
328
+ */
329
+ SnapshotRetrieveFields.prototype['vm_flavor'] = undefined;
330
+
202
331
  /**
203
332
  * ID of the VM from which the snapshot is created
204
333
  * @member {Number} vm_id
205
334
  */
206
335
  SnapshotRetrieveFields.prototype['vm_id'] = undefined;
336
+
337
+ /**
338
+ *
339
+ * @member {String} vm_image
340
+ */
341
+ SnapshotRetrieveFields.prototype['vm_image'] = undefined;
342
+
343
+ /**
344
+ *
345
+ * @member {String} vm_keypair
346
+ */
347
+ SnapshotRetrieveFields.prototype['vm_keypair'] = undefined;
348
+
349
+ /**
350
+ *
351
+ * @member {String} vm_name
352
+ */
353
+ SnapshotRetrieveFields.prototype['vm_name'] = undefined;
354
+
355
+ /**
356
+ *
357
+ * @member {String} vm_status
358
+ */
359
+ SnapshotRetrieveFields.prototype['vm_status'] = undefined;
360
+
361
+ /**
362
+ *
363
+ * @member {String} volume_id
364
+ */
365
+ SnapshotRetrieveFields.prototype['volume_id'] = undefined;
366
+
367
+ /**
368
+ *
369
+ * @member {String} volume_name
370
+ */
371
+ SnapshotRetrieveFields.prototype['volume_name'] = undefined;
207
372
  var _default = exports["default"] = SnapshotRetrieveFields;
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * The Snapshots model module.
32
32
  * @module model/Snapshots
33
- * @version v1.25.0-alpha
33
+ * @version v1.48.0-alpha
34
34
  */
35
35
  var Snapshots = /*#__PURE__*/function () {
36
36
  /**
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports["default"] = void 0;
7
7
  var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
- var _DeploymentFieldsforstartdeployments = _interopRequireDefault(require("./DeploymentFieldsforstartdeployments"));
8
+ var _DeploymentFieldsForStartDeployments = _interopRequireDefault(require("./DeploymentFieldsForStartDeployments"));
9
9
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
10
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
11
11
  function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
@@ -27,7 +27,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
27
27
  /**
28
28
  * The StartDeployment model module.
29
29
  * @module model/StartDeployment
30
- * @version v1.25.0-alpha
30
+ * @version v1.48.0-alpha
31
31
  */
32
32
  var StartDeployment = /*#__PURE__*/function () {
33
33
  /**
@@ -61,7 +61,7 @@ var StartDeployment = /*#__PURE__*/function () {
61
61
  if (data) {
62
62
  obj = obj || new StartDeployment();
63
63
  if (data.hasOwnProperty('deployment')) {
64
- obj['deployment'] = _DeploymentFieldsforstartdeployments["default"].constructFromObject(data['deployment']);
64
+ obj['deployment'] = _DeploymentFieldsForStartDeployments["default"].constructFromObject(data['deployment']);
65
65
  }
66
66
  if (data.hasOwnProperty('message')) {
67
67
  obj['message'] = _ApiClient["default"].convertToType(data['message'], 'String');
@@ -84,7 +84,7 @@ var StartDeployment = /*#__PURE__*/function () {
84
84
  // validate the optional field `deployment`
85
85
  if (data['deployment']) {
86
86
  // data not null
87
- _DeploymentFieldsforstartdeployments["default"].validateJSON(data['deployment']);
87
+ _DeploymentFieldsForStartDeployments["default"].validateJSON(data['deployment']);
88
88
  }
89
89
  // ensure the json data is a string
90
90
  if (data['message'] && !(typeof data['message'] === 'string' || data['message'] instanceof String)) {
@@ -95,7 +95,7 @@ var StartDeployment = /*#__PURE__*/function () {
95
95
  }]);
96
96
  }();
97
97
  /**
98
- * @member {module:model/DeploymentFieldsforstartdeployments} deployment
98
+ * @member {module:model/DeploymentFieldsForStartDeployments} deployment
99
99
  */
100
100
  StartDeployment.prototype['deployment'] = undefined;
101
101
 
@@ -29,7 +29,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
29
29
  /**
30
30
  * The StartDeploymentPayload model module.
31
31
  * @module model/StartDeploymentPayload
32
- * @version v1.25.0-alpha
32
+ * @version v1.48.0-alpha
33
33
  */
34
34
  var StartDeploymentPayload = /*#__PURE__*/function () {
35
35
  /**
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * The SubResourceGraphBillingDetailsMetrics model module.
32
32
  * @module model/SubResourceGraphBillingDetailsMetrics
33
- * @version v1.25.0-alpha
33
+ * @version v1.48.0-alpha
34
34
  */
35
35
  var SubResourceGraphBillingDetailsMetrics = /*#__PURE__*/function () {
36
36
  /**
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * The SubResourcesCostsResponseModel model module.
32
32
  * @module model/SubResourcesCostsResponseModel
33
- * @version v1.25.0-alpha
33
+ * @version v1.48.0-alpha
34
34
  */
35
35
  var SubResourcesCostsResponseModel = /*#__PURE__*/function () {
36
36
  /**
@@ -28,7 +28,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
28
28
  /**
29
29
  * The SubResourcesGraphBillingHistoryFields model module.
30
30
  * @module model/SubResourcesGraphBillingHistoryFields
31
- * @version v1.25.0-alpha
31
+ * @version v1.48.0-alpha
32
32
  */
33
33
  var SubResourcesGraphBillingHistoryFields = /*#__PURE__*/function () {
34
34
  /**
@@ -27,7 +27,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
27
27
  /**
28
28
  * The SubResourcesGraphResponseModel model module.
29
29
  * @module model/SubResourcesGraphResponseModel
30
- * @version v1.25.0-alpha
30
+ * @version v1.48.0-alpha
31
31
  */
32
32
  var SubResourcesGraphResponseModel = /*#__PURE__*/function () {
33
33
  /**
@@ -27,19 +27,19 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
27
27
  *
28
28
  */
29
29
  /**
30
- * The Subscribeorunsubscribeupdatepayload model module.
31
- * @module model/Subscribeorunsubscribeupdatepayload
32
- * @version v1.25.0-alpha
30
+ * The SubscribeOrUnsubscribeUpdatePayload model module.
31
+ * @module model/SubscribeOrUnsubscribeUpdatePayload
32
+ * @version v1.48.0-alpha
33
33
  */
34
- var Subscribeorunsubscribeupdatepayload = /*#__PURE__*/function () {
34
+ var SubscribeOrUnsubscribeUpdatePayload = /*#__PURE__*/function () {
35
35
  /**
36
- * Constructs a new <code>Subscribeorunsubscribeupdatepayload</code>.
37
- * @alias module:model/Subscribeorunsubscribeupdatepayload
36
+ * Constructs a new <code>SubscribeOrUnsubscribeUpdatePayload</code>.
37
+ * @alias module:model/SubscribeOrUnsubscribeUpdatePayload
38
38
  * @param subscribe {Boolean} `false` indicates that the user will no longer receive notifications for this specific threshold, whereas `true` signifies that the user will receive notification emails.
39
39
  */
40
- function Subscribeorunsubscribeupdatepayload(subscribe) {
41
- _classCallCheck(this, Subscribeorunsubscribeupdatepayload);
42
- Subscribeorunsubscribeupdatepayload.initialize(this, subscribe);
40
+ function SubscribeOrUnsubscribeUpdatePayload(subscribe) {
41
+ _classCallCheck(this, SubscribeOrUnsubscribeUpdatePayload);
42
+ SubscribeOrUnsubscribeUpdatePayload.initialize(this, subscribe);
43
43
  }
44
44
 
45
45
  /**
@@ -47,24 +47,24 @@ var Subscribeorunsubscribeupdatepayload = /*#__PURE__*/function () {
47
47
  * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
48
48
  * Only for internal use.
49
49
  */
50
- return _createClass(Subscribeorunsubscribeupdatepayload, null, [{
50
+ return _createClass(SubscribeOrUnsubscribeUpdatePayload, null, [{
51
51
  key: "initialize",
52
52
  value: function initialize(obj, subscribe) {
53
53
  obj['subscribe'] = subscribe;
54
54
  }
55
55
 
56
56
  /**
57
- * Constructs a <code>Subscribeorunsubscribeupdatepayload</code> from a plain JavaScript object, optionally creating a new instance.
57
+ * Constructs a <code>SubscribeOrUnsubscribeUpdatePayload</code> from a plain JavaScript object, optionally creating a new instance.
58
58
  * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
59
59
  * @param {Object} data The plain JavaScript object bearing properties of interest.
60
- * @param {module:model/Subscribeorunsubscribeupdatepayload} obj Optional instance to populate.
61
- * @return {module:model/Subscribeorunsubscribeupdatepayload} The populated <code>Subscribeorunsubscribeupdatepayload</code> instance.
60
+ * @param {module:model/SubscribeOrUnsubscribeUpdatePayload} obj Optional instance to populate.
61
+ * @return {module:model/SubscribeOrUnsubscribeUpdatePayload} The populated <code>SubscribeOrUnsubscribeUpdatePayload</code> instance.
62
62
  */
63
63
  }, {
64
64
  key: "constructFromObject",
65
65
  value: function constructFromObject(data, obj) {
66
66
  if (data) {
67
- obj = obj || new Subscribeorunsubscribeupdatepayload();
67
+ obj = obj || new SubscribeOrUnsubscribeUpdatePayload();
68
68
  if (data.hasOwnProperty('subscribe')) {
69
69
  obj['subscribe'] = _ApiClient["default"].convertToType(data['subscribe'], 'Boolean');
70
70
  }
@@ -73,15 +73,15 @@ var Subscribeorunsubscribeupdatepayload = /*#__PURE__*/function () {
73
73
  }
74
74
 
75
75
  /**
76
- * Validates the JSON data with respect to <code>Subscribeorunsubscribeupdatepayload</code>.
76
+ * Validates the JSON data with respect to <code>SubscribeOrUnsubscribeUpdatePayload</code>.
77
77
  * @param {Object} data The plain JavaScript object bearing properties of interest.
78
- * @return {boolean} to indicate whether the JSON data is valid with respect to <code>Subscribeorunsubscribeupdatepayload</code>.
78
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>SubscribeOrUnsubscribeUpdatePayload</code>.
79
79
  */
80
80
  }, {
81
81
  key: "validateJSON",
82
82
  value: function validateJSON(data) {
83
83
  // check to make sure all required properties are present in the JSON string
84
- var _iterator = _createForOfIteratorHelper(Subscribeorunsubscribeupdatepayload.RequiredProperties),
84
+ var _iterator = _createForOfIteratorHelper(SubscribeOrUnsubscribeUpdatePayload.RequiredProperties),
85
85
  _step;
86
86
  try {
87
87
  for (_iterator.s(); !(_step = _iterator.n()).done;) {
@@ -99,11 +99,11 @@ var Subscribeorunsubscribeupdatepayload = /*#__PURE__*/function () {
99
99
  }
100
100
  }]);
101
101
  }();
102
- Subscribeorunsubscribeupdatepayload.RequiredProperties = ["subscribe"];
102
+ SubscribeOrUnsubscribeUpdatePayload.RequiredProperties = ["subscribe"];
103
103
 
104
104
  /**
105
105
  * `false` indicates that the user will no longer receive notifications for this specific threshold, whereas `true` signifies that the user will receive notification emails.
106
106
  * @member {Boolean} subscribe
107
107
  */
108
- Subscribeorunsubscribeupdatepayload.prototype['subscribe'] = undefined;
109
- var _default = exports["default"] = Subscribeorunsubscribeupdatepayload;
108
+ SubscribeOrUnsubscribeUpdatePayload.prototype['subscribe'] = undefined;
109
+ var _default = exports["default"] = SubscribeOrUnsubscribeUpdatePayload;
@@ -27,7 +27,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
27
27
  /**
28
28
  * The Template model module.
29
29
  * @module model/Template
30
- * @version v1.25.0-alpha
30
+ * @version v1.48.0-alpha
31
31
  */
32
32
  var Template = /*#__PURE__*/function () {
33
33
  /**
@@ -26,7 +26,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
26
26
  /**
27
27
  * The TemplateFields model module.
28
28
  * @module model/TemplateFields
29
- * @version v1.25.0-alpha
29
+ * @version v1.48.0-alpha
30
30
  */
31
31
  var TemplateFields = /*#__PURE__*/function () {
32
32
  /**
@@ -30,7 +30,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
30
30
  /**
31
31
  * The Templates model module.
32
32
  * @module model/Templates
33
- * @version v1.25.0-alpha
33
+ * @version v1.48.0-alpha
34
34
  */
35
35
  var Templates = /*#__PURE__*/function () {
36
36
  /**
@@ -0,0 +1,113 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ var _BillingHistoryServerlessInference = _interopRequireDefault(require("./BillingHistoryServerlessInference"));
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
10
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
11
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
12
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
13
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
14
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
15
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
16
+ * Infrahub-API
17
+ * Leverage the Infrahub API and Hyperstack platform to easily create, manage, and scale powerful GPU virtual machines and their associated resources. Access this SDK to automate the deployment of your workloads and streamline your infrastructure management. To contribute, please raise an issue with a bug report, feature request, feedback, or general inquiry.
18
+ *
19
+ * The version of the OpenAPI document: 1.0
20
+ *
21
+ *
22
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
23
+ * https://openapi-generator.tech
24
+ * Do not edit the class manually.
25
+ *
26
+ */
27
+ /**
28
+ * The TokenBasedBillingHistoryResponse model module.
29
+ * @module model/TokenBasedBillingHistoryResponse
30
+ * @version v1.48.0-alpha
31
+ */
32
+ var TokenBasedBillingHistoryResponse = /*#__PURE__*/function () {
33
+ /**
34
+ * Constructs a new <code>TokenBasedBillingHistoryResponse</code>.
35
+ * @alias module:model/TokenBasedBillingHistoryResponse
36
+ */
37
+ function TokenBasedBillingHistoryResponse() {
38
+ _classCallCheck(this, TokenBasedBillingHistoryResponse);
39
+ TokenBasedBillingHistoryResponse.initialize(this);
40
+ }
41
+
42
+ /**
43
+ * Initializes the fields of this object.
44
+ * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
45
+ * Only for internal use.
46
+ */
47
+ return _createClass(TokenBasedBillingHistoryResponse, null, [{
48
+ key: "initialize",
49
+ value: function initialize(obj) {}
50
+
51
+ /**
52
+ * Constructs a <code>TokenBasedBillingHistoryResponse</code> from a plain JavaScript object, optionally creating a new instance.
53
+ * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
54
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
55
+ * @param {module:model/TokenBasedBillingHistoryResponse} obj Optional instance to populate.
56
+ * @return {module:model/TokenBasedBillingHistoryResponse} The populated <code>TokenBasedBillingHistoryResponse</code> instance.
57
+ */
58
+ }, {
59
+ key: "constructFromObject",
60
+ value: function constructFromObject(data, obj) {
61
+ if (data) {
62
+ obj = obj || new TokenBasedBillingHistoryResponse();
63
+ if (data.hasOwnProperty('billing_history_serverless_inference')) {
64
+ obj['billing_history_serverless_inference'] = _BillingHistoryServerlessInference["default"].constructFromObject(data['billing_history_serverless_inference']);
65
+ }
66
+ if (data.hasOwnProperty('message')) {
67
+ obj['message'] = _ApiClient["default"].convertToType(data['message'], 'String');
68
+ }
69
+ if (data.hasOwnProperty('success')) {
70
+ obj['success'] = _ApiClient["default"].convertToType(data['success'], 'Boolean');
71
+ }
72
+ }
73
+ return obj;
74
+ }
75
+
76
+ /**
77
+ * Validates the JSON data with respect to <code>TokenBasedBillingHistoryResponse</code>.
78
+ * @param {Object} data The plain JavaScript object bearing properties of interest.
79
+ * @return {boolean} to indicate whether the JSON data is valid with respect to <code>TokenBasedBillingHistoryResponse</code>.
80
+ */
81
+ }, {
82
+ key: "validateJSON",
83
+ value: function validateJSON(data) {
84
+ // validate the optional field `billing_history_serverless_inference`
85
+ if (data['billing_history_serverless_inference']) {
86
+ // data not null
87
+ _BillingHistoryServerlessInference["default"].validateJSON(data['billing_history_serverless_inference']);
88
+ }
89
+ // ensure the json data is a string
90
+ if (data['message'] && !(typeof data['message'] === 'string' || data['message'] instanceof String)) {
91
+ throw new Error("Expected the field `message` to be a primitive type in the JSON string but got " + data['message']);
92
+ }
93
+ return true;
94
+ }
95
+ }]);
96
+ }();
97
+ /**
98
+ * @member {module:model/BillingHistoryServerlessInference} billing_history_serverless_inference
99
+ */
100
+ TokenBasedBillingHistoryResponse.prototype['billing_history_serverless_inference'] = undefined;
101
+
102
+ /**
103
+ *
104
+ * @member {String} message
105
+ */
106
+ TokenBasedBillingHistoryResponse.prototype['message'] = undefined;
107
+
108
+ /**
109
+ *
110
+ * @member {Boolean} success
111
+ */
112
+ TokenBasedBillingHistoryResponse.prototype['success'] = undefined;
113
+ var _default = exports["default"] = TokenBasedBillingHistoryResponse;