ngcsdk 3.41.2__py3-none-any.whl

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 (1479) hide show
  1. basecommand/api/__init__.py +11 -0
  2. basecommand/api/aces.py +136 -0
  3. basecommand/api/basecommand.py +85 -0
  4. basecommand/api/datamover.py +570 -0
  5. basecommand/api/dataset.py +868 -0
  6. basecommand/api/dockerwrappers.py +270 -0
  7. basecommand/api/jobs.py +858 -0
  8. basecommand/api/kubewrappers.py +85 -0
  9. basecommand/api/measurements.py +177 -0
  10. basecommand/api/quickstart.py +49 -0
  11. basecommand/api/quickstart_cluster.py +943 -0
  12. basecommand/api/quickstart_project.py +503 -0
  13. basecommand/api/resource.py +493 -0
  14. basecommand/api/resultset.py +337 -0
  15. basecommand/api/search.py +93 -0
  16. basecommand/api/utils.py +309 -0
  17. basecommand/api/workspace.py +729 -0
  18. basecommand/command/__init__.py +11 -0
  19. basecommand/command/aces.py +110 -0
  20. basecommand/command/all_commands.py +27 -0
  21. basecommand/command/args_validation.py +427 -0
  22. basecommand/command/base_command.py +19 -0
  23. basecommand/command/batch.py +1249 -0
  24. basecommand/command/completers.py +47 -0
  25. basecommand/command/data.py +460 -0
  26. basecommand/command/datamover/__init__.py +0 -0
  27. basecommand/command/datamover/export_dataset.py +230 -0
  28. basecommand/command/datamover/export_workspace.py +230 -0
  29. basecommand/command/datamover/import_dataset.py +290 -0
  30. basecommand/command/datamover/import_workspace.py +269 -0
  31. basecommand/command/datamover/utils.py +565 -0
  32. basecommand/command/datamover_command.py +523 -0
  33. basecommand/command/quickstart.py +32 -0
  34. basecommand/command/quickstart_cluster.py +614 -0
  35. basecommand/command/quickstart_project.py +854 -0
  36. basecommand/command/resource.py +337 -0
  37. basecommand/command/result.py +211 -0
  38. basecommand/command/workspace.py +589 -0
  39. basecommand/constants.py +136 -0
  40. basecommand/environ.py +17 -0
  41. basecommand/errors.py +17 -0
  42. basecommand/model/dataset.py +73 -0
  43. basecommand/printer/__init__.py +11 -0
  44. basecommand/printer/aces.py +205 -0
  45. basecommand/printer/batch.py +637 -0
  46. basecommand/printer/datamover.py +367 -0
  47. basecommand/printer/dataset.py +101 -0
  48. basecommand/printer/quickstart_cluster.py +256 -0
  49. basecommand/printer/quickstart_project.py +254 -0
  50. basecommand/printer/resource.py +236 -0
  51. basecommand/printer/result.py +52 -0
  52. basecommand/printer/workspace.py +102 -0
  53. basecommand/transfer/__init__.py +11 -0
  54. basecommand/transfer/upload_manager.py +512 -0
  55. basecommand/transformer/__init__.py +11 -0
  56. basecommand/transformer/dataset.py +28 -0
  57. basecommand/transformer/workspace.py +24 -0
  58. forge/__init__.py +0 -0
  59. forge/api/__init__.py +0 -0
  60. forge/api/allocation.py +232 -0
  61. forge/api/constraint.py +103 -0
  62. forge/api/forge.py +169 -0
  63. forge/api/infiniband.py +125 -0
  64. forge/api/instance.py +171 -0
  65. forge/api/instance_type.py +278 -0
  66. forge/api/ipblock.py +138 -0
  67. forge/api/machine.py +85 -0
  68. forge/api/operating_system.py +170 -0
  69. forge/api/provider.py +59 -0
  70. forge/api/rule.py +139 -0
  71. forge/api/site.py +181 -0
  72. forge/api/ssh_key.py +111 -0
  73. forge/api/ssh_key_group.py +119 -0
  74. forge/api/subnet.py +181 -0
  75. forge/api/tenant.py +50 -0
  76. forge/api/tenant_account.py +180 -0
  77. forge/api/user.py +33 -0
  78. forge/api/vpc.py +163 -0
  79. forge/command/__init__.py +0 -0
  80. forge/command/all_commands.py +20 -0
  81. forge/command/allocation.py +201 -0
  82. forge/command/args_validation.py +51 -0
  83. forge/command/constraint.py +178 -0
  84. forge/command/forge.py +18 -0
  85. forge/command/infiniband.py +157 -0
  86. forge/command/instance.py +286 -0
  87. forge/command/instance_type.py +189 -0
  88. forge/command/ipblock.py +210 -0
  89. forge/command/machine.py +83 -0
  90. forge/command/operating_system.py +289 -0
  91. forge/command/provider.py +39 -0
  92. forge/command/rule.py +165 -0
  93. forge/command/site.py +209 -0
  94. forge/command/ssh_key.py +152 -0
  95. forge/command/ssh_key_group.py +183 -0
  96. forge/command/subnet.py +159 -0
  97. forge/command/tenant.py +39 -0
  98. forge/command/tenant_account.py +106 -0
  99. forge/command/user.py +39 -0
  100. forge/command/vpc.py +123 -0
  101. forge/printer/__init__.py +0 -0
  102. forge/printer/allocation.py +171 -0
  103. forge/printer/constraint.py +106 -0
  104. forge/printer/infiniband.py +178 -0
  105. forge/printer/instance.py +424 -0
  106. forge/printer/instance_type.py +280 -0
  107. forge/printer/ipblock.py +171 -0
  108. forge/printer/machine.py +269 -0
  109. forge/printer/operating_system.py +194 -0
  110. forge/printer/provider.py +142 -0
  111. forge/printer/rule.py +217 -0
  112. forge/printer/site.py +185 -0
  113. forge/printer/ssh_key.py +149 -0
  114. forge/printer/ssh_key_group.py +275 -0
  115. forge/printer/subnet.py +189 -0
  116. forge/printer/tenant.py +139 -0
  117. forge/printer/tenant_account.py +200 -0
  118. forge/printer/user.py +62 -0
  119. forge/printer/vpc.py +153 -0
  120. ngcbpc/api/__init__.py +11 -0
  121. ngcbpc/api/authentication.py +762 -0
  122. ngcbpc/api/configuration.py +1621 -0
  123. ngcbpc/api/connection.py +536 -0
  124. ngcbpc/api/pagination.py +228 -0
  125. ngcbpc/api/search.py +122 -0
  126. ngcbpc/api/utils.py +213 -0
  127. ngcbpc/command/__init__.py +11 -0
  128. ngcbpc/command/args_validation.py +353 -0
  129. ngcbpc/command/clicommand.py +340 -0
  130. ngcbpc/command/completers.py +43 -0
  131. ngcbpc/command/config.py +535 -0
  132. ngcbpc/command/global_args.py +122 -0
  133. ngcbpc/command/parser.py +282 -0
  134. ngcbpc/constants.py +411 -0
  135. ngcbpc/data/api/Ace.py +840 -0
  136. ngcbpc/data/api/AceCreateRequest.py +681 -0
  137. ngcbpc/data/api/AceHealth.py +90 -0
  138. ngcbpc/data/api/AceInstance.py +860 -0
  139. ngcbpc/data/api/AceInstancePrices.py +167 -0
  140. ngcbpc/data/api/AceInstancePricesResponse.py +99 -0
  141. ngcbpc/data/api/AceInstanceTypeEnum.py +3 -0
  142. ngcbpc/data/api/AceListResponse.py +126 -0
  143. ngcbpc/data/api/AceNodeRemapRequest.py +69 -0
  144. ngcbpc/data/api/AceProvider.py +3 -0
  145. ngcbpc/data/api/AceResponse.py +94 -0
  146. ngcbpc/data/api/AceSimplified.py +111 -0
  147. ngcbpc/data/api/AceStorageInfo.py +310 -0
  148. ngcbpc/data/api/AceType.py +3 -0
  149. ngcbpc/data/api/AceUpdate.py +730 -0
  150. ngcbpc/data/api/AlertAggregationType.py +3 -0
  151. ngcbpc/data/api/AlertDeliveryMode.py +150 -0
  152. ngcbpc/data/api/AlternateContact.py +114 -0
  153. ngcbpc/data/api/Analysis.py +136 -0
  154. ngcbpc/data/api/AuditLogs.py +281 -0
  155. ngcbpc/data/api/AuditLogsEventRequest.py +262 -0
  156. ngcbpc/data/api/AuditLogsEventResponse.py +229 -0
  157. ngcbpc/data/api/AuditLogsPresignedUrlResponse.py +92 -0
  158. ngcbpc/data/api/AuditLogsRequest.py +98 -0
  159. ngcbpc/data/api/AuditLogsResponse.py +99 -0
  160. ngcbpc/data/api/BannerEvent.py +151 -0
  161. ngcbpc/data/api/BannerEventCreateRequest.py +204 -0
  162. ngcbpc/data/api/BannerEventCreateResponse.py +345 -0
  163. ngcbpc/data/api/BannerEventIncident.py +264 -0
  164. ngcbpc/data/api/BannerEventIncidentMeta.py +235 -0
  165. ngcbpc/data/api/BannerEventIncidentSeverityEnum.py +3 -0
  166. ngcbpc/data/api/BannerEventIncidentStatusEnum.py +3 -0
  167. ngcbpc/data/api/BannerEventListResponse.py +123 -0
  168. ngcbpc/data/api/BannerEventResponse.py +119 -0
  169. ngcbpc/data/api/BannerEventTypeEnum.py +3 -0
  170. ngcbpc/data/api/BannerEventUpdateRequest.py +170 -0
  171. ngcbpc/data/api/BannerEventUpdateResponse.py +345 -0
  172. ngcbpc/data/api/BatchResourceTypeEnum.py +3 -0
  173. ngcbpc/data/api/CelestialErrorDetail.py +87 -0
  174. ngcbpc/data/api/CelestialFilters.py +68 -0
  175. ngcbpc/data/api/ConfigRequest.py +223 -0
  176. ngcbpc/data/api/ContainerResources.py +94 -0
  177. ngcbpc/data/api/CreditsHistory.py +63 -0
  178. ngcbpc/data/api/CreditsHistoryResponse.py +95 -0
  179. ngcbpc/data/api/CurrencyCode.py +3 -0
  180. ngcbpc/data/api/Dataset.py +771 -0
  181. ngcbpc/data/api/DatasetAddFilesRequest.py +77 -0
  182. ngcbpc/data/api/DatasetCreateRequest.py +252 -0
  183. ngcbpc/data/api/DatasetFile.py +191 -0
  184. ngcbpc/data/api/DatasetFileBatch.py +71 -0
  185. ngcbpc/data/api/DatasetFileEventRequest.py +184 -0
  186. ngcbpc/data/api/DatasetFilePath.py +84 -0
  187. ngcbpc/data/api/DatasetListResponse.py +160 -0
  188. ngcbpc/data/api/DatasetResponse.py +155 -0
  189. ngcbpc/data/api/DatasetSimplified.py +622 -0
  190. ngcbpc/data/api/DatasetStatusEnum.py +3 -0
  191. ngcbpc/data/api/DatasetUpdateRequest.py +226 -0
  192. ngcbpc/data/api/DeviceLoginRequest.py +116 -0
  193. ngcbpc/data/api/DeviceLoginResponse.py +133 -0
  194. ngcbpc/data/api/DownloadTokenMetadata.py +112 -0
  195. ngcbpc/data/api/EarlyAccessOrgCreateRequest.py +199 -0
  196. ngcbpc/data/api/Entitlement.py +172 -0
  197. ngcbpc/data/api/EntitlementProduct.py +112 -0
  198. ngcbpc/data/api/Env.py +103 -0
  199. ngcbpc/data/api/ErrorResponse.py +66 -0
  200. ngcbpc/data/api/Eula.py +99 -0
  201. ngcbpc/data/api/EulaSubmitResponse.py +93 -0
  202. ngcbpc/data/api/ExpTrackingParams.py +125 -0
  203. ngcbpc/data/api/FcOnboardingEventRequest.py +67 -0
  204. ngcbpc/data/api/GetRepositoryTagVexResponse.py +123 -0
  205. ngcbpc/data/api/Health.py +134 -0
  206. ngcbpc/data/api/HealthResponse.py +96 -0
  207. ngcbpc/data/api/HttpGet.py +87 -0
  208. ngcbpc/data/api/IPAddress.py +80 -0
  209. ngcbpc/data/api/InfinityManagerSettings.py +91 -0
  210. ngcbpc/data/api/Job.py +981 -0
  211. ngcbpc/data/api/JobArrayTypeEnum.py +3 -0
  212. ngcbpc/data/api/JobContainerProperties.py +364 -0
  213. ngcbpc/data/api/JobContainerResources.py +89 -0
  214. ngcbpc/data/api/JobCreateRequest.py +1153 -0
  215. ngcbpc/data/api/JobDataLocation.py +292 -0
  216. ngcbpc/data/api/JobDatasetMountInfo.py +117 -0
  217. ngcbpc/data/api/JobDefinition.py +1119 -0
  218. ngcbpc/data/api/JobFlowTypeEnum.py +3 -0
  219. ngcbpc/data/api/JobHealthCheck.py +143 -0
  220. ngcbpc/data/api/JobInitContainer.py +363 -0
  221. ngcbpc/data/api/JobLabelDeleteRequest.py +116 -0
  222. ngcbpc/data/api/JobLabelResponse.py +168 -0
  223. ngcbpc/data/api/JobLabelUpdateRequest.py +137 -0
  224. ngcbpc/data/api/JobLabels.py +147 -0
  225. ngcbpc/data/api/JobListResponse.py +159 -0
  226. ngcbpc/data/api/JobNodeCreateRequest.py +329 -0
  227. ngcbpc/data/api/JobNodeDeleteRequest.py +98 -0
  228. ngcbpc/data/api/JobNodePreemptRequest.py +68 -0
  229. ngcbpc/data/api/JobNodeResumeRequest.py +69 -0
  230. ngcbpc/data/api/JobPortMapping.py +199 -0
  231. ngcbpc/data/api/JobPriorityEnum.py +3 -0
  232. ngcbpc/data/api/JobResponse.py +151 -0
  233. ngcbpc/data/api/JobResultsetMountInfo.py +125 -0
  234. ngcbpc/data/api/JobRunPolicy.py +165 -0
  235. ngcbpc/data/api/JobSidecarContainer.py +450 -0
  236. ngcbpc/data/api/JobStatus.py +560 -0
  237. ngcbpc/data/api/JobStatusChangedEvent.py +88 -0
  238. ngcbpc/data/api/JobStatusCount.py +88 -0
  239. ngcbpc/data/api/JobStatusCountResponse.py +99 -0
  240. ngcbpc/data/api/JobStatusEnum.py +3 -0
  241. ngcbpc/data/api/JobStatusSyncRequest.py +77 -0
  242. ngcbpc/data/api/JobStatusUpdateRequest.py +256 -0
  243. ngcbpc/data/api/JobSubmitResponse.py +96 -0
  244. ngcbpc/data/api/JobTemplate.py +212 -0
  245. ngcbpc/data/api/JobTemplateCreateRequest.py +149 -0
  246. ngcbpc/data/api/JobTemplateResponse.py +96 -0
  247. ngcbpc/data/api/JobTemplateUpdateRequest.py +178 -0
  248. ngcbpc/data/api/JobTypeEnum.py +3 -0
  249. ngcbpc/data/api/JobVolume.py +67 -0
  250. ngcbpc/data/api/JobVolumeMount.py +124 -0
  251. ngcbpc/data/api/JobWorkspaceMountInfo.py +124 -0
  252. ngcbpc/data/api/Measurement.py +63 -0
  253. ngcbpc/data/api/MeasurementAggregationType.py +3 -0
  254. ngcbpc/data/api/MeasurementAlert.py +298 -0
  255. ngcbpc/data/api/MeasurementAlertCreateRequest.py +269 -0
  256. ngcbpc/data/api/MeasurementAlertCriteria.py +141 -0
  257. ngcbpc/data/api/MeasurementAlertListResponse.py +127 -0
  258. ngcbpc/data/api/MeasurementAlertResponse.py +95 -0
  259. ngcbpc/data/api/MeasurementQueryParams.py +188 -0
  260. ngcbpc/data/api/MeasurementQueryRequest.py +71 -0
  261. ngcbpc/data/api/MeasurementResult.py +71 -0
  262. ngcbpc/data/api/MeasurementResultListResponse.py +99 -0
  263. ngcbpc/data/api/MeasurementSeries.py +152 -0
  264. ngcbpc/data/api/MeasurementTag.py +87 -0
  265. ngcbpc/data/api/MeasurementType.py +3 -0
  266. ngcbpc/data/api/MetaData.py +98 -0
  267. ngcbpc/data/api/MeteringQueryParams.py +189 -0
  268. ngcbpc/data/api/MeteringQueryRequest.py +71 -0
  269. ngcbpc/data/api/MeteringResourceUtilizationEvent.py +258 -0
  270. ngcbpc/data/api/MeteringResultListResponse.py +99 -0
  271. ngcbpc/data/api/MeteringType.py +3 -0
  272. ngcbpc/data/api/MoveNodeRequest.py +68 -0
  273. ngcbpc/data/api/NetworkProtocolEnum.py +3 -0
  274. ngcbpc/data/api/NetworkTypeEnum.py +3 -0
  275. ngcbpc/data/api/Node.py +356 -0
  276. ngcbpc/data/api/NodeCommand.py +116 -0
  277. ngcbpc/data/api/NodeCommandRequest.py +91 -0
  278. ngcbpc/data/api/NodeCreateResponse.py +171 -0
  279. ngcbpc/data/api/NodeListResponse.py +126 -0
  280. ngcbpc/data/api/NodeResponse.py +122 -0
  281. ngcbpc/data/api/NodeSimplified.py +113 -0
  282. ngcbpc/data/api/NodeStatus.py +865 -0
  283. ngcbpc/data/api/NodeStatusChangedEvent.py +64 -0
  284. ngcbpc/data/api/NodeStatusUpdate.py +123 -0
  285. ngcbpc/data/api/NodeType.py +3 -0
  286. ngcbpc/data/api/OrgAdminUserCreatedEvent.py +112 -0
  287. ngcbpc/data/api/OrgCreateRequest.py +418 -0
  288. ngcbpc/data/api/OrgCreateResponse.py +95 -0
  289. ngcbpc/data/api/OrgCreatedEvent.py +64 -0
  290. ngcbpc/data/api/OrgEnablementCreateRequest.py +102 -0
  291. ngcbpc/data/api/OrgListEntitlementResponse.py +100 -0
  292. ngcbpc/data/api/OrgListResponse.py +127 -0
  293. ngcbpc/data/api/OrgOwner.py +149 -0
  294. ngcbpc/data/api/OrgProfileUpdateRequest.py +105 -0
  295. ngcbpc/data/api/OrgResponse.py +95 -0
  296. ngcbpc/data/api/OrgType.py +3 -0
  297. ngcbpc/data/api/OrgUpdateRequest.py +541 -0
  298. ngcbpc/data/api/Organization.py +629 -0
  299. ngcbpc/data/api/OrganizationEntitlement.py +95 -0
  300. ngcbpc/data/api/PackageVersion.py +135 -0
  301. ngcbpc/data/api/PackageVersionListResponse.py +99 -0
  302. ngcbpc/data/api/PaginationInfo.py +161 -0
  303. ngcbpc/data/api/PasswordChangeRequest.py +114 -0
  304. ngcbpc/data/api/PhysicalNodeCreateRequest.py +159 -0
  305. ngcbpc/data/api/PoolMeasurementQueryParams.py +186 -0
  306. ngcbpc/data/api/PoolMeasurementQueryRequest.py +71 -0
  307. ngcbpc/data/api/PoolMeasurementType.py +3 -0
  308. ngcbpc/data/api/PostStorageProvision.py +145 -0
  309. ngcbpc/data/api/Price.py +138 -0
  310. ngcbpc/data/api/PriceType.py +3 -0
  311. ngcbpc/data/api/ProductEnablement.py +166 -0
  312. ngcbpc/data/api/ProductEnablementTypeEnum.py +3 -0
  313. ngcbpc/data/api/ProductNameEnum.py +3 -0
  314. ngcbpc/data/api/ProductSubscription.py +213 -0
  315. ngcbpc/data/api/PurchaseOrder.py +88 -0
  316. ngcbpc/data/api/Replica.py +353 -0
  317. ngcbpc/data/api/ReplicaListResponse.py +127 -0
  318. ngcbpc/data/api/ReplicaResponse.py +127 -0
  319. ngcbpc/data/api/RepoScanSettings.py +192 -0
  320. ngcbpc/data/api/RepositoryTagVexByDigest.py +94 -0
  321. ngcbpc/data/api/RepositoryTagVexDetail.py +90 -0
  322. ngcbpc/data/api/RequestStatus.py +137 -0
  323. ngcbpc/data/api/ReservedLabels.py +63 -0
  324. ngcbpc/data/api/Response.py +66 -0
  325. ngcbpc/data/api/Resultset.py +368 -0
  326. ngcbpc/data/api/ResultsetFile.py +203 -0
  327. ngcbpc/data/api/ResultsetFileBatch.py +71 -0
  328. ngcbpc/data/api/ResultsetFileEventRequest.py +132 -0
  329. ngcbpc/data/api/ResultsetListResponse.py +161 -0
  330. ngcbpc/data/api/ResultsetResponse.py +156 -0
  331. ngcbpc/data/api/ResultsetToDatasetConversionEvent.py +114 -0
  332. ngcbpc/data/api/RoleChangeRequest.py +157 -0
  333. ngcbpc/data/api/RoleProduct.py +89 -0
  334. ngcbpc/data/api/RoleType.py +3 -0
  335. ngcbpc/data/api/SCPJobDetails.py +64 -0
  336. ngcbpc/data/api/Saml.py +86 -0
  337. ngcbpc/data/api/SamlResponse.py +93 -0
  338. ngcbpc/data/api/Secret.py +133 -0
  339. ngcbpc/data/api/SecretKVEnv.py +142 -0
  340. ngcbpc/data/api/SecretKeySpec.py +106 -0
  341. ngcbpc/data/api/SecretSpec.py +132 -0
  342. ngcbpc/data/api/ServiceAccess.py +93 -0
  343. ngcbpc/data/api/StatusCode.py +3 -0
  344. ngcbpc/data/api/StorageAccessInfo.py +140 -0
  345. ngcbpc/data/api/StorageAuthenticationResponse.py +189 -0
  346. ngcbpc/data/api/StorageCephInfo.py +88 -0
  347. ngcbpc/data/api/StorageClusterCreateRequest.py +336 -0
  348. ngcbpc/data/api/StorageClusterListResponse.py +99 -0
  349. ngcbpc/data/api/StorageClusterResponse.py +95 -0
  350. ngcbpc/data/api/StorageClusterUpdateRequest.py +290 -0
  351. ngcbpc/data/api/StorageEngineTypeEnum.py +3 -0
  352. ngcbpc/data/api/StorageLocation.py +128 -0
  353. ngcbpc/data/api/StorageLocationStorageTypeEnum.py +3 -0
  354. ngcbpc/data/api/StorageLustreInfo.py +66 -0
  355. ngcbpc/data/api/StorageNfsv3Info.py +66 -0
  356. ngcbpc/data/api/StorageProxyfsInfo.py +66 -0
  357. ngcbpc/data/api/StorageResource.py +525 -0
  358. ngcbpc/data/api/StorageResourceStatusEnum.py +3 -0
  359. ngcbpc/data/api/StorageServiceConfig.py +149 -0
  360. ngcbpc/data/api/StorageServiceConfigDetails.py +403 -0
  361. ngcbpc/data/api/StorageYarofsInfo.py +163 -0
  362. ngcbpc/data/api/SuggestedNamesResponse.py +91 -0
  363. ngcbpc/data/api/SystemLabels.py +63 -0
  364. ngcbpc/data/api/TargetSystemUserIdentifier.py +207 -0
  365. ngcbpc/data/api/Team.py +191 -0
  366. ngcbpc/data/api/TeamCreateRequest.py +119 -0
  367. ngcbpc/data/api/TeamCreateResponse.py +94 -0
  368. ngcbpc/data/api/TeamCreatedEvent.py +111 -0
  369. ngcbpc/data/api/TeamListResponse.py +126 -0
  370. ngcbpc/data/api/TeamResponse.py +94 -0
  371. ngcbpc/data/api/TeamUpdateRequest.py +125 -0
  372. ngcbpc/data/api/TelemetryClientCreateResponse.py +116 -0
  373. ngcbpc/data/api/TokenResponse.py +91 -0
  374. ngcbpc/data/api/UpdateAceRequest.py +67 -0
  375. ngcbpc/data/api/UpdateNodeRequest.py +87 -0
  376. ngcbpc/data/api/User.py +889 -0
  377. ngcbpc/data/api/UserCreateRequest.py +280 -0
  378. ngcbpc/data/api/UserCreatedEvent.py +88 -0
  379. ngcbpc/data/api/UserInvitation.py +304 -0
  380. ngcbpc/data/api/UserInvitationListResponse.py +127 -0
  381. ngcbpc/data/api/UserInvitationResponse.py +94 -0
  382. ngcbpc/data/api/UserKeyResponse.py +176 -0
  383. ngcbpc/data/api/UserLabels.py +63 -0
  384. ngcbpc/data/api/UserListResponse.py +126 -0
  385. ngcbpc/data/api/UserMetadata.py +257 -0
  386. ngcbpc/data/api/UserOrgRegisterRequest.py +293 -0
  387. ngcbpc/data/api/UserRegisterRequest.py +206 -0
  388. ngcbpc/data/api/UserResponse.py +152 -0
  389. ngcbpc/data/api/UserRole.py +199 -0
  390. ngcbpc/data/api/UserRoleDefinition.py +171 -0
  391. ngcbpc/data/api/UserRoleDefinitionsResponse.py +100 -0
  392. ngcbpc/data/api/UserSession.py +64 -0
  393. ngcbpc/data/api/UserSessionResponse.py +94 -0
  394. ngcbpc/data/api/UserStorageClusterUpdateRequest.py +178 -0
  395. ngcbpc/data/api/UserStorageQuota.py +388 -0
  396. ngcbpc/data/api/UserStorageQuotaListResponse.py +177 -0
  397. ngcbpc/data/api/UserStorageQuotaResponse.py +96 -0
  398. ngcbpc/data/api/UserStorageQuotaUpdateRequest.py +123 -0
  399. ngcbpc/data/api/UserTopicEvent.py +208 -0
  400. ngcbpc/data/api/UserUpdateRequest.py +460 -0
  401. ngcbpc/data/api/UsersInfo.py +63 -0
  402. ngcbpc/data/api/ValidateOrgQueryParams.py +139 -0
  403. ngcbpc/data/api/VirtualNodeCreateRequest.py +91 -0
  404. ngcbpc/data/api/WebSocket.py +92 -0
  405. ngcbpc/data/api/WebSocketReceipt.py +115 -0
  406. ngcbpc/data/api/Webhook.py +293 -0
  407. ngcbpc/data/api/WebhookCreateRequest.py +267 -0
  408. ngcbpc/data/api/WebhookEventType.py +3 -0
  409. ngcbpc/data/api/WebhookListResponse.py +127 -0
  410. ngcbpc/data/api/WebhookResponse.py +94 -0
  411. ngcbpc/data/api/WorkspaceCreateRequest.py +163 -0
  412. ngcbpc/data/api/WorkspaceListResponse.py +160 -0
  413. ngcbpc/data/api/WorkspaceResponse.py +95 -0
  414. ngcbpc/data/api/WorkspaceUpdateRequest.py +109 -0
  415. ngcbpc/data/api/__init__.py +2 -0
  416. ngcbpc/data/search/AccessTypeEnum.py +3 -0
  417. ngcbpc/data/search/CountParams.py +109 -0
  418. ngcbpc/data/search/CountParamsField.py +106 -0
  419. ngcbpc/data/search/CountResponse.py +109 -0
  420. ngcbpc/data/search/CountResponseCount.py +134 -0
  421. ngcbpc/data/search/CountResponseParams.py +71 -0
  422. ngcbpc/data/search/Health.py +134 -0
  423. ngcbpc/data/search/HealthResponse.py +68 -0
  424. ngcbpc/data/search/LabelGroup.py +119 -0
  425. ngcbpc/data/search/LabelGroupValue.py +117 -0
  426. ngcbpc/data/search/LabelResponseGlobal.py +71 -0
  427. ngcbpc/data/search/LabelResponseOrgTeam.py +99 -0
  428. ngcbpc/data/search/LabelSet.py +280 -0
  429. ngcbpc/data/search/LabelSetCreateRequest.py +181 -0
  430. ngcbpc/data/search/LabelSetResponse.py +271 -0
  431. ngcbpc/data/search/LabelSetUpdateRequest.py +132 -0
  432. ngcbpc/data/search/LabelValue.py +113 -0
  433. ngcbpc/data/search/ListLabelSetsResponse.py +71 -0
  434. ngcbpc/data/search/MetaData.py +98 -0
  435. ngcbpc/data/search/Resource.py +707 -0
  436. ngcbpc/data/search/ResourceAttribute.py +107 -0
  437. ngcbpc/data/search/ResourceEventEnum.py +3 -0
  438. ngcbpc/data/search/ResourceLabel.py +101 -0
  439. ngcbpc/data/search/ResourcePopularityTypeEnum.py +3 -0
  440. ngcbpc/data/search/ResourcePopularityUpdate.py +158 -0
  441. ngcbpc/data/search/ResourceTypeEnum.py +3 -0
  442. ngcbpc/data/search/SearchFilterCategory.py +135 -0
  443. ngcbpc/data/search/SearchFilterValue.py +126 -0
  444. ngcbpc/data/search/SearchParamFilter.py +105 -0
  445. ngcbpc/data/search/SearchParamOrderBy.py +106 -0
  446. ngcbpc/data/search/SearchParamOrderByEnum.py +3 -0
  447. ngcbpc/data/search/SearchParams.py +311 -0
  448. ngcbpc/data/search/SearchPopularityUpdateQueueMsg.py +109 -0
  449. ngcbpc/data/search/SearchQueueMsg.py +104 -0
  450. ngcbpc/data/search/SearchResponse.py +165 -0
  451. ngcbpc/data/search/SearchResponseResult.py +144 -0
  452. ngcbpc/data/search/SearchResponseResultResource.py +660 -0
  453. ngcbpc/data/search/__init__.py +2 -0
  454. ngcbpc/environ.py +185 -0
  455. ngcbpc/errors.py +170 -0
  456. ngcbpc/expiring_cache.py +63 -0
  457. ngcbpc/logger.py +53 -0
  458. ngcbpc/printer/__init__.py +11 -0
  459. ngcbpc/printer/config.py +40 -0
  460. ngcbpc/printer/formatter.py +206 -0
  461. ngcbpc/printer/nvPrettyPrint.py +1007 -0
  462. ngcbpc/printer/prettytableWrap.py +124 -0
  463. ngcbpc/printer/transfer.py +223 -0
  464. ngcbpc/printer/utils.py +39 -0
  465. ngcbpc/singleton.py +33 -0
  466. ngcbpc/timer.py +26 -0
  467. ngcbpc/tracing.py +290 -0
  468. ngcbpc/transfer/__init__.py +11 -0
  469. ngcbpc/transfer/adapter.py +537 -0
  470. ngcbpc/transfer/async_download.py +954 -0
  471. ngcbpc/transfer/controller.py +191 -0
  472. ngcbpc/transfer/download.py +572 -0
  473. ngcbpc/transfer/file_cache.py +104 -0
  474. ngcbpc/transfer/grpc/__init__.py +11 -0
  475. ngcbpc/transfer/grpc/proto_py/__init__.py +11 -0
  476. ngcbpc/transfer/grpc/proto_py/upload_pb2.py +1018 -0
  477. ngcbpc/transfer/grpc/proto_py/upload_pb2_grpc.py +124 -0
  478. ngcbpc/transfer/http_uploader.py +617 -0
  479. ngcbpc/transfer/manager.py +393 -0
  480. ngcbpc/transfer/task.py +404 -0
  481. ngcbpc/transfer/upload.py +551 -0
  482. ngcbpc/transfer/utils.py +327 -0
  483. ngcbpc/transformer/__init__.py +26 -0
  484. ngcbpc/util/__init__.py +11 -0
  485. ngcbpc/util/base_utils.py +41 -0
  486. ngcbpc/util/datetime_utils.py +143 -0
  487. ngcbpc/util/db_util.py +20 -0
  488. ngcbpc/util/file_utils.py +512 -0
  489. ngcbpc/util/io_utils.py +140 -0
  490. ngcbpc/util/ssh_utils.py +146 -0
  491. ngcbpc/util/utils.py +542 -0
  492. ngccli/data/api/Ace.py +840 -0
  493. ngccli/data/api/AceCreateRequest.py +681 -0
  494. ngccli/data/api/AceHealth.py +90 -0
  495. ngccli/data/api/AceInstance.py +860 -0
  496. ngccli/data/api/AceInstancePrices.py +167 -0
  497. ngccli/data/api/AceInstancePricesResponse.py +99 -0
  498. ngccli/data/api/AceInstanceTypeEnum.py +3 -0
  499. ngccli/data/api/AceListResponse.py +126 -0
  500. ngccli/data/api/AceNodeRemapRequest.py +69 -0
  501. ngccli/data/api/AceProvider.py +3 -0
  502. ngccli/data/api/AceResponse.py +94 -0
  503. ngccli/data/api/AceSimplified.py +111 -0
  504. ngccli/data/api/AceStorageInfo.py +310 -0
  505. ngccli/data/api/AceType.py +3 -0
  506. ngccli/data/api/AceUpdate.py +730 -0
  507. ngccli/data/api/AlertAggregationType.py +3 -0
  508. ngccli/data/api/AlertDeliveryMode.py +150 -0
  509. ngccli/data/api/AlternateContact.py +114 -0
  510. ngccli/data/api/Analysis.py +136 -0
  511. ngccli/data/api/AuditLogs.py +281 -0
  512. ngccli/data/api/AuditLogsEventRequest.py +262 -0
  513. ngccli/data/api/AuditLogsEventResponse.py +229 -0
  514. ngccli/data/api/AuditLogsPresignedUrlResponse.py +92 -0
  515. ngccli/data/api/AuditLogsRequest.py +98 -0
  516. ngccli/data/api/AuditLogsResponse.py +99 -0
  517. ngccli/data/api/BannerEvent.py +151 -0
  518. ngccli/data/api/BannerEventCreateRequest.py +204 -0
  519. ngccli/data/api/BannerEventCreateResponse.py +345 -0
  520. ngccli/data/api/BannerEventIncident.py +264 -0
  521. ngccli/data/api/BannerEventIncidentMeta.py +235 -0
  522. ngccli/data/api/BannerEventIncidentSeverityEnum.py +3 -0
  523. ngccli/data/api/BannerEventIncidentStatusEnum.py +3 -0
  524. ngccli/data/api/BannerEventListResponse.py +123 -0
  525. ngccli/data/api/BannerEventResponse.py +119 -0
  526. ngccli/data/api/BannerEventTypeEnum.py +3 -0
  527. ngccli/data/api/BannerEventUpdateRequest.py +170 -0
  528. ngccli/data/api/BannerEventUpdateResponse.py +345 -0
  529. ngccli/data/api/BatchResourceTypeEnum.py +3 -0
  530. ngccli/data/api/CelestialErrorDetail.py +87 -0
  531. ngccli/data/api/CelestialFilters.py +68 -0
  532. ngccli/data/api/ConfigRequest.py +223 -0
  533. ngccli/data/api/ContainerResources.py +94 -0
  534. ngccli/data/api/CreditsHistory.py +63 -0
  535. ngccli/data/api/CreditsHistoryResponse.py +95 -0
  536. ngccli/data/api/CurrencyCode.py +3 -0
  537. ngccli/data/api/Dataset.py +771 -0
  538. ngccli/data/api/DatasetAddFilesRequest.py +77 -0
  539. ngccli/data/api/DatasetCreateRequest.py +252 -0
  540. ngccli/data/api/DatasetFile.py +191 -0
  541. ngccli/data/api/DatasetFileBatch.py +71 -0
  542. ngccli/data/api/DatasetFileEventRequest.py +184 -0
  543. ngccli/data/api/DatasetFilePath.py +84 -0
  544. ngccli/data/api/DatasetListResponse.py +160 -0
  545. ngccli/data/api/DatasetResponse.py +155 -0
  546. ngccli/data/api/DatasetSimplified.py +622 -0
  547. ngccli/data/api/DatasetStatusEnum.py +3 -0
  548. ngccli/data/api/DatasetUpdateRequest.py +226 -0
  549. ngccli/data/api/DeviceLoginRequest.py +116 -0
  550. ngccli/data/api/DeviceLoginResponse.py +133 -0
  551. ngccli/data/api/DownloadTokenMetadata.py +112 -0
  552. ngccli/data/api/EarlyAccessOrgCreateRequest.py +199 -0
  553. ngccli/data/api/Entitlement.py +172 -0
  554. ngccli/data/api/EntitlementProduct.py +112 -0
  555. ngccli/data/api/Env.py +103 -0
  556. ngccli/data/api/ErrorResponse.py +66 -0
  557. ngccli/data/api/Eula.py +99 -0
  558. ngccli/data/api/EulaSubmitResponse.py +93 -0
  559. ngccli/data/api/ExpTrackingParams.py +125 -0
  560. ngccli/data/api/FcOnboardingEventRequest.py +67 -0
  561. ngccli/data/api/GetRepositoryTagVexResponse.py +123 -0
  562. ngccli/data/api/Health.py +134 -0
  563. ngccli/data/api/HealthResponse.py +96 -0
  564. ngccli/data/api/HttpGet.py +87 -0
  565. ngccli/data/api/IPAddress.py +80 -0
  566. ngccli/data/api/InfinityManagerSettings.py +91 -0
  567. ngccli/data/api/Job.py +981 -0
  568. ngccli/data/api/JobArrayTypeEnum.py +3 -0
  569. ngccli/data/api/JobContainerProperties.py +364 -0
  570. ngccli/data/api/JobContainerResources.py +89 -0
  571. ngccli/data/api/JobCreateRequest.py +1153 -0
  572. ngccli/data/api/JobDataLocation.py +292 -0
  573. ngccli/data/api/JobDatasetMountInfo.py +117 -0
  574. ngccli/data/api/JobDefinition.py +1119 -0
  575. ngccli/data/api/JobFlowTypeEnum.py +3 -0
  576. ngccli/data/api/JobHealthCheck.py +143 -0
  577. ngccli/data/api/JobInitContainer.py +363 -0
  578. ngccli/data/api/JobLabelDeleteRequest.py +116 -0
  579. ngccli/data/api/JobLabelResponse.py +168 -0
  580. ngccli/data/api/JobLabelUpdateRequest.py +137 -0
  581. ngccli/data/api/JobLabels.py +147 -0
  582. ngccli/data/api/JobListResponse.py +159 -0
  583. ngccli/data/api/JobNodeCreateRequest.py +329 -0
  584. ngccli/data/api/JobNodeDeleteRequest.py +98 -0
  585. ngccli/data/api/JobNodePreemptRequest.py +68 -0
  586. ngccli/data/api/JobNodeResumeRequest.py +69 -0
  587. ngccli/data/api/JobPortMapping.py +199 -0
  588. ngccli/data/api/JobPriorityEnum.py +3 -0
  589. ngccli/data/api/JobResponse.py +151 -0
  590. ngccli/data/api/JobResultsetMountInfo.py +125 -0
  591. ngccli/data/api/JobRunPolicy.py +165 -0
  592. ngccli/data/api/JobSidecarContainer.py +450 -0
  593. ngccli/data/api/JobStatus.py +560 -0
  594. ngccli/data/api/JobStatusChangedEvent.py +88 -0
  595. ngccli/data/api/JobStatusCount.py +88 -0
  596. ngccli/data/api/JobStatusCountResponse.py +99 -0
  597. ngccli/data/api/JobStatusEnum.py +3 -0
  598. ngccli/data/api/JobStatusSyncRequest.py +77 -0
  599. ngccli/data/api/JobStatusUpdateRequest.py +256 -0
  600. ngccli/data/api/JobSubmitResponse.py +96 -0
  601. ngccli/data/api/JobTemplate.py +212 -0
  602. ngccli/data/api/JobTemplateCreateRequest.py +149 -0
  603. ngccli/data/api/JobTemplateResponse.py +96 -0
  604. ngccli/data/api/JobTemplateUpdateRequest.py +178 -0
  605. ngccli/data/api/JobTypeEnum.py +3 -0
  606. ngccli/data/api/JobVolume.py +67 -0
  607. ngccli/data/api/JobVolumeMount.py +124 -0
  608. ngccli/data/api/JobWorkspaceMountInfo.py +124 -0
  609. ngccli/data/api/Measurement.py +63 -0
  610. ngccli/data/api/MeasurementAggregationType.py +3 -0
  611. ngccli/data/api/MeasurementAlert.py +298 -0
  612. ngccli/data/api/MeasurementAlertCreateRequest.py +269 -0
  613. ngccli/data/api/MeasurementAlertCriteria.py +141 -0
  614. ngccli/data/api/MeasurementAlertListResponse.py +127 -0
  615. ngccli/data/api/MeasurementAlertResponse.py +95 -0
  616. ngccli/data/api/MeasurementQueryParams.py +188 -0
  617. ngccli/data/api/MeasurementQueryRequest.py +71 -0
  618. ngccli/data/api/MeasurementResult.py +71 -0
  619. ngccli/data/api/MeasurementResultListResponse.py +99 -0
  620. ngccli/data/api/MeasurementSeries.py +152 -0
  621. ngccli/data/api/MeasurementTag.py +87 -0
  622. ngccli/data/api/MeasurementType.py +3 -0
  623. ngccli/data/api/MetaData.py +98 -0
  624. ngccli/data/api/MeteringQueryParams.py +189 -0
  625. ngccli/data/api/MeteringQueryRequest.py +71 -0
  626. ngccli/data/api/MeteringResourceUtilizationEvent.py +258 -0
  627. ngccli/data/api/MeteringResultListResponse.py +99 -0
  628. ngccli/data/api/MeteringType.py +3 -0
  629. ngccli/data/api/MoveNodeRequest.py +68 -0
  630. ngccli/data/api/NetworkProtocolEnum.py +3 -0
  631. ngccli/data/api/NetworkTypeEnum.py +3 -0
  632. ngccli/data/api/Node.py +356 -0
  633. ngccli/data/api/NodeCommand.py +116 -0
  634. ngccli/data/api/NodeCommandRequest.py +91 -0
  635. ngccli/data/api/NodeCreateResponse.py +171 -0
  636. ngccli/data/api/NodeListResponse.py +126 -0
  637. ngccli/data/api/NodeResponse.py +122 -0
  638. ngccli/data/api/NodeSimplified.py +113 -0
  639. ngccli/data/api/NodeStatus.py +865 -0
  640. ngccli/data/api/NodeStatusChangedEvent.py +64 -0
  641. ngccli/data/api/NodeStatusUpdate.py +123 -0
  642. ngccli/data/api/NodeType.py +3 -0
  643. ngccli/data/api/OrgAdminUserCreatedEvent.py +112 -0
  644. ngccli/data/api/OrgCreateRequest.py +418 -0
  645. ngccli/data/api/OrgCreateResponse.py +95 -0
  646. ngccli/data/api/OrgCreatedEvent.py +64 -0
  647. ngccli/data/api/OrgEnablementCreateRequest.py +102 -0
  648. ngccli/data/api/OrgListEntitlementResponse.py +100 -0
  649. ngccli/data/api/OrgListResponse.py +127 -0
  650. ngccli/data/api/OrgOwner.py +149 -0
  651. ngccli/data/api/OrgProfileUpdateRequest.py +105 -0
  652. ngccli/data/api/OrgResponse.py +95 -0
  653. ngccli/data/api/OrgType.py +3 -0
  654. ngccli/data/api/OrgUpdateRequest.py +541 -0
  655. ngccli/data/api/Organization.py +629 -0
  656. ngccli/data/api/OrganizationEntitlement.py +95 -0
  657. ngccli/data/api/PackageVersion.py +135 -0
  658. ngccli/data/api/PackageVersionListResponse.py +99 -0
  659. ngccli/data/api/PaginationInfo.py +161 -0
  660. ngccli/data/api/PasswordChangeRequest.py +114 -0
  661. ngccli/data/api/PhysicalNodeCreateRequest.py +159 -0
  662. ngccli/data/api/PoolMeasurementQueryParams.py +186 -0
  663. ngccli/data/api/PoolMeasurementQueryRequest.py +71 -0
  664. ngccli/data/api/PoolMeasurementType.py +3 -0
  665. ngccli/data/api/PostStorageProvision.py +145 -0
  666. ngccli/data/api/Price.py +138 -0
  667. ngccli/data/api/PriceType.py +3 -0
  668. ngccli/data/api/ProductEnablement.py +166 -0
  669. ngccli/data/api/ProductEnablementTypeEnum.py +3 -0
  670. ngccli/data/api/ProductNameEnum.py +3 -0
  671. ngccli/data/api/ProductSubscription.py +213 -0
  672. ngccli/data/api/PurchaseOrder.py +88 -0
  673. ngccli/data/api/Replica.py +353 -0
  674. ngccli/data/api/ReplicaListResponse.py +127 -0
  675. ngccli/data/api/ReplicaResponse.py +127 -0
  676. ngccli/data/api/RepoScanSettings.py +192 -0
  677. ngccli/data/api/RepositoryTagVexByDigest.py +94 -0
  678. ngccli/data/api/RepositoryTagVexDetail.py +90 -0
  679. ngccli/data/api/RequestStatus.py +137 -0
  680. ngccli/data/api/ReservedLabels.py +63 -0
  681. ngccli/data/api/Response.py +66 -0
  682. ngccli/data/api/Resultset.py +368 -0
  683. ngccli/data/api/ResultsetFile.py +203 -0
  684. ngccli/data/api/ResultsetFileBatch.py +71 -0
  685. ngccli/data/api/ResultsetFileEventRequest.py +132 -0
  686. ngccli/data/api/ResultsetListResponse.py +161 -0
  687. ngccli/data/api/ResultsetResponse.py +156 -0
  688. ngccli/data/api/ResultsetToDatasetConversionEvent.py +114 -0
  689. ngccli/data/api/RoleChangeRequest.py +157 -0
  690. ngccli/data/api/RoleProduct.py +89 -0
  691. ngccli/data/api/RoleType.py +3 -0
  692. ngccli/data/api/SCPJobDetails.py +64 -0
  693. ngccli/data/api/Saml.py +86 -0
  694. ngccli/data/api/SamlResponse.py +93 -0
  695. ngccli/data/api/Secret.py +133 -0
  696. ngccli/data/api/SecretKVEnv.py +142 -0
  697. ngccli/data/api/SecretKeySpec.py +106 -0
  698. ngccli/data/api/SecretSpec.py +132 -0
  699. ngccli/data/api/ServiceAccess.py +93 -0
  700. ngccli/data/api/StatusCode.py +3 -0
  701. ngccli/data/api/StorageAccessInfo.py +140 -0
  702. ngccli/data/api/StorageAuthenticationResponse.py +189 -0
  703. ngccli/data/api/StorageCephInfo.py +88 -0
  704. ngccli/data/api/StorageClusterCreateRequest.py +336 -0
  705. ngccli/data/api/StorageClusterListResponse.py +99 -0
  706. ngccli/data/api/StorageClusterResponse.py +95 -0
  707. ngccli/data/api/StorageClusterUpdateRequest.py +290 -0
  708. ngccli/data/api/StorageEngineTypeEnum.py +3 -0
  709. ngccli/data/api/StorageLocation.py +128 -0
  710. ngccli/data/api/StorageLocationStorageTypeEnum.py +3 -0
  711. ngccli/data/api/StorageLustreInfo.py +66 -0
  712. ngccli/data/api/StorageNfsv3Info.py +66 -0
  713. ngccli/data/api/StorageProxyfsInfo.py +66 -0
  714. ngccli/data/api/StorageResource.py +525 -0
  715. ngccli/data/api/StorageResourceStatusEnum.py +3 -0
  716. ngccli/data/api/StorageServiceConfig.py +149 -0
  717. ngccli/data/api/StorageServiceConfigDetails.py +403 -0
  718. ngccli/data/api/StorageYarofsInfo.py +163 -0
  719. ngccli/data/api/SuggestedNamesResponse.py +91 -0
  720. ngccli/data/api/SystemLabels.py +63 -0
  721. ngccli/data/api/TargetSystemUserIdentifier.py +207 -0
  722. ngccli/data/api/Team.py +191 -0
  723. ngccli/data/api/TeamCreateRequest.py +119 -0
  724. ngccli/data/api/TeamCreateResponse.py +94 -0
  725. ngccli/data/api/TeamCreatedEvent.py +111 -0
  726. ngccli/data/api/TeamListResponse.py +126 -0
  727. ngccli/data/api/TeamResponse.py +94 -0
  728. ngccli/data/api/TeamUpdateRequest.py +125 -0
  729. ngccli/data/api/TelemetryClientCreateResponse.py +116 -0
  730. ngccli/data/api/TokenResponse.py +91 -0
  731. ngccli/data/api/UpdateAceRequest.py +67 -0
  732. ngccli/data/api/UpdateNodeRequest.py +87 -0
  733. ngccli/data/api/User.py +889 -0
  734. ngccli/data/api/UserCreateRequest.py +280 -0
  735. ngccli/data/api/UserCreatedEvent.py +88 -0
  736. ngccli/data/api/UserInvitation.py +304 -0
  737. ngccli/data/api/UserInvitationListResponse.py +127 -0
  738. ngccli/data/api/UserInvitationResponse.py +94 -0
  739. ngccli/data/api/UserKeyResponse.py +176 -0
  740. ngccli/data/api/UserLabels.py +63 -0
  741. ngccli/data/api/UserListResponse.py +126 -0
  742. ngccli/data/api/UserMetadata.py +257 -0
  743. ngccli/data/api/UserOrgRegisterRequest.py +293 -0
  744. ngccli/data/api/UserRegisterRequest.py +206 -0
  745. ngccli/data/api/UserResponse.py +152 -0
  746. ngccli/data/api/UserRole.py +199 -0
  747. ngccli/data/api/UserRoleDefinition.py +171 -0
  748. ngccli/data/api/UserRoleDefinitionsResponse.py +100 -0
  749. ngccli/data/api/UserSession.py +64 -0
  750. ngccli/data/api/UserSessionResponse.py +94 -0
  751. ngccli/data/api/UserStorageClusterUpdateRequest.py +178 -0
  752. ngccli/data/api/UserStorageQuota.py +388 -0
  753. ngccli/data/api/UserStorageQuotaListResponse.py +177 -0
  754. ngccli/data/api/UserStorageQuotaResponse.py +96 -0
  755. ngccli/data/api/UserStorageQuotaUpdateRequest.py +123 -0
  756. ngccli/data/api/UserTopicEvent.py +208 -0
  757. ngccli/data/api/UserUpdateRequest.py +460 -0
  758. ngccli/data/api/UsersInfo.py +63 -0
  759. ngccli/data/api/ValidateOrgQueryParams.py +139 -0
  760. ngccli/data/api/VirtualNodeCreateRequest.py +91 -0
  761. ngccli/data/api/WebSocket.py +92 -0
  762. ngccli/data/api/WebSocketReceipt.py +115 -0
  763. ngccli/data/api/Webhook.py +293 -0
  764. ngccli/data/api/WebhookCreateRequest.py +267 -0
  765. ngccli/data/api/WebhookEventType.py +3 -0
  766. ngccli/data/api/WebhookListResponse.py +127 -0
  767. ngccli/data/api/WebhookResponse.py +94 -0
  768. ngccli/data/api/WorkspaceCreateRequest.py +163 -0
  769. ngccli/data/api/WorkspaceListResponse.py +160 -0
  770. ngccli/data/api/WorkspaceResponse.py +95 -0
  771. ngccli/data/api/WorkspaceUpdateRequest.py +109 -0
  772. ngccli/data/api/__init__.py +2 -0
  773. ngccli/data/ecm/AdvancedStorage.py +158 -0
  774. ngccli/data/ecm/AdvancedStorageResponse.py +149 -0
  775. ngccli/data/ecm/Alert.py +168 -0
  776. ngccli/data/ecm/ApiKeyCreateRequest.py +68 -0
  777. ngccli/data/ecm/ApiKeyResponse.py +92 -0
  778. ngccli/data/ecm/AppConfigCreateRequest.py +117 -0
  779. ngccli/data/ecm/AppConfigResponse.py +95 -0
  780. ngccli/data/ecm/AppConfigUpdateRequest.py +67 -0
  781. ngccli/data/ecm/AppConfigs.py +126 -0
  782. ngccli/data/ecm/AppConfigsResponse.py +99 -0
  783. ngccli/data/ecm/Application.py +307 -0
  784. ngccli/data/ecm/ApplicationRequest.py +66 -0
  785. ngccli/data/ecm/ApplicationResponse.py +95 -0
  786. ngccli/data/ecm/ApplicationUpdateRequest.py +66 -0
  787. ngccli/data/ecm/ApplicationsResponse.py +127 -0
  788. ngccli/data/ecm/BuildStatus.py +136 -0
  789. ngccli/data/ecm/BuildStatusEnum.py +3 -0
  790. ngccli/data/ecm/ComponentResponse.py +63 -0
  791. ngccli/data/ecm/Console.py +193 -0
  792. ngccli/data/ecm/ConsoleResponse.py +93 -0
  793. ngccli/data/ecm/ConsolesResponse.py +98 -0
  794. ngccli/data/ecm/CreateCustomRootFsRequest.py +96 -0
  795. ngccli/data/ecm/CreateDeploymentRequest.py +385 -0
  796. ngccli/data/ecm/CreateLocationRequest.py +269 -0
  797. ngccli/data/ecm/CreateNodeRequest.py +189 -0
  798. ngccli/data/ecm/CustomInstaller.py +291 -0
  799. ngccli/data/ecm/CustomRootFsCreationEvent.py +126 -0
  800. ngccli/data/ecm/Deployment.py +605 -0
  801. ngccli/data/ecm/DeploymentLocation.py +514 -0
  802. ngccli/data/ecm/DeploymentResponse.py +94 -0
  803. ngccli/data/ecm/DeploymentsResponse.py +126 -0
  804. ngccli/data/ecm/EmsMetaData.py +208 -0
  805. ngccli/data/ecm/EmsResponse.py +167 -0
  806. ngccli/data/ecm/ErrorResponse.py +66 -0
  807. ngccli/data/ecm/Git.py +212 -0
  808. ngccli/data/ecm/GitApp.py +114 -0
  809. ngccli/data/ecm/GitRepositoriesResponse.py +98 -0
  810. ngccli/data/ecm/GitRepository.py +140 -0
  811. ngccli/data/ecm/GitRepositoryRequest.py +282 -0
  812. ngccli/data/ecm/GitRepositoryResponse.py +95 -0
  813. ngccli/data/ecm/GitRepositoryUpdateRequest.py +258 -0
  814. ngccli/data/ecm/GpuInfo.py +221 -0
  815. ngccli/data/ecm/GpuLogStorageUsageResponse.py +140 -0
  816. ngccli/data/ecm/GpuManagement.py +198 -0
  817. ngccli/data/ecm/GpuManagementResponse.py +99 -0
  818. ngccli/data/ecm/Installer.py +86 -0
  819. ngccli/data/ecm/InstallersResponse.py +102 -0
  820. ngccli/data/ecm/InstallersValidationRequest.py +66 -0
  821. ngccli/data/ecm/Iso.py +135 -0
  822. ngccli/data/ecm/Label.py +86 -0
  823. ngccli/data/ecm/LabelsResponse.py +126 -0
  824. ngccli/data/ecm/Location.py +640 -0
  825. ngccli/data/ecm/LocationAvailabilityEnum.py +3 -0
  826. ngccli/data/ecm/LocationDeploymentStatusEnum.py +3 -0
  827. ngccli/data/ecm/LocationHealthEnum.py +3 -0
  828. ngccli/data/ecm/LocationResponse.py +94 -0
  829. ngccli/data/ecm/LocationStatusEnum.py +3 -0
  830. ngccli/data/ecm/LocationsResponse.py +127 -0
  831. ngccli/data/ecm/Log.py +120 -0
  832. ngccli/data/ecm/LogsResponse.py +126 -0
  833. ngccli/data/ecm/ManagedGpus.py +86 -0
  834. ngccli/data/ecm/MetaData.py +86 -0
  835. ngccli/data/ecm/MetricQueryResponse.py +308 -0
  836. ngccli/data/ecm/Metrics.py +86 -0
  837. ngccli/data/ecm/MetricsBucketsResponse.py +90 -0
  838. ngccli/data/ecm/MetricsListResponse.py +121 -0
  839. ngccli/data/ecm/MigProfileInfo.py +87 -0
  840. ngccli/data/ecm/MigStatusEnum.py +3 -0
  841. ngccli/data/ecm/NetworkInfo.py +249 -0
  842. ngccli/data/ecm/NetworkInfoResponse.py +96 -0
  843. ngccli/data/ecm/NetworkInterface.py +87 -0
  844. ngccli/data/ecm/Node.py +622 -0
  845. ngccli/data/ecm/NodeConnectionEnum.py +3 -0
  846. ngccli/data/ecm/NodeGpuInfoResponse.py +173 -0
  847. ngccli/data/ecm/NodeHealthEnum.py +3 -0
  848. ngccli/data/ecm/NodeResponse.py +93 -0
  849. ngccli/data/ecm/NodeStatusEnum.py +3 -0
  850. ngccli/data/ecm/NodesResponse.py +125 -0
  851. ngccli/data/ecm/PaginationInfo.py +161 -0
  852. ngccli/data/ecm/RemoteApp.py +158 -0
  853. ngccli/data/ecm/RemoteAppDetail.py +189 -0
  854. ngccli/data/ecm/RemoteAppResponse.py +94 -0
  855. ngccli/data/ecm/RemoteAppTunnelResponse.py +156 -0
  856. ngccli/data/ecm/RemoteConsoleSshRequest.py +67 -0
  857. ngccli/data/ecm/RemoteConsoleSshResponse.py +156 -0
  858. ngccli/data/ecm/RemoteManagerStatusTypeEnum.py +3 -0
  859. ngccli/data/ecm/RequestStatus.py +137 -0
  860. ngccli/data/ecm/Response.py +66 -0
  861. ngccli/data/ecm/ScanResultsStatusEnum.py +3 -0
  862. ngccli/data/ecm/SecurityMinimunSupportedVersion.py +87 -0
  863. ngccli/data/ecm/SettingsResponse.py +600 -0
  864. ngccli/data/ecm/SignedContainerKeysRequest.py +70 -0
  865. ngccli/data/ecm/SignedContainerKeysResponse.py +70 -0
  866. ngccli/data/ecm/SortOrderEnum.py +3 -0
  867. ngccli/data/ecm/StatusCode.py +3 -0
  868. ngccli/data/ecm/TypeVersion.py +110 -0
  869. ngccli/data/ecm/TypeVersions.py +94 -0
  870. ngccli/data/ecm/UpdateDeploymentRequest.py +300 -0
  871. ngccli/data/ecm/UpdateGpuInfo.py +112 -0
  872. ngccli/data/ecm/UpdateLocationRequest.py +248 -0
  873. ngccli/data/ecm/UpdateNodeGpuInfoRequest.py +95 -0
  874. ngccli/data/ecm/UpdateNodeRequest.py +165 -0
  875. ngccli/data/ecm/UpdateSettingsRequest.py +306 -0
  876. ngccli/data/ecm/UpdateStatusEnum.py +3 -0
  877. ngccli/data/ecm/ValidationStatus.py +135 -0
  878. ngccli/data/ecm/__init__.py +2 -0
  879. ngccli/data/model/AIFoundationModel.py +227 -0
  880. ngccli/data/model/AIPlaygroundCreateRequest.py +137 -0
  881. ngccli/data/model/AIPlaygroundResponse.py +227 -0
  882. ngccli/data/model/AIPlaygroundUpdateRequest.py +112 -0
  883. ngccli/data/model/AccessTypeEnum.py +3 -0
  884. ngccli/data/model/ApplicationType.py +3 -0
  885. ngccli/data/model/Artifact.py +725 -0
  886. ngccli/data/model/ArtifactAttribute.py +107 -0
  887. ngccli/data/model/ArtifactCatalogFlags.py +113 -0
  888. ngccli/data/model/ArtifactCreateRequest.py +452 -0
  889. ngccli/data/model/ArtifactDeploymentParameters.py +259 -0
  890. ngccli/data/model/ArtifactDownloadAllRequest.py +127 -0
  891. ngccli/data/model/ArtifactDownloadAllResponse.py +179 -0
  892. ngccli/data/model/ArtifactDownloadRequest.py +156 -0
  893. ngccli/data/model/ArtifactDownloadResponse.py +120 -0
  894. ngccli/data/model/ArtifactEvent.py +171 -0
  895. ngccli/data/model/ArtifactListResponse.py +127 -0
  896. ngccli/data/model/ArtifactPublishRequest.py +165 -0
  897. ngccli/data/model/ArtifactResponse.py +95 -0
  898. ngccli/data/model/ArtifactTypeEnum.py +3 -0
  899. ngccli/data/model/ArtifactUpdateRequest.py +398 -0
  900. ngccli/data/model/ArtifactVersion.py +317 -0
  901. ngccli/data/model/ArtifactVersionCreateRequest.py +124 -0
  902. ngccli/data/model/ArtifactVersionFileListResponse.py +183 -0
  903. ngccli/data/model/ArtifactVersionListResponse.py +155 -0
  904. ngccli/data/model/ArtifactVersionResponse.py +123 -0
  905. ngccli/data/model/ArtifactVersionUpdateRequest.py +126 -0
  906. ngccli/data/model/Asset.py +576 -0
  907. ngccli/data/model/AssetCdnProviderTypeEnum.py +3 -0
  908. ngccli/data/model/AssetResponse.py +94 -0
  909. ngccli/data/model/AssetSimplified.py +121 -0
  910. ngccli/data/model/AssetStatusTypeEnum.py +3 -0
  911. ngccli/data/model/AssetStorageEvent.py +141 -0
  912. ngccli/data/model/AssetStorageTypeEnum.py +3 -0
  913. ngccli/data/model/AssetUpdateRequest.py +221 -0
  914. ngccli/data/model/CatalogArtifactMetadata.py +164 -0
  915. ngccli/data/model/CloneArtifactVersionFilesRequest.py +118 -0
  916. ngccli/data/model/CloneableArtifact.py +135 -0
  917. ngccli/data/model/CloudServiceProvider.py +312 -0
  918. ngccli/data/model/CloudServiceProviderCreateRequest.py +220 -0
  919. ngccli/data/model/CloudServiceProviderListResponse.py +127 -0
  920. ngccli/data/model/CloudServiceProviderUpdateRequest.py +191 -0
  921. ngccli/data/model/Collection.py +581 -0
  922. ngccli/data/model/CollectionCategoryType.py +3 -0
  923. ngccli/data/model/CollectionCreateRequest.py +408 -0
  924. ngccli/data/model/CollectionListResponse.py +127 -0
  925. ngccli/data/model/CollectionOperation.py +108 -0
  926. ngccli/data/model/CollectionOperationType.py +3 -0
  927. ngccli/data/model/CollectionPatchRequest.py +77 -0
  928. ngccli/data/model/CollectionPublishRequest.py +165 -0
  929. ngccli/data/model/CollectionResponse.py +95 -0
  930. ngccli/data/model/CollectionSimplified.py +121 -0
  931. ngccli/data/model/CollectionUpdateRequest.py +349 -0
  932. ngccli/data/model/CountableResource.py +113 -0
  933. ngccli/data/model/CustomMetric.py +99 -0
  934. ngccli/data/model/CustomMetricGroup.py +101 -0
  935. ngccli/data/model/Dataset.py +128 -0
  936. ngccli/data/model/DeploymentArtifactParameters.py +218 -0
  937. ngccli/data/model/DeploymentCpuParameters.py +63 -0
  938. ngccli/data/model/DeploymentCpuParametersMeta.py +72 -0
  939. ngccli/data/model/DeploymentGpuParameters.py +87 -0
  940. ngccli/data/model/DeploymentGpuParametersMeta.py +100 -0
  941. ngccli/data/model/DeploymentMemoryParameters.py +64 -0
  942. ngccli/data/model/DeploymentMemoryParametersMeta.py +72 -0
  943. ngccli/data/model/DeploymentParameters.py +259 -0
  944. ngccli/data/model/DeploymentParametersCreateRequest.py +235 -0
  945. ngccli/data/model/DeploymentParametersListResponse.py +180 -0
  946. ngccli/data/model/DeploymentParametersMeta.py +179 -0
  947. ngccli/data/model/DeploymentParametersMetaCreateRequest.py +165 -0
  948. ngccli/data/model/DeploymentParametersMetaListResponse.py +151 -0
  949. ngccli/data/model/DeploymentParametersMetaUpdateRequest.py +156 -0
  950. ngccli/data/model/DeploymentParametersUpdateRequest.py +235 -0
  951. ngccli/data/model/DeploymentStorageParameters.py +64 -0
  952. ngccli/data/model/DeploymentStorageParametersMeta.py +72 -0
  953. ngccli/data/model/DeploymentUrlCreateRequest.py +235 -0
  954. ngccli/data/model/DeploymentUrlResponse.py +144 -0
  955. ngccli/data/model/EnumerableResource.py +97 -0
  956. ngccli/data/model/EnumerableResourceItem.py +111 -0
  957. ngccli/data/model/File.py +196 -0
  958. ngccli/data/model/FrameworkType.py +3 -0
  959. ngccli/data/model/Health.py +134 -0
  960. ngccli/data/model/HealthResponse.py +68 -0
  961. ngccli/data/model/HelmChartDependency.py +126 -0
  962. ngccli/data/model/HelmChartMaintainer.py +110 -0
  963. ngccli/data/model/HelmChartVersion.py +393 -0
  964. ngccli/data/model/MetaData.py +98 -0
  965. ngccli/data/model/Model.py +917 -0
  966. ngccli/data/model/ModelCreateRequest.py +653 -0
  967. ngccli/data/model/ModelCreateResponse.py +94 -0
  968. ngccli/data/model/ModelFile.py +163 -0
  969. ngccli/data/model/ModelFormatType.py +3 -0
  970. ngccli/data/model/ModelListResponse.py +126 -0
  971. ngccli/data/model/ModelResponse.py +94 -0
  972. ngccli/data/model/ModelSimplified.py +121 -0
  973. ngccli/data/model/ModelUpdateRequest.py +594 -0
  974. ngccli/data/model/ModelVersion.py +462 -0
  975. ngccli/data/model/ModelVersionCreateRequest.py +389 -0
  976. ngccli/data/model/ModelVersionCreateResponse.py +122 -0
  977. ngccli/data/model/ModelVersionFileListResponse.py +182 -0
  978. ngccli/data/model/ModelVersionListResponse.py +154 -0
  979. ngccli/data/model/ModelVersionResponse.py +122 -0
  980. ngccli/data/model/ModelVersionUpdateRequest.py +347 -0
  981. ngccli/data/model/MultipartUploadAbortRequest.py +186 -0
  982. ngccli/data/model/MultipartUploadCompleteRequest.py +216 -0
  983. ngccli/data/model/MultipartUploadCreateRequest.py +234 -0
  984. ngccli/data/model/MultipartUploadCreateResponse.py +183 -0
  985. ngccli/data/model/PaginationInfo.py +161 -0
  986. ngccli/data/model/PrecisionType.py +3 -0
  987. ngccli/data/model/ProductNamesEnum.py +3 -0
  988. ngccli/data/model/Recipe.py +828 -0
  989. ngccli/data/model/RecipeCreateRequest.py +577 -0
  990. ngccli/data/model/RecipeFile.py +163 -0
  991. ngccli/data/model/RecipeListResponse.py +126 -0
  992. ngccli/data/model/RecipeResponse.py +94 -0
  993. ngccli/data/model/RecipeUpdateRequest.py +530 -0
  994. ngccli/data/model/RecipeVersion.py +536 -0
  995. ngccli/data/model/RecipeVersionCreateRequest.py +451 -0
  996. ngccli/data/model/RecipeVersionFileListResponse.py +182 -0
  997. ngccli/data/model/RecipeVersionListResponse.py +154 -0
  998. ngccli/data/model/RecipeVersionResponse.py +122 -0
  999. ngccli/data/model/RecipeVersionUpdateRequest.py +409 -0
  1000. ngccli/data/model/RequestStatus.py +138 -0
  1001. ngccli/data/model/Response.py +66 -0
  1002. ngccli/data/model/SortOrderEnum.py +3 -0
  1003. ngccli/data/model/StatusCode.py +3 -0
  1004. ngccli/data/model/VersionStatusEnum.py +3 -0
  1005. ngccli/data/model/__init__.py +2 -0
  1006. ngccli/data/package/Health.py +134 -0
  1007. ngccli/data/package/HealthResponse.py +68 -0
  1008. ngccli/data/package/MetaData.py +98 -0
  1009. ngccli/data/package/Package.py +174 -0
  1010. ngccli/data/package/PackageFile.py +130 -0
  1011. ngccli/data/package/PackageVersion.py +207 -0
  1012. ngccli/data/package/PackageVersionListResponse.py +154 -0
  1013. ngccli/data/package/PackageVersionResponse.py +122 -0
  1014. ngccli/data/package/PaginationInfo.py +161 -0
  1015. ngccli/data/package/RequestStatus.py +138 -0
  1016. ngccli/data/package/Response.py +66 -0
  1017. ngccli/data/package/StatusCode.py +3 -0
  1018. ngccli/data/package/__init__.py +2 -0
  1019. ngccli/data/publishing/AccessTypeEnum.py +3 -0
  1020. ngccli/data/publishing/Artifact.py +172 -0
  1021. ngccli/data/publishing/ArtifactBatch.py +193 -0
  1022. ngccli/data/publishing/ArtifactToCollectionRequest.py +133 -0
  1023. ngccli/data/publishing/ArtifactType.py +3 -0
  1024. ngccli/data/publishing/BatchPublishingRequest.py +305 -0
  1025. ngccli/data/publishing/ProductNamesEnum.py +3 -0
  1026. ngccli/data/publishing/PublishingRequest.py +298 -0
  1027. ngccli/data/publishing/RequestStatus.py +138 -0
  1028. ngccli/data/publishing/Response.py +66 -0
  1029. ngccli/data/publishing/StatusCode.py +3 -0
  1030. ngccli/data/publishing/__init__.py +2 -0
  1031. ngccli/data/pym/AdditionalOpenPortURLs.py +109 -0
  1032. ngccli/data/pym/ClusterComponent.py +113 -0
  1033. ngccli/data/pym/ClusterComponentModifyParams.py +183 -0
  1034. ngccli/data/pym/ClusterComponentParams.py +200 -0
  1035. ngccli/data/pym/ClusterCreateRequest.py +101 -0
  1036. ngccli/data/pym/ClusterInfo.py +228 -0
  1037. ngccli/data/pym/ClusterInfoResponse.py +101 -0
  1038. ngccli/data/pym/ClusterInstance.py +288 -0
  1039. ngccli/data/pym/ClusterInstanceInfo.py +108 -0
  1040. ngccli/data/pym/ClusterInstanceTypesResponse.py +106 -0
  1041. ngccli/data/pym/ClusterListResponse.py +105 -0
  1042. ngccli/data/pym/ClusterModifyParams.py +845 -0
  1043. ngccli/data/pym/ClusterModifyRequest.py +107 -0
  1044. ngccli/data/pym/ClusterParams.py +875 -0
  1045. ngccli/data/pym/ClusterPortMapping.py +199 -0
  1046. ngccli/data/pym/ClusterRequestStatus.py +392 -0
  1047. ngccli/data/pym/ClusterStatusEnum.py +3 -0
  1048. ngccli/data/pym/ClusterSuccessResponse.py +101 -0
  1049. ngccli/data/pym/ClusterTelemetry.py +99 -0
  1050. ngccli/data/pym/ClusterTypeEnum.py +3 -0
  1051. ngccli/data/pym/ClusterURLs.py +163 -0
  1052. ngccli/data/pym/DataInput.py +103 -0
  1053. ngccli/data/pym/Dataset.py +103 -0
  1054. ngccli/data/pym/Env.py +103 -0
  1055. ngccli/data/pym/HealthInfoItem.py +144 -0
  1056. ngccli/data/pym/HealthResponse.py +130 -0
  1057. ngccli/data/pym/ProjectCreateRequest.py +171 -0
  1058. ngccli/data/pym/ProjectDetails.py +239 -0
  1059. ngccli/data/pym/ProjectInfoResponse.py +129 -0
  1060. ngccli/data/pym/ProjectListResponse.py +105 -0
  1061. ngccli/data/pym/ProjectModifyParams.py +99 -0
  1062. ngccli/data/pym/ProjectModifyRequest.py +101 -0
  1063. ngccli/data/pym/ProjectParams.py +109 -0
  1064. ngccli/data/pym/ProjectRequestStatus.py +152 -0
  1065. ngccli/data/pym/ProjectSuccessResponse.py +101 -0
  1066. ngccli/data/pym/ProjectTemplateCreateRequest.py +101 -0
  1067. ngccli/data/pym/ProjectTemplateInfoResponse.py +162 -0
  1068. ngccli/data/pym/ProjectTemplateListParams.py +265 -0
  1069. ngccli/data/pym/ProjectTemplateListResponse.py +105 -0
  1070. ngccli/data/pym/ProjectTemplateModificationRequest.py +102 -0
  1071. ngccli/data/pym/ProjectTemplateModifyParams.py +206 -0
  1072. ngccli/data/pym/ProjectTemplateParams.py +216 -0
  1073. ngccli/data/pym/ProjectTemplateParamsDeprecated.py +480 -0
  1074. ngccli/data/pym/ProjectTemplateRequestStatus.py +97 -0
  1075. ngccli/data/pym/ProjectTemplateSuccessResponse.py +101 -0
  1076. ngccli/data/pym/SecretKeySpec.py +106 -0
  1077. ngccli/data/pym/SecretSpec.py +132 -0
  1078. ngccli/data/pym/Workspace.py +138 -0
  1079. ngccli/data/pym/__init__.py +2 -0
  1080. ngccli/data/registry/AccessTypeEnum.py +3 -0
  1081. ngccli/data/registry/Actor.py +63 -0
  1082. ngccli/data/registry/Allowlist.py +168 -0
  1083. ngccli/data/registry/AllowlistItem.py +112 -0
  1084. ngccli/data/registry/Analysis.py +136 -0
  1085. ngccli/data/registry/AnalysisStatus.py +3 -0
  1086. ngccli/data/registry/AnchoreParameter.py +87 -0
  1087. ngccli/data/registry/AnchorePolicyBundle.py +299 -0
  1088. ngccli/data/registry/AnchorePolicyBundleRecord.py +216 -0
  1089. ngccli/data/registry/BaseImageDetails.py +185 -0
  1090. ngccli/data/registry/BaseImageList.py +63 -0
  1091. ngccli/data/registry/BaseImagesDetailResponse.py +71 -0
  1092. ngccli/data/registry/BlobSum.py +62 -0
  1093. ngccli/data/registry/CatalogArtifactMetadata.py +164 -0
  1094. ngccli/data/registry/Envelope.py +71 -0
  1095. ngccli/data/registry/EventRequest.py +163 -0
  1096. ngccli/data/registry/EventSource.py +89 -0
  1097. ngccli/data/registry/EventTarget.py +210 -0
  1098. ngccli/data/registry/GetManifestByTagResponse.py +261 -0
  1099. ngccli/data/registry/GetRepositoryTagVexResponse.py +123 -0
  1100. ngccli/data/registry/GetTagsResponse.py +115 -0
  1101. ngccli/data/registry/Header.py +90 -0
  1102. ngccli/data/registry/HistoryLayer.py +63 -0
  1103. ngccli/data/registry/ImageArchitectureVariant.py +265 -0
  1104. ngccli/data/registry/ImageDeleteRequest.py +94 -0
  1105. ngccli/data/registry/ImageOwnerDetails.py +262 -0
  1106. ngccli/data/registry/ImageRef.py +87 -0
  1107. ngccli/data/registry/ImageScanDetails.py +327 -0
  1108. ngccli/data/registry/ImageSelectionRule.py +162 -0
  1109. ngccli/data/registry/ImageSignature.py +89 -0
  1110. ngccli/data/registry/Jwk.py +159 -0
  1111. ngccli/data/registry/ManifestByTagV2Response.py +231 -0
  1112. ngccli/data/registry/ManifestListByTagV2Response.py +149 -0
  1113. ngccli/data/registry/ManifestV2Config.py +111 -0
  1114. ngccli/data/registry/ManifestV2Layer.py +111 -0
  1115. ngccli/data/registry/MappingRule.py +213 -0
  1116. ngccli/data/registry/MetaImageDetails.py +388 -0
  1117. ngccli/data/registry/MetaImageDetailsList.py +177 -0
  1118. ngccli/data/registry/OciIndexManifest.py +135 -0
  1119. ngccli/data/registry/OciIndexResponse.py +149 -0
  1120. ngccli/data/registry/PaginationInfo.py +161 -0
  1121. ngccli/data/registry/Platform.py +140 -0
  1122. ngccli/data/registry/PlatformManifest.py +148 -0
  1123. ngccli/data/registry/PolicyRule.py +168 -0
  1124. ngccli/data/registry/ProductNamesEnum.py +3 -0
  1125. ngccli/data/registry/RegistryEvent.py +222 -0
  1126. ngccli/data/registry/Repository.py +839 -0
  1127. ngccli/data/registry/RepositoryCreateRequest.py +342 -0
  1128. ngccli/data/registry/RepositoryImageDetails.py +366 -0
  1129. ngccli/data/registry/RepositoryImageDetailsList.py +126 -0
  1130. ngccli/data/registry/RepositoryImageScanComplete.py +188 -0
  1131. ngccli/data/registry/RepositoryImagesDeletedEvent.py +139 -0
  1132. ngccli/data/registry/RepositoryInfoUpdateRequest.py +495 -0
  1133. ngccli/data/registry/RepositoryLabelsPatchRequest.py +63 -0
  1134. ngccli/data/registry/RepositoryList.py +126 -0
  1135. ngccli/data/registry/RepositoryTagVexByDigest.py +94 -0
  1136. ngccli/data/registry/RepositoryTagVexDetail.py +90 -0
  1137. ngccli/data/registry/RepositoryTagsCountResponse.py +92 -0
  1138. ngccli/data/registry/RequestStatus.py +137 -0
  1139. ngccli/data/registry/Response.py +66 -0
  1140. ngccli/data/registry/RuleSet.py +168 -0
  1141. ngccli/data/registry/ScanIssue.py +235 -0
  1142. ngccli/data/registry/ScanIssueCount.py +87 -0
  1143. ngccli/data/registry/ScanIssueSeverity.py +3 -0
  1144. ngccli/data/registry/ScanStatus.py +3 -0
  1145. ngccli/data/registry/ScanType.py +3 -0
  1146. ngccli/data/registry/SecurityRatingDescription.py +221 -0
  1147. ngccli/data/registry/SecurityRatingType.py +3 -0
  1148. ngccli/data/registry/SecurityRatingsResponse.py +71 -0
  1149. ngccli/data/registry/StatusCode.py +3 -0
  1150. ngccli/data/registry/TagUpdateRequest.py +63 -0
  1151. ngccli/data/registry/__init__.py +2 -0
  1152. ngccli/data/search/AccessTypeEnum.py +3 -0
  1153. ngccli/data/search/CountParams.py +109 -0
  1154. ngccli/data/search/CountParamsField.py +106 -0
  1155. ngccli/data/search/CountResponse.py +109 -0
  1156. ngccli/data/search/CountResponseCount.py +134 -0
  1157. ngccli/data/search/CountResponseParams.py +71 -0
  1158. ngccli/data/search/Health.py +134 -0
  1159. ngccli/data/search/HealthResponse.py +68 -0
  1160. ngccli/data/search/LabelGroup.py +119 -0
  1161. ngccli/data/search/LabelGroupValue.py +117 -0
  1162. ngccli/data/search/LabelResponseGlobal.py +71 -0
  1163. ngccli/data/search/LabelResponseOrgTeam.py +99 -0
  1164. ngccli/data/search/LabelSet.py +280 -0
  1165. ngccli/data/search/LabelSetCreateRequest.py +181 -0
  1166. ngccli/data/search/LabelSetResponse.py +271 -0
  1167. ngccli/data/search/LabelSetUpdateRequest.py +132 -0
  1168. ngccli/data/search/LabelValue.py +113 -0
  1169. ngccli/data/search/ListLabelSetsResponse.py +71 -0
  1170. ngccli/data/search/MetaData.py +98 -0
  1171. ngccli/data/search/Resource.py +707 -0
  1172. ngccli/data/search/ResourceAttribute.py +107 -0
  1173. ngccli/data/search/ResourceEventEnum.py +3 -0
  1174. ngccli/data/search/ResourceLabel.py +101 -0
  1175. ngccli/data/search/ResourcePopularityTypeEnum.py +3 -0
  1176. ngccli/data/search/ResourcePopularityUpdate.py +158 -0
  1177. ngccli/data/search/ResourceTypeEnum.py +3 -0
  1178. ngccli/data/search/SearchFilterCategory.py +135 -0
  1179. ngccli/data/search/SearchFilterValue.py +126 -0
  1180. ngccli/data/search/SearchParamFilter.py +105 -0
  1181. ngccli/data/search/SearchParamOrderBy.py +106 -0
  1182. ngccli/data/search/SearchParamOrderByEnum.py +3 -0
  1183. ngccli/data/search/SearchParams.py +311 -0
  1184. ngccli/data/search/SearchPopularityUpdateQueueMsg.py +109 -0
  1185. ngccli/data/search/SearchQueueMsg.py +104 -0
  1186. ngccli/data/search/SearchResponse.py +165 -0
  1187. ngccli/data/search/SearchResponseResult.py +144 -0
  1188. ngccli/data/search/SearchResponseResultResource.py +660 -0
  1189. ngccli/data/search/__init__.py +2 -0
  1190. ngccli/data/sms/HealthResponse.py +98 -0
  1191. ngccli/data/sms/KV.py +109 -0
  1192. ngccli/data/sms/Secret.py +274 -0
  1193. ngccli/data/sms/SecretCreateRequest.py +163 -0
  1194. ngccli/data/sms/SecretDecryptRequest.py +140 -0
  1195. ngccli/data/sms/SecretDecryptResponse.py +105 -0
  1196. ngccli/data/sms/SecretGetResponse.py +104 -0
  1197. ngccli/data/sms/SecretModifyRequest.py +153 -0
  1198. ngccli/data/sms/SecretNameKV.py +110 -0
  1199. ngccli/data/sms/SecretRequestStatus.py +122 -0
  1200. ngccli/data/sms/SecretSuccessResponse.py +101 -0
  1201. ngccli/data/sms/__init__.py +2 -0
  1202. ngccli/data/subscription_management_service/Action.py +110 -0
  1203. ngccli/data/subscription_management_service/AzureMarketplaceSubscription.py +488 -0
  1204. ngccli/data/subscription_management_service/AzureMarketplaceSubscriptionNotificationEvent.py +358 -0
  1205. ngccli/data/subscription_management_service/AzureMarketplaceSubscriptionTerm.py +136 -0
  1206. ngccli/data/subscription_management_service/AzureMarketplaceSubscriptionUser.py +135 -0
  1207. ngccli/data/subscription_management_service/BusinessContact.py +425 -0
  1208. ngccli/data/subscription_management_service/Charge.py +241 -0
  1209. ngccli/data/subscription_management_service/CreateOrderRequest.py +122 -0
  1210. ngccli/data/subscription_management_service/CreateOrderResponse.py +92 -0
  1211. ngccli/data/subscription_management_service/CreateProductOfferRequest.py +76 -0
  1212. ngccli/data/subscription_management_service/CreateProductOfferResponse.py +99 -0
  1213. ngccli/data/subscription_management_service/CreateProductRequest.py +66 -0
  1214. ngccli/data/subscription_management_service/CreateSubscriptionsRequest.py +71 -0
  1215. ngccli/data/subscription_management_service/CreateSubscriptionsResponse.py +99 -0
  1216. ngccli/data/subscription_management_service/ErrorResponse.py +66 -0
  1217. ngccli/data/subscription_management_service/GetSubscriptionRequestResponse.py +95 -0
  1218. ngccli/data/subscription_management_service/GtsOrderTypeEnum.py +3 -0
  1219. ngccli/data/subscription_management_service/Health.py +134 -0
  1220. ngccli/data/subscription_management_service/HealthResponse.py +96 -0
  1221. ngccli/data/subscription_management_service/LineItem.py +267 -0
  1222. ngccli/data/subscription_management_service/LineItemTypeEnum.py +3 -0
  1223. ngccli/data/subscription_management_service/ListProductOffersResponse.py +99 -0
  1224. ngccli/data/subscription_management_service/ListSubscriptionRequestsResponse.py +127 -0
  1225. ngccli/data/subscription_management_service/ListSubscriptionsResponse.py +99 -0
  1226. ngccli/data/subscription_management_service/ListUserSubscriptionsResponse.py +99 -0
  1227. ngccli/data/subscription_management_service/MetaData.py +98 -0
  1228. ngccli/data/subscription_management_service/Order.py +217 -0
  1229. ngccli/data/subscription_management_service/OrderActionTypeEnum.py +3 -0
  1230. ngccli/data/subscription_management_service/OrderSummary.py +184 -0
  1231. ngccli/data/subscription_management_service/OrgEnablementCreateRequest.py +102 -0
  1232. ngccli/data/subscription_management_service/PaginationInfo.py +161 -0
  1233. ngccli/data/subscription_management_service/PreviewOrder.py +171 -0
  1234. ngccli/data/subscription_management_service/PreviewOrderRequest.py +122 -0
  1235. ngccli/data/subscription_management_service/PreviewOrderResponse.py +95 -0
  1236. ngccli/data/subscription_management_service/PriceFormatEnum.py +3 -0
  1237. ngccli/data/subscription_management_service/Pricing.py +236 -0
  1238. ngccli/data/subscription_management_service/Product.py +631 -0
  1239. ngccli/data/subscription_management_service/ProductEnablement.py +164 -0
  1240. ngccli/data/subscription_management_service/ProductOffer.py +159 -0
  1241. ngccli/data/subscription_management_service/ProductPlan.py +466 -0
  1242. ngccli/data/subscription_management_service/ProductPlansResponse.py +99 -0
  1243. ngccli/data/subscription_management_service/ProductResponse.py +94 -0
  1244. ngccli/data/subscription_management_service/ProductsResponse.py +99 -0
  1245. ngccli/data/subscription_management_service/PurchaseOrder.py +88 -0
  1246. ngccli/data/subscription_management_service/RedeemPreviewSubscriptionRequest.py +68 -0
  1247. ngccli/data/subscription_management_service/RedeemPreviewSubscriptionResponse.py +98 -0
  1248. ngccli/data/subscription_management_service/RedeemSubscriptionRequest.py +96 -0
  1249. ngccli/data/subscription_management_service/RedeemSubscriptionResponse.py +92 -0
  1250. ngccli/data/subscription_management_service/RelatedArtifact.py +215 -0
  1251. ngccli/data/subscription_management_service/RelatedArtifactsResponse.py +99 -0
  1252. ngccli/data/subscription_management_service/RelatedItem.py +86 -0
  1253. ngccli/data/subscription_management_service/RenewSubscriptionResponse.py +95 -0
  1254. ngccli/data/subscription_management_service/RequestCreateSubscriptionRequest.py +89 -0
  1255. ngccli/data/subscription_management_service/RequestCreateSubscriptionResponse.py +95 -0
  1256. ngccli/data/subscription_management_service/RequestStatus.py +137 -0
  1257. ngccli/data/subscription_management_service/Response.py +66 -0
  1258. ngccli/data/subscription_management_service/ReviewSubscriptionRequestRequest.py +162 -0
  1259. ngccli/data/subscription_management_service/StatusCode.py +3 -0
  1260. ngccli/data/subscription_management_service/Subscription.py +577 -0
  1261. ngccli/data/subscription_management_service/SubscriptionRequest.py +526 -0
  1262. ngccli/data/subscription_management_service/SubscriptionRequestActionEnum.py +3 -0
  1263. ngccli/data/subscription_management_service/SubscriptionRequestActionStatusEnum.py +3 -0
  1264. ngccli/data/subscription_management_service/SubscriptionRequestHistory.py +261 -0
  1265. ngccli/data/subscription_management_service/SubscriptionRequestStatusEnum.py +3 -0
  1266. ngccli/data/subscription_management_service/SubscriptionRequestTermUnitEnum.py +3 -0
  1267. ngccli/data/subscription_management_service/SubscriptionResponse.py +95 -0
  1268. ngccli/data/subscription_management_service/SubscriptionStatusEnum.py +3 -0
  1269. ngccli/data/subscription_management_service/Tab.py +86 -0
  1270. ngccli/data/subscription_management_service/Tou.py +86 -0
  1271. ngccli/data/subscription_management_service/UpdateAccountStatusGtsRequest.py +126 -0
  1272. ngccli/data/subscription_management_service/UpdateAccountStatusGtsResponse.py +91 -0
  1273. ngccli/data/subscription_management_service/UpdateProductRequest.py +66 -0
  1274. ngccli/data/subscription_management_service/UserSubscriptions.py +86 -0
  1275. ngccli/data/subscription_management_service/__init__.py +2 -0
  1276. ngccli/data/uis/AccountInfo.py +302 -0
  1277. ngccli/data/uis/AddRolesRequest.py +68 -0
  1278. ngccli/data/uis/AlternateContact.py +114 -0
  1279. ngccli/data/uis/ApiKey.py +296 -0
  1280. ngccli/data/uis/ApiKeyPolicy.py +171 -0
  1281. ngccli/data/uis/ApiKeyRequest.py +164 -0
  1282. ngccli/data/uis/ApiKeyResponse.py +94 -0
  1283. ngccli/data/uis/ApiKeyStatusEnum.py +3 -0
  1284. ngccli/data/uis/ApiKeyTypeEnum.py +3 -0
  1285. ngccli/data/uis/CreateBillingAccountRequest.py +151 -0
  1286. ngccli/data/uis/CreateBillingAccountResponse.py +115 -0
  1287. ngccli/data/uis/CreateUserRolesRequest.py +68 -0
  1288. ngccli/data/uis/EmailTemplateDataSourceEnum.py +3 -0
  1289. ngccli/data/uis/EmailTemplateTypeEnum.py +3 -0
  1290. ngccli/data/uis/ErrorResponse.py +66 -0
  1291. ngccli/data/uis/GetUchIdByOrgResponse.py +91 -0
  1292. ngccli/data/uis/Health.py +134 -0
  1293. ngccli/data/uis/HealthResponse.py +96 -0
  1294. ngccli/data/uis/IdpLock.py +227 -0
  1295. ngccli/data/uis/IdpLockResponse.py +104 -0
  1296. ngccli/data/uis/IdpRule.py +343 -0
  1297. ngccli/data/uis/IdpRuleListResponse.py +137 -0
  1298. ngccli/data/uis/IdpRuleRequest.py +155 -0
  1299. ngccli/data/uis/IdpRuleResponse.py +104 -0
  1300. ngccli/data/uis/InfinityManagerSettings.py +90 -0
  1301. ngccli/data/uis/ListApiKeysResponse.py +98 -0
  1302. ngccli/data/uis/ListRolesResponse.py +92 -0
  1303. ngccli/data/uis/ListUserRolesResponse.py +128 -0
  1304. ngccli/data/uis/MetaData.py +92 -0
  1305. ngccli/data/uis/NvcfCluster.py +162 -0
  1306. ngccli/data/uis/NvcfGpuUsage.py +212 -0
  1307. ngccli/data/uis/NvcfGpuUsageRequest.py +71 -0
  1308. ngccli/data/uis/NvcfGpuUsageResponse.py +99 -0
  1309. ngccli/data/uis/NvcfOrgResponse.py +152 -0
  1310. ngccli/data/uis/NvcfOrgUpdateRequest.py +71 -0
  1311. ngccli/data/uis/OrgAdminUserCreatedEvent.py +112 -0
  1312. ngccli/data/uis/OrgListResponse.py +127 -0
  1313. ngccli/data/uis/OrgOwner.py +173 -0
  1314. ngccli/data/uis/OrgOwnerUpdateRequest.py +97 -0
  1315. ngccli/data/uis/OrgOwnersResponse.py +125 -0
  1316. ngccli/data/uis/OrgProfileUpdateRequest.py +105 -0
  1317. ngccli/data/uis/OrgType.py +3 -0
  1318. ngccli/data/uis/OrgUpdateRequest.py +541 -0
  1319. ngccli/data/uis/Organization.py +721 -0
  1320. ngccli/data/uis/PaginationInfo.py +161 -0
  1321. ngccli/data/uis/ProductEnablement.py +164 -0
  1322. ngccli/data/uis/ProductSubscription.py +214 -0
  1323. ngccli/data/uis/PurchaseOrder.py +88 -0
  1324. ngccli/data/uis/RemoveRolesRequest.py +68 -0
  1325. ngccli/data/uis/RemovedUser.py +354 -0
  1326. ngccli/data/uis/RemovedUserListResponse.py +127 -0
  1327. ngccli/data/uis/RepoScanSettings.py +192 -0
  1328. ngccli/data/uis/RequestStatus.py +137 -0
  1329. ngccli/data/uis/Resource.py +86 -0
  1330. ngccli/data/uis/Response.py +66 -0
  1331. ngccli/data/uis/RoleScopes.py +134 -0
  1332. ngccli/data/uis/RoleScopesRequest.py +71 -0
  1333. ngccli/data/uis/RoleScopesResponse.py +99 -0
  1334. ngccli/data/uis/RoleType.py +3 -0
  1335. ngccli/data/uis/RotateApiKeyRequest.py +68 -0
  1336. ngccli/data/uis/SakCallerInfoRequest.py +68 -0
  1337. ngccli/data/uis/SakCallerInfoResponse.py +191 -0
  1338. ngccli/data/uis/SendTemplatedEmailRequest.py +301 -0
  1339. ngccli/data/uis/ServiceAccess.py +93 -0
  1340. ngccli/data/uis/StatusCode.py +3 -0
  1341. ngccli/data/uis/TargetSystemUserIdentifier.py +183 -0
  1342. ngccli/data/uis/Team.py +191 -0
  1343. ngccli/data/uis/TeamCreateRequest.py +119 -0
  1344. ngccli/data/uis/TeamCreateResponse.py +94 -0
  1345. ngccli/data/uis/TeamCreatedEvent.py +111 -0
  1346. ngccli/data/uis/TeamListResponse.py +126 -0
  1347. ngccli/data/uis/TeamResponse.py +94 -0
  1348. ngccli/data/uis/TeamUpdateRequest.py +125 -0
  1349. ngccli/data/uis/UisOrgInfoResponse.py +95 -0
  1350. ngccli/data/uis/UpdateApiKeyRequest.py +96 -0
  1351. ngccli/data/uis/UpdateUisOrgInfoRequest.py +138 -0
  1352. ngccli/data/uis/User.py +962 -0
  1353. ngccli/data/uis/UserCreateRequest.py +280 -0
  1354. ngccli/data/uis/UserCreatedEvent.py +88 -0
  1355. ngccli/data/uis/UserGdprStatus.py +3 -0
  1356. ngccli/data/uis/UserIdentifierType.py +3 -0
  1357. ngccli/data/uis/UserInvitation.py +304 -0
  1358. ngccli/data/uis/UserInvitationListResponse.py +127 -0
  1359. ngccli/data/uis/UserInvitationResponse.py +94 -0
  1360. ngccli/data/uis/UserKeyResponse.py +176 -0
  1361. ngccli/data/uis/UserListResponse.py +126 -0
  1362. ngccli/data/uis/UserMetadata.py +257 -0
  1363. ngccli/data/uis/UserProfile.py +355 -0
  1364. ngccli/data/uis/UserProfileGetResponse.py +95 -0
  1365. ngccli/data/uis/UserProfileOrgInfo.py +166 -0
  1366. ngccli/data/uis/UserProfileUpdateRequest.py +67 -0
  1367. ngccli/data/uis/UserResponse.py +152 -0
  1368. ngccli/data/uis/UserRole.py +199 -0
  1369. ngccli/data/uis/UserRoleDefinition.py +94 -0
  1370. ngccli/data/uis/UserRoles.py +163 -0
  1371. ngccli/data/uis/UserStatus.py +3 -0
  1372. ngccli/data/uis/UserStorageQuota.py +388 -0
  1373. ngccli/data/uis/UserUpdateRequest.py +631 -0
  1374. ngccli/data/uis/UsersInfo.py +63 -0
  1375. ngccli/data/uis/__init__.py +2 -0
  1376. ngcsdk/__init__.py +115 -0
  1377. ngcsdk-3.41.2.dist-info/METADATA +52 -0
  1378. ngcsdk-3.41.2.dist-info/RECORD +1479 -0
  1379. ngcsdk-3.41.2.dist-info/WHEEL +4 -0
  1380. ngcsdk-3.41.2.dist-info/entry_points.txt +3 -0
  1381. nvcf/api/__init__.py +11 -0
  1382. nvcf/api/asset.py +188 -0
  1383. nvcf/api/deploy.py +215 -0
  1384. nvcf/api/deployment_spec.py +108 -0
  1385. nvcf/api/function.py +512 -0
  1386. nvcf/api/gdn_nvcf_grpc_client/__init__.py +11 -0
  1387. nvcf/api/gdn_nvcf_grpc_client/grpc_service_pb2.py +322 -0
  1388. nvcf/api/gdn_nvcf_grpc_client/grpc_service_pb2_grpc.py +1063 -0
  1389. nvcf/api/gdn_nvcf_grpc_client/model_config_pb2.py +308 -0
  1390. nvcf/api/invocation_handler.py +237 -0
  1391. nvcf/api/nvcf.py +35 -0
  1392. nvcf/api/utils.py +32 -0
  1393. nvcf/command/__init__.py +11 -0
  1394. nvcf/command/all_commands.py +15 -0
  1395. nvcf/command/args_validation.py +37 -0
  1396. nvcf/command/cloud_function.py +39 -0
  1397. nvcf/command/deploy.py +128 -0
  1398. nvcf/command/function.py +257 -0
  1399. nvcf/command/utils.py +100 -0
  1400. nvcf/constants.py +22 -0
  1401. nvcf/printer/__init__.py +11 -0
  1402. nvcf/printer/deploy_printer.py +158 -0
  1403. nvcf/printer/function_printer.py +113 -0
  1404. organization/__init__.py +11 -0
  1405. organization/api/__init__.py +11 -0
  1406. organization/api/alert.py +78 -0
  1407. organization/api/audit.py +135 -0
  1408. organization/api/organization.py +58 -0
  1409. organization/api/orgs.py +59 -0
  1410. organization/api/secrets.py +210 -0
  1411. organization/api/storage.py +35 -0
  1412. organization/api/subscription.py +175 -0
  1413. organization/api/teams.py +125 -0
  1414. organization/api/users.py +462 -0
  1415. organization/command/__init__.py +11 -0
  1416. organization/command/alert.py +193 -0
  1417. organization/command/all_commands.py +19 -0
  1418. organization/command/audit.py +137 -0
  1419. organization/command/org.py +343 -0
  1420. organization/command/secret.py +162 -0
  1421. organization/command/subscription.py +226 -0
  1422. organization/command/team.py +433 -0
  1423. organization/command/user.py +106 -0
  1424. organization/environ.py +15 -0
  1425. organization/printer/__init__.py +11 -0
  1426. organization/printer/alert.py +133 -0
  1427. organization/printer/audit.py +42 -0
  1428. organization/printer/org_team_user.py +407 -0
  1429. organization/printer/secret.py +80 -0
  1430. registry/__init__.py +11 -0
  1431. registry/api/__init__.py +11 -0
  1432. registry/api/chart.py +578 -0
  1433. registry/api/collection.py +226 -0
  1434. registry/api/csp.py +184 -0
  1435. registry/api/deploy.py +135 -0
  1436. registry/api/dockerwrappers.py +166 -0
  1437. registry/api/image.py +987 -0
  1438. registry/api/label_set.py +107 -0
  1439. registry/api/models.py +934 -0
  1440. registry/api/playground.py +93 -0
  1441. registry/api/publish.py +167 -0
  1442. registry/api/registry.py +114 -0
  1443. registry/api/resources.py +860 -0
  1444. registry/api/search.py +107 -0
  1445. registry/api/utils.py +592 -0
  1446. registry/command/__init__.py +11 -0
  1447. registry/command/all_commands.py +26 -0
  1448. registry/command/chart.py +732 -0
  1449. registry/command/collection.py +519 -0
  1450. registry/command/csp.py +378 -0
  1451. registry/command/image.py +541 -0
  1452. registry/command/image_deploy.py +184 -0
  1453. registry/command/label_set.py +294 -0
  1454. registry/command/model.py +918 -0
  1455. registry/command/model_deploy.py +218 -0
  1456. registry/command/model_playground.py +47 -0
  1457. registry/command/publish.py +109 -0
  1458. registry/command/registry.py +21 -0
  1459. registry/command/resource.py +788 -0
  1460. registry/command/resource_deploy.py +226 -0
  1461. registry/constants.py +44 -0
  1462. registry/environ.py +15 -0
  1463. registry/errors.py +34 -0
  1464. registry/printer/__init__.py +11 -0
  1465. registry/printer/artifact_deploy.py +65 -0
  1466. registry/printer/chart.py +256 -0
  1467. registry/printer/collection.py +235 -0
  1468. registry/printer/csp.py +143 -0
  1469. registry/printer/image.py +419 -0
  1470. registry/printer/label_set.py +116 -0
  1471. registry/printer/model.py +352 -0
  1472. registry/printer/playground.py +48 -0
  1473. registry/printer/resource.py +406 -0
  1474. registry/transformer/__init__.py +11 -0
  1475. registry/transformer/chart.py +26 -0
  1476. registry/transformer/collection.py +20 -0
  1477. registry/transformer/image.py +20 -0
  1478. registry/transformer/model.py +20 -0
  1479. registry/transformer/model_script.py +20 -0
@@ -0,0 +1,576 @@
1
+ """
2
+ ------------------------------------------------------------------------------
3
+ <auto-generated>
4
+ This code was auto-generated by main/tools/jsonparser.
5
+ Do not change this file.
6
+ </auto-generated>
7
+ ------------------------------------------------------------------------------
8
+ """
9
+ import json
10
+ import sys
11
+ import re
12
+ from six import string_types
13
+ from .AssetStatusTypeEnum import AssetStatusTypeEnum
14
+ from .AssetStorageTypeEnum import AssetStorageTypeEnum
15
+ from .ArtifactAttribute import ArtifactAttribute
16
+ from .AssetCdnProviderTypeEnum import AssetCdnProviderTypeEnum
17
+ from .ArtifactTypeEnum import ArtifactTypeEnum
18
+
19
+ # Unused import over optimization prevention
20
+ str(repr(AssetStatusTypeEnum))
21
+ str(repr(ArtifactTypeEnum))
22
+ str(repr(AssetStorageTypeEnum))
23
+ str(repr(ArtifactAttribute))
24
+ str(repr(AssetCdnProviderTypeEnum))
25
+
26
+
27
+ if sys.version_info > (3,):
28
+ long = int
29
+ unicode = str
30
+
31
+ class Asset(object):
32
+ """Asset object"""
33
+ def __init__(self, propDict=None):
34
+ fromDict = propDict is not None and isinstance(propDict, dict)
35
+ self.artifactName = (
36
+ None if not fromDict or propDict.get(
37
+ "artifactName"
38
+ ) is None
39
+ else propDict["artifactName"])
40
+ self.artifactType = (
41
+ None if not fromDict or propDict.get(
42
+ "artifactType"
43
+ ) is None
44
+ else propDict["artifactType"])
45
+ self.attributes = (
46
+ None if not fromDict or propDict.get(
47
+ "attributes"
48
+ ) is None
49
+ else [ ArtifactAttribute(i)
50
+ for i in propDict["attributes"] ])
51
+ self.cdnProvider = (
52
+ None if not fromDict or propDict.get(
53
+ "cdnProvider"
54
+ ) is None
55
+ else propDict["cdnProvider"])
56
+ self.createdDate = (
57
+ None if not fromDict or propDict.get(
58
+ "createdDate"
59
+ ) is None
60
+ else propDict["createdDate"])
61
+ self.fileName = (
62
+ None if not fromDict or propDict.get(
63
+ "fileName"
64
+ ) is None
65
+ else propDict["fileName"])
66
+ self.hostedAt = (
67
+ None if not fromDict or propDict.get(
68
+ "hostedAt"
69
+ ) is None
70
+ else propDict["hostedAt"])
71
+ self.mimeType = (
72
+ None if not fromDict or propDict.get(
73
+ "mimeType"
74
+ ) is None
75
+ else propDict["mimeType"])
76
+ self.name = (
77
+ None if not fromDict or propDict.get(
78
+ "name"
79
+ ) is None
80
+ else propDict["name"])
81
+ self.orgName = (
82
+ None if not fromDict or propDict.get(
83
+ "orgName"
84
+ ) is None
85
+ else propDict["orgName"])
86
+ self.originUrl = (
87
+ None if not fromDict or propDict.get(
88
+ "originUrl"
89
+ ) is None
90
+ else propDict["originUrl"])
91
+ self.ownerName = (
92
+ None if not fromDict or propDict.get(
93
+ "ownerName"
94
+ ) is None
95
+ else propDict["ownerName"])
96
+ self.sizeInBytes = (
97
+ None if not fromDict or propDict.get(
98
+ "sizeInBytes"
99
+ ) is None
100
+ else propDict["sizeInBytes"])
101
+ self.status = (
102
+ None if not fromDict or propDict.get(
103
+ "status"
104
+ ) is None
105
+ else propDict["status"])
106
+ self.storageProvider = (
107
+ None if not fromDict or propDict.get(
108
+ "storageProvider"
109
+ ) is None
110
+ else propDict["storageProvider"])
111
+ self.teamName = (
112
+ None if not fromDict or propDict.get(
113
+ "teamName"
114
+ ) is None
115
+ else propDict["teamName"])
116
+ self.updatedDate = (
117
+ None if not fromDict or propDict.get(
118
+ "updatedDate"
119
+ ) is None
120
+ else propDict["updatedDate"])
121
+ self.uploadUrl = (
122
+ None if not fromDict or propDict.get(
123
+ "uploadUrl"
124
+ ) is None
125
+ else propDict["uploadUrl"])
126
+
127
+ @property
128
+ def artifactName(self):
129
+ """str: Artifact name that asset belongs to"""
130
+ return self._artifactName
131
+
132
+ @artifactName.setter
133
+ def artifactName(self, value):
134
+ if value is not None and not isinstance(value, string_types):
135
+ value = repr(value)
136
+ if (value is None) or isinstance(value, string_types):
137
+ self._artifactName = value
138
+ else:
139
+ raise TypeError(
140
+ 'Property "artifactName" of type "list<str>" set to wrong typ'
141
+ 'e'
142
+ )
143
+
144
+ @property
145
+ def artifactType(self):
146
+ """ArtifactTypeEnum: Artifact type"""
147
+ return self._artifactType
148
+
149
+ @artifactType.setter
150
+ def artifactType(self, value):
151
+ if (value is None) or isinstance(value, str) or isinstance(value, unicode):
152
+ self._artifactType = value
153
+ else:
154
+ raise TypeError(
155
+ 'Property "artifactType" of type "list<ArtifactTypeEnum>" set'
156
+ ' to wrong type'
157
+ )
158
+
159
+ @property
160
+ def attributes(self):
161
+ """list: Attribute key/value pairs"""
162
+ return self._attributes
163
+
164
+ @attributes.setter
165
+ def attributes(self, value):
166
+ if value is not None and not isinstance(value, list):
167
+ value = list(value)
168
+ if (value is None) or isinstance(value, list):
169
+ self._attributes = value
170
+ else:
171
+ raise TypeError(
172
+ 'Property "attributes" of type "list<ArtifactAttribute>" set '
173
+ 'to wrong type'
174
+ )
175
+
176
+ @property
177
+ def cdnProvider(self):
178
+ """AssetCdnProviderTypeEnum: Asset content delivery network provider t
179
+ ype"""
180
+ return self._cdnProvider
181
+
182
+ @cdnProvider.setter
183
+ def cdnProvider(self, value):
184
+ if (value is None) or isinstance(value, str) or isinstance(value, unicode):
185
+ self._cdnProvider = value
186
+ else:
187
+ raise TypeError(
188
+ 'Property "cdnProvider" of type "list<AssetCdnProviderTypeEnu'
189
+ 'm>" set to wrong type'
190
+ )
191
+
192
+ @property
193
+ def createdDate(self):
194
+ """str: Creation date in ISO-8601 format"""
195
+ return self._createdDate
196
+
197
+ @createdDate.setter
198
+ def createdDate(self, value):
199
+ if value is not None and not isinstance(value, string_types):
200
+ value = repr(value)
201
+ if (value is None) or isinstance(value, string_types):
202
+ self._createdDate = value
203
+ else:
204
+ raise TypeError(
205
+ 'Property "createdDate" of type "list<str>" set to wrong type'
206
+ )
207
+
208
+ @property
209
+ def fileName(self):
210
+ """str: Asset file name"""
211
+ return self._fileName
212
+
213
+ @fileName.setter
214
+ def fileName(self, value):
215
+ if value is not None and not isinstance(value, string_types):
216
+ value = repr(value)
217
+ if (value is None) or isinstance(value, string_types):
218
+ self._fileName = value
219
+ else:
220
+ raise TypeError(
221
+ 'Property "fileName" of type "list<str>" set to wrong type'
222
+ )
223
+
224
+ @property
225
+ def hostedAt(self):
226
+ """list: URLs where the asset is hosted"""
227
+ return self._hostedAt
228
+
229
+ @hostedAt.setter
230
+ def hostedAt(self, value):
231
+ if value is not None and not isinstance(value, list):
232
+ value = list(value)
233
+ if (value is None) or isinstance(value, list):
234
+ self._hostedAt = value
235
+ else:
236
+ raise TypeError(
237
+ 'Property "hostedAt" of type "list<str>" set to wrong type'
238
+ )
239
+
240
+ @property
241
+ def mimeType(self):
242
+ """str: Asset mime type"""
243
+ return self._mimeType
244
+
245
+ @mimeType.setter
246
+ def mimeType(self, value):
247
+ if value is not None and not isinstance(value, string_types):
248
+ value = repr(value)
249
+ if (value is None) or isinstance(value, string_types):
250
+ self._mimeType = value
251
+ else:
252
+ raise TypeError(
253
+ 'Property "mimeType" of type "list<str>" set to wrong type'
254
+ )
255
+
256
+ @property
257
+ def name(self):
258
+ """str: Unique name of the asset"""
259
+ return self._name
260
+
261
+ @name.setter
262
+ def name(self, value):
263
+ if value is not None and not isinstance(value, string_types):
264
+ value = repr(value)
265
+ if (value is None) or isinstance(value, string_types):
266
+ self._name = value
267
+ else:
268
+ raise TypeError(
269
+ 'Property "name" of type "list<str>" set to wrong type'
270
+ )
271
+
272
+ @property
273
+ def orgName(self):
274
+ """str: Name of the org that the collection belongs to"""
275
+ return self._orgName
276
+
277
+ @orgName.setter
278
+ def orgName(self, value):
279
+ if value is not None and not isinstance(value, string_types):
280
+ value = repr(value)
281
+ if (value is None) or isinstance(value, string_types):
282
+ self._orgName = value
283
+ else:
284
+ raise TypeError(
285
+ 'Property "orgName" of type "list<str>" set to wrong type'
286
+ )
287
+
288
+ @property
289
+ def originUrl(self):
290
+ """str: Asset origin URL"""
291
+ return self._originUrl
292
+
293
+ @originUrl.setter
294
+ def originUrl(self, value):
295
+ if value is not None and not isinstance(value, string_types):
296
+ value = repr(value)
297
+ if (value is None) or isinstance(value, string_types):
298
+ self._originUrl = value
299
+ else:
300
+ raise TypeError(
301
+ 'Property "originUrl" of type "list<str>" set to wrong type'
302
+ )
303
+
304
+ @property
305
+ def ownerName(self):
306
+ """str: Name of the user who owns this version"""
307
+ return self._ownerName
308
+
309
+ @ownerName.setter
310
+ def ownerName(self, value):
311
+ if value is not None and not isinstance(value, string_types):
312
+ value = repr(value)
313
+ if (value is None) or isinstance(value, string_types):
314
+ self._ownerName = value
315
+ else:
316
+ raise TypeError(
317
+ 'Property "ownerName" of type "list<str>" set to wrong type'
318
+ )
319
+
320
+ @property
321
+ def sizeInBytes(self):
322
+ """long: Size in bytes"""
323
+ return self._sizeInBytes
324
+
325
+ @sizeInBytes.setter
326
+ def sizeInBytes(self, value):
327
+ if value is not None and not isinstance(value, long):
328
+ value = long(value)
329
+ if (value is None) or isinstance(value, long):
330
+ self._sizeInBytes = value
331
+ else:
332
+ raise TypeError(
333
+ 'Property "sizeInBytes" of type "list<long>" set to wrong typ'
334
+ 'e'
335
+ )
336
+
337
+ @property
338
+ def status(self):
339
+ """AssetStatusTypeEnum: Asset status type"""
340
+ return self._status
341
+
342
+ @status.setter
343
+ def status(self, value):
344
+ if (value is None) or isinstance(value, str) or isinstance(value, unicode):
345
+ self._status = value
346
+ else:
347
+ raise TypeError(
348
+ 'Property "status" of type "list<AssetStatusTypeEnum>" set to'
349
+ ' wrong type'
350
+ )
351
+
352
+ @property
353
+ def storageProvider(self):
354
+ """AssetStorageTypeEnum: Asset storage provider type"""
355
+ return self._storageProvider
356
+
357
+ @storageProvider.setter
358
+ def storageProvider(self, value):
359
+ if (value is None) or isinstance(value, str) or isinstance(value, unicode):
360
+ self._storageProvider = value
361
+ else:
362
+ raise TypeError(
363
+ 'Property "storageProvider" of type "list<AssetStorageTypeEnu'
364
+ 'm>" set to wrong type'
365
+ )
366
+
367
+ @property
368
+ def teamName(self):
369
+ """str: Name of the team that the collection belongs to"""
370
+ return self._teamName
371
+
372
+ @teamName.setter
373
+ def teamName(self, value):
374
+ if value is not None and not isinstance(value, string_types):
375
+ value = repr(value)
376
+ if (value is None) or isinstance(value, string_types):
377
+ self._teamName = value
378
+ else:
379
+ raise TypeError(
380
+ 'Property "teamName" of type "list<str>" set to wrong type'
381
+ )
382
+
383
+ @property
384
+ def updatedDate(self):
385
+ """str: Updated date in ISO-8601 format"""
386
+ return self._updatedDate
387
+
388
+ @updatedDate.setter
389
+ def updatedDate(self, value):
390
+ if value is not None and not isinstance(value, string_types):
391
+ value = repr(value)
392
+ if (value is None) or isinstance(value, string_types):
393
+ self._updatedDate = value
394
+ else:
395
+ raise TypeError(
396
+ 'Property "updatedDate" of type "list<str>" set to wrong type'
397
+ )
398
+
399
+ @property
400
+ def uploadUrl(self):
401
+ """str: Asset upload URL"""
402
+ return self._uploadUrl
403
+
404
+ @uploadUrl.setter
405
+ def uploadUrl(self, value):
406
+ if value is not None and not isinstance(value, string_types):
407
+ value = repr(value)
408
+ if (value is None) or isinstance(value, string_types):
409
+ self._uploadUrl = value
410
+ else:
411
+ raise TypeError(
412
+ 'Property "uploadUrl" of type "list<str>" set to wrong type'
413
+ )
414
+
415
+ def toDict(self):
416
+ result = {}
417
+ if self._artifactName is not None:
418
+ result["artifactName"] = \
419
+ self._artifactName
420
+ if self._artifactType is not None:
421
+ result["artifactType"] = \
422
+ self._artifactType
423
+ if self._attributes:
424
+ result["attributes"] = [
425
+ i.toDict() for i in self._attributes
426
+ ] if self._attributes else []
427
+ if self._cdnProvider is not None:
428
+ result["cdnProvider"] = \
429
+ self._cdnProvider
430
+ if self._createdDate is not None:
431
+ result["createdDate"] = \
432
+ self._createdDate
433
+ if self._fileName is not None:
434
+ result["fileName"] = \
435
+ self._fileName
436
+ if self._hostedAt is not None:
437
+ result["hostedAt"] = \
438
+ self._hostedAt
439
+ if self._mimeType is not None:
440
+ result["mimeType"] = \
441
+ self._mimeType
442
+ if self._name is not None:
443
+ result["name"] = \
444
+ self._name
445
+ if self._orgName is not None:
446
+ result["orgName"] = \
447
+ self._orgName
448
+ if self._originUrl is not None:
449
+ result["originUrl"] = \
450
+ self._originUrl
451
+ if self._ownerName is not None:
452
+ result["ownerName"] = \
453
+ self._ownerName
454
+ if self._sizeInBytes is not None:
455
+ result["sizeInBytes"] = \
456
+ self._sizeInBytes
457
+ if self._status is not None:
458
+ result["status"] = \
459
+ self._status
460
+ if self._storageProvider is not None:
461
+ result["storageProvider"] = \
462
+ self._storageProvider
463
+ if self._teamName is not None:
464
+ result["teamName"] = \
465
+ self._teamName
466
+ if self._updatedDate is not None:
467
+ result["updatedDate"] = \
468
+ self._updatedDate
469
+ if self._uploadUrl is not None:
470
+ result["uploadUrl"] = \
471
+ self._uploadUrl
472
+ return result
473
+
474
+ def toJSON(self, pretty=False):
475
+ if pretty:
476
+ return json.dumps(self.toDict(), sort_keys=True, indent=4)
477
+ else:
478
+ return json.dumps(self.toDict(), sort_keys=True)
479
+
480
+ def isValid(self):
481
+ if self._artifactType is None:
482
+ raise ValueError(
483
+ "Asset.artifactType doesnt match requirement:"
484
+ "required: True"
485
+ )
486
+ if self._artifactName is None:
487
+ raise ValueError(
488
+ "Asset.artifactName doesnt match requirement:"
489
+ "required: True"
490
+ )
491
+ if self._name is None:
492
+ raise ValueError(
493
+ "Asset.name doesnt match requirement:"
494
+ "required: True"
495
+ )
496
+ if (self._name is not None
497
+ and
498
+ len(self._name) > 255):
499
+ raise ValueError(
500
+ "Asset.name: " + str(self._name) +
501
+ " doesnt match requirement: maxLength: 255")
502
+ if self._status is None:
503
+ raise ValueError(
504
+ "Asset.status doesnt match requirement:"
505
+ "required: True"
506
+ )
507
+ if self._fileName is None:
508
+ raise ValueError(
509
+ "Asset.fileName doesnt match requirement:"
510
+ "required: True"
511
+ )
512
+ if (self._fileName is not None
513
+ and
514
+ len(self._fileName) > 255):
515
+ raise ValueError(
516
+ "Asset.fileName: " + str(self._fileName) +
517
+ " doesnt match requirement: maxLength: 255")
518
+ if (self._originUrl is not None
519
+ and
520
+ len(self._originUrl) > 2000):
521
+ raise ValueError(
522
+ "Asset.originUrl: " + str(self._originUrl) +
523
+ " doesnt match requirement: maxLength: 2000")
524
+ if (self._originUrl is not None
525
+ and
526
+ not re.match(
527
+ r"^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0"
528
+ "-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)"
529
+ "+$",
530
+ self._originUrl)):
531
+ raise ValueError(
532
+ "Asset.originUrl: " + str(self._originUrl) +
533
+ " doesnt match requirement: pattern: ^https?:\/\/(www\.)?[-a-"
534
+ "zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,"
535
+ "6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)+$")
536
+ if (self._uploadUrl is not None
537
+ and
538
+ not re.match(
539
+ r"^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0"
540
+ "-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)"
541
+ "+$",
542
+ self._uploadUrl)):
543
+ raise ValueError(
544
+ "Asset.uploadUrl: " + str(self._uploadUrl) +
545
+ " doesnt match requirement: pattern: ^https?:\/\/(www\.)?[-a-"
546
+ "zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,"
547
+ "6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)+$")
548
+ if self._orgName is None:
549
+ raise ValueError(
550
+ "Asset.orgName doesnt match requirement:"
551
+ "required: True"
552
+ )
553
+ if (self._createdDate is not None
554
+ and
555
+ not re.match(
556
+ r"\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+Z",
557
+ self._createdDate)):
558
+ raise ValueError(
559
+ "Asset.createdDate: " + str(self._createdDate) +
560
+ " doesnt match requirement: pattern: \d{4}-[01]\d-[0-3]\dT[0-"
561
+ "2]\d:[0-5]\d:[0-5]\d\.\d+Z")
562
+ if (self._updatedDate is not None
563
+ and
564
+ not re.match(
565
+ r"\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+Z",
566
+ self._updatedDate)):
567
+ raise ValueError(
568
+ "Asset.updatedDate: " + str(self._updatedDate) +
569
+ " doesnt match requirement: pattern: \d{4}-[01]\d-[0-3]\dT[0-"
570
+ "2]\d:[0-5]\d:[0-5]\d\.\d+Z")
571
+ if (self._attributes is not None):
572
+ for obj in self._attributes:
573
+ if (obj is not None): obj.isValid()
574
+ return True
575
+
576
+
@@ -0,0 +1,3 @@
1
+ AssetCdnProviderTypeEnum=["CLOUD_FRONT",]
2
+ str(repr(AssetCdnProviderTypeEnum)) # Prevent optimizer removing enum
3
+
@@ -0,0 +1,94 @@
1
+ """
2
+ ------------------------------------------------------------------------------
3
+ <auto-generated>
4
+ This code was auto-generated by main/tools/jsonparser.
5
+ Do not change this file.
6
+ </auto-generated>
7
+ ------------------------------------------------------------------------------
8
+ """
9
+ import json
10
+ import sys
11
+ import re
12
+ from six import string_types
13
+ from .RequestStatus import RequestStatus
14
+ from .Asset import Asset
15
+
16
+ # Unused import over optimization prevention
17
+ str(repr(Asset))
18
+ str(repr(RequestStatus))
19
+
20
+
21
+ if sys.version_info > (3,):
22
+ long = int
23
+ unicode = str
24
+
25
+ class AssetResponse(object):
26
+ """Response to asset request"""
27
+ def __init__(self, propDict=None):
28
+ fromDict = propDict is not None and isinstance(propDict, dict)
29
+ self.asset = (
30
+ None if not fromDict or propDict.get(
31
+ "asset"
32
+ ) is None
33
+ else propDict["asset"])
34
+ self.requestStatus = (
35
+ None if not fromDict or propDict.get(
36
+ "requestStatus"
37
+ ) is None
38
+ else propDict["requestStatus"])
39
+
40
+ @property
41
+ def asset(self):
42
+ """Asset: Asset object"""
43
+ return self._asset
44
+
45
+ @asset.setter
46
+ def asset(self, value):
47
+ if value is not None and not isinstance(value, Asset):
48
+ value = Asset(value)
49
+ if (value is None) or isinstance(value, Asset):
50
+ self._asset = value
51
+ else:
52
+ raise TypeError(
53
+ 'Property "asset" of type "list<Asset>" set to wrong type'
54
+ )
55
+
56
+ @property
57
+ def requestStatus(self):
58
+ """RequestStatus: Request status information"""
59
+ return self._requestStatus
60
+
61
+ @requestStatus.setter
62
+ def requestStatus(self, value):
63
+ if value is not None and not isinstance(value, RequestStatus):
64
+ value = RequestStatus(value)
65
+ if (value is None) or isinstance(value, RequestStatus):
66
+ self._requestStatus = value
67
+ else:
68
+ raise TypeError(
69
+ 'Property "requestStatus" of type "list<RequestStatus>" set t'
70
+ 'o wrong type'
71
+ )
72
+
73
+ def toDict(self):
74
+ result = {}
75
+ if self._asset:
76
+ result["asset"] = \
77
+ self._asset.toDict() if self._asset is not None else None
78
+ if self._requestStatus:
79
+ result["requestStatus"] = \
80
+ self._requestStatus.toDict() if self._requestStatus is not None else None
81
+ return result
82
+
83
+ def toJSON(self, pretty=False):
84
+ if pretty:
85
+ return json.dumps(self.toDict(), sort_keys=True, indent=4)
86
+ else:
87
+ return json.dumps(self.toDict(), sort_keys=True)
88
+
89
+ def isValid(self):
90
+ if (self._asset is not None): self._asset.isValid()
91
+ if (self._requestStatus is not None): self._requestStatus.isValid()
92
+ return True
93
+
94
+