@alicloud/ehpcinstant20230701 2.0.5 → 2.0.7
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.
- package/dist/client.js +3 -0
- package/dist/client.js.map +1 -1
- package/dist/models/AddImageRequest.d.ts +79 -2
- package/dist/models/AddImageRequest.js +77 -5
- package/dist/models/AddImageRequest.js.map +1 -1
- package/dist/models/CreateJobRequest.d.ts +339 -3
- package/dist/models/CreateJobRequest.js +428 -7
- package/dist/models/CreateJobRequest.js.map +1 -1
- package/dist/models/CreateJobResponseBody.d.ts +14 -1
- package/dist/models/CreateJobResponseBody.js +26 -3
- package/dist/models/CreateJobResponseBody.js.map +1 -1
- package/dist/models/CreatePoolRequest.d.ts +17 -1
- package/dist/models/CreatePoolRequest.js +21 -3
- package/dist/models/CreatePoolRequest.js.map +1 -1
- package/dist/models/DeleteJobsRequest.d.ts +37 -1
- package/dist/models/DeleteJobsRequest.js +52 -3
- package/dist/models/DeleteJobsRequest.js.map +1 -1
- package/dist/models/DeleteJobsShrinkRequest.d.ts +1 -0
- package/dist/models/DeleteJobsShrinkRequest.js +2 -0
- package/dist/models/DeleteJobsShrinkRequest.js.map +1 -1
- package/dist/models/DescribeJobMetricLastResponseBody.d.ts +22 -1
- package/dist/models/DescribeJobMetricLastResponseBody.js +23 -3
- package/dist/models/DescribeJobMetricLastResponseBody.js.map +1 -1
- package/dist/models/GetAppVersionsResponseBody.d.ts +30 -1
- package/dist/models/GetAppVersionsResponseBody.js +25 -3
- package/dist/models/GetAppVersionsResponseBody.js.map +1 -1
- package/dist/models/GetImageResponseBody.d.ts +172 -1
- package/dist/models/GetImageResponseBody.js +185 -3
- package/dist/models/GetImageResponseBody.js.map +1 -1
- package/dist/models/GetJobResponseBody.d.ts +313 -1
- package/dist/models/GetJobResponseBody.js +363 -3
- package/dist/models/GetJobResponseBody.js.map +1 -1
- package/dist/models/GetPoolResponseBody.d.ts +57 -1
- package/dist/models/GetPoolResponseBody.js +37 -3
- package/dist/models/GetPoolResponseBody.js.map +1 -1
- package/dist/models/ListExecutorsRequest.d.ts +32 -1
- package/dist/models/ListExecutorsRequest.js +44 -3
- package/dist/models/ListExecutorsRequest.js.map +1 -1
- package/dist/models/ListExecutorsResponseBody.d.ts +112 -1
- package/dist/models/ListExecutorsResponseBody.js +144 -3
- package/dist/models/ListExecutorsResponseBody.js.map +1 -1
- package/dist/models/ListImagesResponseBody.d.ts +53 -1
- package/dist/models/ListImagesResponseBody.js +41 -3
- package/dist/models/ListImagesResponseBody.js.map +1 -1
- package/dist/models/ListJobExecutorsResponseBody.d.ts +77 -2
- package/dist/models/ListJobExecutorsResponseBody.js +108 -5
- package/dist/models/ListJobExecutorsResponseBody.js.map +1 -1
- package/dist/models/ListJobsRequest.d.ts +59 -2
- package/dist/models/ListJobsRequest.js +51 -5
- package/dist/models/ListJobsRequest.js.map +1 -1
- package/dist/models/ListJobsResponseBody.d.ts +84 -1
- package/dist/models/ListJobsResponseBody.js +71 -3
- package/dist/models/ListJobsResponseBody.js.map +1 -1
- package/dist/models/ListPoolsRequest.d.ts +24 -1
- package/dist/models/ListPoolsRequest.js +33 -3
- package/dist/models/ListPoolsRequest.js.map +1 -1
- package/dist/models/ListPoolsResponseBody.d.ts +37 -1
- package/dist/models/ListPoolsResponseBody.js +29 -3
- package/dist/models/ListPoolsResponseBody.js.map +1 -1
- package/dist/models/ListTagResourcesRequest.d.ts +22 -1
- package/dist/models/ListTagResourcesRequest.js +23 -3
- package/dist/models/ListTagResourcesRequest.js.map +1 -1
- package/dist/models/ListTagResourcesResponseBody.d.ts +45 -1
- package/dist/models/ListTagResourcesResponseBody.js +49 -3
- package/dist/models/ListTagResourcesResponseBody.js.map +1 -1
- package/dist/models/TagResourcesRequest.d.ts +25 -1
- package/dist/models/TagResourcesRequest.js +23 -3
- package/dist/models/TagResourcesRequest.js.map +1 -1
- package/dist/models/UpdatePoolRequest.d.ts +17 -1
- package/dist/models/UpdatePoolRequest.js +21 -3
- package/dist/models/UpdatePoolRequest.js.map +1 -1
- package/dist/models/model.d.ts +65 -65
- package/dist/models/model.js +173 -173
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +4 -0
- package/src/models/AddImageRequest.ts +124 -2
- package/src/models/CreateJobRequest.ts +619 -3
- package/src/models/CreateJobResponseBody.ts +29 -1
- package/src/models/CreatePoolRequest.ts +27 -1
- package/src/models/DeleteJobsRequest.ts +69 -1
- package/src/models/DeleteJobsShrinkRequest.ts +3 -0
- package/src/models/DescribeJobMetricLastResponseBody.ts +34 -1
- package/src/models/GetAppVersionsResponseBody.ts +44 -1
- package/src/models/GetImageResponseBody.ts +301 -1
- package/src/models/GetJobResponseBody.ts +557 -1
- package/src/models/GetPoolResponseBody.ts +83 -1
- package/src/models/ListExecutorsRequest.ts +65 -1
- package/src/models/ListExecutorsResponseBody.ts +218 -1
- package/src/models/ListImagesResponseBody.ts +83 -1
- package/src/models/ListJobExecutorsResponseBody.ts +155 -2
- package/src/models/ListJobsRequest.ts +89 -2
- package/src/models/ListJobsResponseBody.ts +135 -1
- package/src/models/ListPoolsRequest.ts +46 -1
- package/src/models/ListPoolsResponseBody.ts +55 -1
- package/src/models/ListTagResourcesRequest.ts +34 -1
- package/src/models/ListTagResourcesResponseBody.ts +74 -1
- package/src/models/TagResourcesRequest.ts +37 -1
- package/src/models/UpdatePoolRequest.ts +27 -1
- package/src/models/model.ts +65 -65
- package/dist/models/AddImageRequestContainerImageSpec.d.ts +0 -35
- package/dist/models/AddImageRequestContainerImageSpec.js +0 -70
- package/dist/models/AddImageRequestContainerImageSpec.js.map +0 -1
- package/dist/models/AddImageRequestContainerImageSpecRegistryCredential.d.ts +0 -30
- package/dist/models/AddImageRequestContainerImageSpecRegistryCredential.js +0 -64
- package/dist/models/AddImageRequestContainerImageSpecRegistryCredential.js.map +0 -1
- package/dist/models/AddImageRequestVmimageSpec.d.ts +0 -18
- package/dist/models/AddImageRequestVmimageSpec.js +0 -58
- package/dist/models/AddImageRequestVmimageSpec.js.map +0 -1
- package/dist/models/CreateJobRequestDeploymentPolicy.d.ts +0 -25
- package/dist/models/CreateJobRequestDeploymentPolicy.js +0 -76
- package/dist/models/CreateJobRequestDeploymentPolicy.js.map +0 -1
- package/dist/models/CreateJobRequestDeploymentPolicyNetwork.d.ts +0 -15
- package/dist/models/CreateJobRequestDeploymentPolicyNetwork.js +0 -63
- package/dist/models/CreateJobRequestDeploymentPolicyNetwork.js.map +0 -1
- package/dist/models/CreateJobRequestDeploymentPolicyTag.d.ts +0 -19
- package/dist/models/CreateJobRequestDeploymentPolicyTag.js +0 -60
- package/dist/models/CreateJobRequestDeploymentPolicyTag.js.map +0 -1
- package/dist/models/CreateJobRequestSecurityPolicy.d.ts +0 -15
- package/dist/models/CreateJobRequestSecurityPolicy.js +0 -62
- package/dist/models/CreateJobRequestSecurityPolicy.js.map +0 -1
- package/dist/models/CreateJobRequestSecurityPolicySecurityGroup.d.ts +0 -14
- package/dist/models/CreateJobRequestSecurityPolicySecurityGroup.js +0 -61
- package/dist/models/CreateJobRequestSecurityPolicySecurityGroup.js.map +0 -1
- package/dist/models/CreateJobRequestTasks.d.ts +0 -27
- package/dist/models/CreateJobRequestTasks.js +0 -72
- package/dist/models/CreateJobRequestTasks.js.map +0 -1
- package/dist/models/CreateJobRequestTasksExecutorPolicy.d.ts +0 -20
- package/dist/models/CreateJobRequestTasksExecutorPolicy.js +0 -64
- package/dist/models/CreateJobRequestTasksExecutorPolicy.js.map +0 -1
- package/dist/models/CreateJobRequestTasksExecutorPolicyArraySpec.d.ts +0 -28
- package/dist/models/CreateJobRequestTasksExecutorPolicyArraySpec.js +0 -62
- package/dist/models/CreateJobRequestTasksExecutorPolicyArraySpec.js.map +0 -1
- package/dist/models/CreateJobRequestTasksTaskSpec.d.ts +0 -23
- package/dist/models/CreateJobRequestTasksTaskSpec.js +0 -74
- package/dist/models/CreateJobRequestTasksTaskSpec.js.map +0 -1
- package/dist/models/CreateJobRequestTasksTaskSpecResource.d.ts +0 -26
- package/dist/models/CreateJobRequestTasksTaskSpecResource.js +0 -71
- package/dist/models/CreateJobRequestTasksTaskSpecResource.js.map +0 -1
- package/dist/models/CreateJobRequestTasksTaskSpecResourceDisks.d.ts +0 -23
- package/dist/models/CreateJobRequestTasksTaskSpecResourceDisks.js +0 -60
- package/dist/models/CreateJobRequestTasksTaskSpecResourceDisks.js.map +0 -1
- package/dist/models/CreateJobRequestTasksTaskSpecTaskExecutor.d.ts +0 -17
- package/dist/models/CreateJobRequestTasksTaskSpecTaskExecutor.js +0 -68
- package/dist/models/CreateJobRequestTasksTaskSpecTaskExecutor.js.map +0 -1
- package/dist/models/CreateJobRequestTasksTaskSpecTaskExecutorContainer.d.ts +0 -31
- package/dist/models/CreateJobRequestTasksTaskSpecTaskExecutorContainer.js +0 -78
- package/dist/models/CreateJobRequestTasksTaskSpecTaskExecutorContainer.js.map +0 -1
- package/dist/models/CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars.d.ts +0 -23
- package/dist/models/CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars.js +0 -60
- package/dist/models/CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars.js.map +0 -1
- package/dist/models/CreateJobRequestTasksTaskSpecTaskExecutorVm.d.ts +0 -33
- package/dist/models/CreateJobRequestTasksTaskSpecTaskExecutorVm.js +0 -66
- package/dist/models/CreateJobRequestTasksTaskSpecTaskExecutorVm.js.map +0 -1
- package/dist/models/CreateJobRequestTasksTaskSpecVolumeMount.d.ts +0 -29
- package/dist/models/CreateJobRequestTasksTaskSpecVolumeMount.js +0 -64
- package/dist/models/CreateJobRequestTasksTaskSpecVolumeMount.js.map +0 -1
- package/dist/models/CreateJobResponseBodyTasks.d.ts +0 -15
- package/dist/models/CreateJobResponseBodyTasks.js +0 -63
- package/dist/models/CreateJobResponseBodyTasks.js.map +0 -1
- package/dist/models/CreatePoolRequestResourceLimits.d.ts +0 -18
- package/dist/models/CreatePoolRequestResourceLimits.js +0 -58
- package/dist/models/CreatePoolRequestResourceLimits.js.map +0 -1
- package/dist/models/DeleteJobsRequestJobSpec.d.ts +0 -20
- package/dist/models/DeleteJobsRequestJobSpec.js +0 -64
- package/dist/models/DeleteJobsRequestJobSpec.js.map +0 -1
- package/dist/models/DeleteJobsRequestJobSpecTaskSpec.d.ts +0 -19
- package/dist/models/DeleteJobsRequestJobSpecTaskSpec.js +0 -63
- package/dist/models/DeleteJobsRequestJobSpecTaskSpec.js.map +0 -1
- package/dist/models/DescribeJobMetricLastResponseBodyMetrics.d.ts +0 -23
- package/dist/models/DescribeJobMetricLastResponseBodyMetrics.js +0 -60
- package/dist/models/DescribeJobMetricLastResponseBodyMetrics.js.map +0 -1
- package/dist/models/GetAppVersionsResponseBodyAppVersions.d.ts +0 -31
- package/dist/models/GetAppVersionsResponseBodyAppVersions.js +0 -62
- package/dist/models/GetAppVersionsResponseBodyAppVersions.js.map +0 -1
- package/dist/models/GetImageResponseBodyImage.d.ts +0 -52
- package/dist/models/GetImageResponseBodyImage.js +0 -96
- package/dist/models/GetImageResponseBodyImage.js.map +0 -1
- package/dist/models/GetImageResponseBodyImageAdditionalRegionsInfo.d.ts +0 -16
- package/dist/models/GetImageResponseBodyImageAdditionalRegionsInfo.js +0 -62
- package/dist/models/GetImageResponseBodyImageAdditionalRegionsInfo.js.map +0 -1
- package/dist/models/GetImageResponseBodyImageContainerImageSpec.d.ts +0 -38
- package/dist/models/GetImageResponseBodyImageContainerImageSpec.js +0 -76
- package/dist/models/GetImageResponseBodyImageContainerImageSpec.js.map +0 -1
- package/dist/models/GetImageResponseBodyImageContainerImageSpecRegistryCredential.d.ts +0 -28
- package/dist/models/GetImageResponseBodyImageContainerImageSpecRegistryCredential.js +0 -62
- package/dist/models/GetImageResponseBodyImageContainerImageSpecRegistryCredential.js.map +0 -1
- package/dist/models/GetImageResponseBodyImageDocumentInfo.d.ts +0 -16
- package/dist/models/GetImageResponseBodyImageDocumentInfo.js +0 -62
- package/dist/models/GetImageResponseBodyImageDocumentInfo.js.map +0 -1
- package/dist/models/GetImageResponseBodyImageVmimageSpec.d.ts +0 -33
- package/dist/models/GetImageResponseBodyImageVmimageSpec.js +0 -64
- package/dist/models/GetImageResponseBodyImageVmimageSpec.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfo.d.ts +0 -54
- package/dist/models/GetJobResponseBodyJobInfo.js +0 -86
- package/dist/models/GetJobResponseBodyJobInfo.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfoDeploymentPolicy.d.ts +0 -23
- package/dist/models/GetJobResponseBodyJobInfoDeploymentPolicy.js +0 -72
- package/dist/models/GetJobResponseBodyJobInfoDeploymentPolicy.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfoDeploymentPolicyNetwork.d.ts +0 -16
- package/dist/models/GetJobResponseBodyJobInfoDeploymentPolicyNetwork.js +0 -65
- package/dist/models/GetJobResponseBodyJobInfoDeploymentPolicyNetwork.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfoDeploymentPolicyTags.d.ts +0 -15
- package/dist/models/GetJobResponseBodyJobInfoDeploymentPolicyTags.js +0 -60
- package/dist/models/GetJobResponseBodyJobInfoDeploymentPolicyTags.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfoTasks.d.ts +0 -29
- package/dist/models/GetJobResponseBodyJobInfoTasks.js +0 -78
- package/dist/models/GetJobResponseBodyJobInfoTasks.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfoTasksExecutorPolicy.d.ts +0 -20
- package/dist/models/GetJobResponseBodyJobInfoTasksExecutorPolicy.js +0 -64
- package/dist/models/GetJobResponseBodyJobInfoTasksExecutorPolicy.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec.d.ts +0 -28
- package/dist/models/GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec.js +0 -62
- package/dist/models/GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfoTasksExecutorStatus.d.ts +0 -43
- package/dist/models/GetJobResponseBodyJobInfoTasksExecutorStatus.js +0 -68
- package/dist/models/GetJobResponseBodyJobInfoTasksExecutorStatus.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpec.d.ts +0 -17
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpec.js +0 -68
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpec.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpecResource.d.ts +0 -26
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpecResource.js +0 -71
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpecResource.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks.d.ts +0 -23
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks.js +0 -60
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutor.d.ts +0 -15
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutor.js +0 -62
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutor.js.map +0 -1
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVm.d.ts +0 -29
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVm.js +0 -64
- package/dist/models/GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVm.js.map +0 -1
- package/dist/models/GetPoolResponseBodyPoolInfo.d.ts +0 -58
- package/dist/models/GetPoolResponseBodyPoolInfo.js +0 -74
- package/dist/models/GetPoolResponseBodyPoolInfo.js.map +0 -1
- package/dist/models/ListExecutorsRequestFilter.d.ts +0 -31
- package/dist/models/ListExecutorsRequestFilter.js +0 -77
- package/dist/models/ListExecutorsRequestFilter.js.map +0 -1
- package/dist/models/ListExecutorsResponseBodyExecutors.d.ts +0 -72
- package/dist/models/ListExecutorsResponseBodyExecutors.js +0 -115
- package/dist/models/ListExecutorsResponseBodyExecutors.js.map +0 -1
- package/dist/models/ListExecutorsResponseBodyExecutorsResource.d.ts +0 -17
- package/dist/models/ListExecutorsResponseBodyExecutorsResource.js +0 -66
- package/dist/models/ListExecutorsResponseBodyExecutorsResource.js.map +0 -1
- package/dist/models/ListExecutorsResponseBodyExecutorsResourceDisks.d.ts +0 -15
- package/dist/models/ListExecutorsResponseBodyExecutorsResourceDisks.js +0 -60
- package/dist/models/ListExecutorsResponseBodyExecutorsResourceDisks.js.map +0 -1
- package/dist/models/ListExecutorsResponseBodyExecutorsTags.d.ts +0 -15
- package/dist/models/ListExecutorsResponseBodyExecutorsTags.js +0 -60
- package/dist/models/ListExecutorsResponseBodyExecutorsTags.js.map +0 -1
- package/dist/models/ListImagesResponseBodyImages.d.ts +0 -54
- package/dist/models/ListImagesResponseBodyImages.js +0 -78
- package/dist/models/ListImagesResponseBodyImages.js.map +0 -1
- package/dist/models/ListJobExecutorsResponseBodyExecutorStatus.d.ts +0 -20
- package/dist/models/ListJobExecutorsResponseBodyExecutorStatus.js +0 -70
- package/dist/models/ListJobExecutorsResponseBodyExecutorStatus.js.map +0 -1
- package/dist/models/ListJobExecutorsResponseBodyExecutors.d.ts +0 -46
- package/dist/models/ListJobExecutorsResponseBodyExecutors.js +0 -93
- package/dist/models/ListJobExecutorsResponseBodyExecutors.js.map +0 -1
- package/dist/models/ListJobExecutorsResponseBodyExecutorsTags.d.ts +0 -15
- package/dist/models/ListJobExecutorsResponseBodyExecutorsTags.js +0 -60
- package/dist/models/ListJobExecutorsResponseBodyExecutorsTags.js.map +0 -1
- package/dist/models/ListJobsRequestFilter.d.ts +0 -38
- package/dist/models/ListJobsRequestFilter.js +0 -66
- package/dist/models/ListJobsRequestFilter.js.map +0 -1
- package/dist/models/ListJobsRequestSortBy.d.ts +0 -23
- package/dist/models/ListJobsRequestSortBy.js +0 -60
- package/dist/models/ListJobsRequestSortBy.js.map +0 -1
- package/dist/models/ListJobsResponseBodyJobList.d.ts +0 -72
- package/dist/models/ListJobsResponseBodyJobList.js +0 -88
- package/dist/models/ListJobsResponseBodyJobList.js.map +0 -1
- package/dist/models/ListJobsResponseBodyJobListTags.d.ts +0 -15
- package/dist/models/ListJobsResponseBodyJobListTags.js +0 -60
- package/dist/models/ListJobsResponseBodyJobListTags.js.map +0 -1
- package/dist/models/ListPoolsRequestFilter.d.ts +0 -25
- package/dist/models/ListPoolsRequestFilter.js +0 -70
- package/dist/models/ListPoolsRequestFilter.js.map +0 -1
- package/dist/models/ListPoolsResponseBodyPoolList.d.ts +0 -38
- package/dist/models/ListPoolsResponseBodyPoolList.js +0 -66
- package/dist/models/ListPoolsResponseBodyPoolList.js.map +0 -1
- package/dist/models/ListTagResourcesRequestTag.d.ts +0 -23
- package/dist/models/ListTagResourcesRequestTag.js +0 -60
- package/dist/models/ListTagResourcesRequestTag.js.map +0 -1
- package/dist/models/ListTagResourcesResponseBodyTagResources.d.ts +0 -15
- package/dist/models/ListTagResourcesResponseBodyTagResources.js +0 -62
- package/dist/models/ListTagResourcesResponseBodyTagResources.js.map +0 -1
- package/dist/models/ListTagResourcesResponseBodyTagResourcesTagResource.d.ts +0 -33
- package/dist/models/ListTagResourcesResponseBodyTagResourcesTagResource.js +0 -64
- package/dist/models/ListTagResourcesResponseBodyTagResourcesTagResource.js.map +0 -1
- package/dist/models/TagResourcesRequestTag.d.ts +0 -26
- package/dist/models/TagResourcesRequestTag.js +0 -60
- package/dist/models/TagResourcesRequestTag.js.map +0 -1
- package/dist/models/UpdatePoolRequestResourceLimits.d.ts +0 -18
- package/dist/models/UpdatePoolRequestResourceLimits.js +0 -58
- package/dist/models/UpdatePoolRequestResourceLimits.js.map +0 -1
- package/src/models/AddImageRequestContainerImageSpec.ts +0 -59
- package/src/models/AddImageRequestContainerImageSpecRegistryCredential.ts +0 -47
- package/src/models/AddImageRequestVmimageSpec.ts +0 -31
- package/src/models/CreateJobRequestDeploymentPolicy.ts +0 -54
- package/src/models/CreateJobRequestDeploymentPolicyNetwork.ts +0 -33
- package/src/models/CreateJobRequestDeploymentPolicyTag.ts +0 -34
- package/src/models/CreateJobRequestSecurityPolicy.ts +0 -31
- package/src/models/CreateJobRequestSecurityPolicySecurityGroup.ts +0 -30
- package/src/models/CreateJobRequestTasks.ts +0 -52
- package/src/models/CreateJobRequestTasksExecutorPolicy.ts +0 -38
- package/src/models/CreateJobRequestTasksExecutorPolicyArraySpec.ts +0 -45
- package/src/models/CreateJobRequestTasksTaskSpec.ts +0 -49
- package/src/models/CreateJobRequestTasksTaskSpecResource.ts +0 -51
- package/src/models/CreateJobRequestTasksTaskSpecResourceDisks.ts +0 -38
- package/src/models/CreateJobRequestTasksTaskSpecTaskExecutor.ts +0 -38
- package/src/models/CreateJobRequestTasksTaskSpecTaskExecutorContainer.ts +0 -63
- package/src/models/CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars.ts +0 -38
- package/src/models/CreateJobRequestTasksTaskSpecTaskExecutorVm.ts +0 -54
- package/src/models/CreateJobRequestTasksTaskSpecVolumeMount.ts +0 -48
- package/src/models/CreateJobResponseBodyTasks.ts +0 -33
- package/src/models/CreatePoolRequestResourceLimits.ts +0 -31
- package/src/models/DeleteJobsRequestJobSpec.ts +0 -38
- package/src/models/DeleteJobsRequestJobSpecTaskSpec.ts +0 -37
- package/src/models/DescribeJobMetricLastResponseBodyMetrics.ts +0 -38
- package/src/models/GetAppVersionsResponseBodyAppVersions.ts +0 -48
- package/src/models/GetImageResponseBodyImage.ts +0 -99
- package/src/models/GetImageResponseBodyImageAdditionalRegionsInfo.ts +0 -33
- package/src/models/GetImageResponseBodyImageContainerImageSpec.ts +0 -68
- package/src/models/GetImageResponseBodyImageContainerImageSpecRegistryCredential.ts +0 -45
- package/src/models/GetImageResponseBodyImageDocumentInfo.ts +0 -33
- package/src/models/GetImageResponseBodyImageVmimageSpec.ts +0 -52
- package/src/models/GetJobResponseBodyJobInfo.ts +0 -93
- package/src/models/GetJobResponseBodyJobInfoDeploymentPolicy.ts +0 -48
- package/src/models/GetJobResponseBodyJobInfoDeploymentPolicyNetwork.ts +0 -36
- package/src/models/GetJobResponseBodyJobInfoDeploymentPolicyTags.ts +0 -30
- package/src/models/GetJobResponseBodyJobInfoTasks.ts +0 -59
- package/src/models/GetJobResponseBodyJobInfoTasksExecutorPolicy.ts +0 -38
- package/src/models/GetJobResponseBodyJobInfoTasksExecutorPolicyArraySpec.ts +0 -45
- package/src/models/GetJobResponseBodyJobInfoTasksExecutorStatus.ts +0 -66
- package/src/models/GetJobResponseBodyJobInfoTasksTaskSpec.ts +0 -38
- package/src/models/GetJobResponseBodyJobInfoTasksTaskSpecResource.ts +0 -51
- package/src/models/GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks.ts +0 -38
- package/src/models/GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutor.ts +0 -31
- package/src/models/GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVm.ts +0 -48
- package/src/models/GetPoolResponseBodyPoolInfo.ts +0 -87
- package/src/models/ListExecutorsRequestFilter.ts +0 -63
- package/src/models/ListExecutorsResponseBodyExecutors.ts +0 -140
- package/src/models/ListExecutorsResponseBodyExecutorsResource.ts +0 -37
- package/src/models/ListExecutorsResponseBodyExecutorsResourceDisks.ts +0 -30
- package/src/models/ListExecutorsResponseBodyExecutorsTags.ts +0 -30
- package/src/models/ListImagesResponseBodyImages.ts +0 -87
- package/src/models/ListJobExecutorsResponseBodyExecutorStatus.ts +0 -45
- package/src/models/ListJobExecutorsResponseBodyExecutors.ts +0 -93
- package/src/models/ListJobExecutorsResponseBodyExecutorsTags.ts +0 -30
- package/src/models/ListJobsRequestFilter.ts +0 -59
- package/src/models/ListJobsRequestSortBy.ts +0 -38
- package/src/models/ListJobsResponseBodyJobList.ts +0 -114
- package/src/models/ListJobsResponseBodyJobListTags.ts +0 -30
- package/src/models/ListPoolsRequestFilter.ts +0 -50
- package/src/models/ListPoolsResponseBodyPoolList.ts +0 -59
- package/src/models/ListTagResourcesRequestTag.ts +0 -38
- package/src/models/ListTagResourcesResponseBodyTagResources.ts +0 -31
- package/src/models/ListTagResourcesResponseBodyTagResourcesTagResource.ts +0 -52
- package/src/models/TagResourcesRequestTag.ts +0 -41
- package/src/models/UpdatePoolRequestResourceLimits.ts +0 -31
|
@@ -1,8 +1,225 @@
|
|
|
1
1
|
// This file is auto-generated, don't edit it
|
|
2
2
|
import * as $dara from '@darabonba/typescript';
|
|
3
|
-
import { ListExecutorsResponseBodyExecutors } from "./ListExecutorsResponseBodyExecutors";
|
|
4
3
|
|
|
5
4
|
|
|
5
|
+
export class ListExecutorsResponseBodyExecutorsResourceDisks extends $dara.Model {
|
|
6
|
+
size?: number;
|
|
7
|
+
type?: string;
|
|
8
|
+
static names(): { [key: string]: string } {
|
|
9
|
+
return {
|
|
10
|
+
size: 'Size',
|
|
11
|
+
type: 'Type',
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
static types(): { [key: string]: any } {
|
|
16
|
+
return {
|
|
17
|
+
size: 'number',
|
|
18
|
+
type: 'string',
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
validate() {
|
|
23
|
+
super.validate();
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
constructor(map?: { [key: string]: any }) {
|
|
27
|
+
super(map);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export class ListExecutorsResponseBodyExecutorsResource extends $dara.Model {
|
|
32
|
+
cores?: number;
|
|
33
|
+
disks?: ListExecutorsResponseBodyExecutorsResourceDisks[];
|
|
34
|
+
memory?: number;
|
|
35
|
+
static names(): { [key: string]: string } {
|
|
36
|
+
return {
|
|
37
|
+
cores: 'Cores',
|
|
38
|
+
disks: 'Disks',
|
|
39
|
+
memory: 'Memory',
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
static types(): { [key: string]: any } {
|
|
44
|
+
return {
|
|
45
|
+
cores: 'number',
|
|
46
|
+
disks: { 'type': 'array', 'itemType': ListExecutorsResponseBodyExecutorsResourceDisks },
|
|
47
|
+
memory: 'number',
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
validate() {
|
|
52
|
+
if(Array.isArray(this.disks)) {
|
|
53
|
+
$dara.Model.validateArray(this.disks);
|
|
54
|
+
}
|
|
55
|
+
super.validate();
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
constructor(map?: { [key: string]: any }) {
|
|
59
|
+
super(map);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export class ListExecutorsResponseBodyExecutorsTags extends $dara.Model {
|
|
64
|
+
tagKey?: string;
|
|
65
|
+
tagValue?: string;
|
|
66
|
+
static names(): { [key: string]: string } {
|
|
67
|
+
return {
|
|
68
|
+
tagKey: 'TagKey',
|
|
69
|
+
tagValue: 'TagValue',
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
static types(): { [key: string]: any } {
|
|
74
|
+
return {
|
|
75
|
+
tagKey: 'string',
|
|
76
|
+
tagValue: 'string',
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
validate() {
|
|
81
|
+
super.validate();
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
constructor(map?: { [key: string]: any }) {
|
|
85
|
+
super(map);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export class ListExecutorsResponseBodyExecutors extends $dara.Model {
|
|
90
|
+
appName?: string;
|
|
91
|
+
/**
|
|
92
|
+
* @example
|
|
93
|
+
* 0
|
|
94
|
+
*/
|
|
95
|
+
arrayIndex?: number;
|
|
96
|
+
/**
|
|
97
|
+
* @example
|
|
98
|
+
* 2024-02-20 10:04:10
|
|
99
|
+
*/
|
|
100
|
+
createTime?: string;
|
|
101
|
+
/**
|
|
102
|
+
* @example
|
|
103
|
+
* 2024-02-20 10:04:18
|
|
104
|
+
*/
|
|
105
|
+
endTime?: string;
|
|
106
|
+
/**
|
|
107
|
+
* @example
|
|
108
|
+
* job-xxxx-task0-1
|
|
109
|
+
*/
|
|
110
|
+
executorId?: string;
|
|
111
|
+
expirationTime?: string;
|
|
112
|
+
externalIpAddress?: string[];
|
|
113
|
+
hostName?: string[];
|
|
114
|
+
image?: string;
|
|
115
|
+
ipAddress?: string[];
|
|
116
|
+
/**
|
|
117
|
+
* @example
|
|
118
|
+
* job-hy1nggvyukuvkr******
|
|
119
|
+
*/
|
|
120
|
+
jobId?: string;
|
|
121
|
+
/**
|
|
122
|
+
* @example
|
|
123
|
+
* testJob
|
|
124
|
+
*/
|
|
125
|
+
jobName?: string;
|
|
126
|
+
resource?: ListExecutorsResponseBodyExecutorsResource;
|
|
127
|
+
resourceType?: string;
|
|
128
|
+
startTime?: string;
|
|
129
|
+
/**
|
|
130
|
+
* @example
|
|
131
|
+
* Running
|
|
132
|
+
*/
|
|
133
|
+
status?: string;
|
|
134
|
+
/**
|
|
135
|
+
* @example
|
|
136
|
+
* Succeeded to release executor resource
|
|
137
|
+
*/
|
|
138
|
+
statusReason?: string;
|
|
139
|
+
tags?: ListExecutorsResponseBodyExecutorsTags[];
|
|
140
|
+
/**
|
|
141
|
+
* @example
|
|
142
|
+
* task0
|
|
143
|
+
*/
|
|
144
|
+
taskName?: string;
|
|
145
|
+
taskSustainable?: boolean;
|
|
146
|
+
vswitchId?: string;
|
|
147
|
+
static names(): { [key: string]: string } {
|
|
148
|
+
return {
|
|
149
|
+
appName: 'AppName',
|
|
150
|
+
arrayIndex: 'ArrayIndex',
|
|
151
|
+
createTime: 'CreateTime',
|
|
152
|
+
endTime: 'EndTime',
|
|
153
|
+
executorId: 'ExecutorId',
|
|
154
|
+
expirationTime: 'ExpirationTime',
|
|
155
|
+
externalIpAddress: 'ExternalIpAddress',
|
|
156
|
+
hostName: 'HostName',
|
|
157
|
+
image: 'Image',
|
|
158
|
+
ipAddress: 'IpAddress',
|
|
159
|
+
jobId: 'JobId',
|
|
160
|
+
jobName: 'JobName',
|
|
161
|
+
resource: 'Resource',
|
|
162
|
+
resourceType: 'ResourceType',
|
|
163
|
+
startTime: 'StartTime',
|
|
164
|
+
status: 'Status',
|
|
165
|
+
statusReason: 'StatusReason',
|
|
166
|
+
tags: 'Tags',
|
|
167
|
+
taskName: 'TaskName',
|
|
168
|
+
taskSustainable: 'TaskSustainable',
|
|
169
|
+
vswitchId: 'VswitchId',
|
|
170
|
+
};
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
static types(): { [key: string]: any } {
|
|
174
|
+
return {
|
|
175
|
+
appName: 'string',
|
|
176
|
+
arrayIndex: 'number',
|
|
177
|
+
createTime: 'string',
|
|
178
|
+
endTime: 'string',
|
|
179
|
+
executorId: 'string',
|
|
180
|
+
expirationTime: 'string',
|
|
181
|
+
externalIpAddress: { 'type': 'array', 'itemType': 'string' },
|
|
182
|
+
hostName: { 'type': 'array', 'itemType': 'string' },
|
|
183
|
+
image: 'string',
|
|
184
|
+
ipAddress: { 'type': 'array', 'itemType': 'string' },
|
|
185
|
+
jobId: 'string',
|
|
186
|
+
jobName: 'string',
|
|
187
|
+
resource: ListExecutorsResponseBodyExecutorsResource,
|
|
188
|
+
resourceType: 'string',
|
|
189
|
+
startTime: 'string',
|
|
190
|
+
status: 'string',
|
|
191
|
+
statusReason: 'string',
|
|
192
|
+
tags: { 'type': 'array', 'itemType': ListExecutorsResponseBodyExecutorsTags },
|
|
193
|
+
taskName: 'string',
|
|
194
|
+
taskSustainable: 'boolean',
|
|
195
|
+
vswitchId: 'string',
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
validate() {
|
|
200
|
+
if(Array.isArray(this.externalIpAddress)) {
|
|
201
|
+
$dara.Model.validateArray(this.externalIpAddress);
|
|
202
|
+
}
|
|
203
|
+
if(Array.isArray(this.hostName)) {
|
|
204
|
+
$dara.Model.validateArray(this.hostName);
|
|
205
|
+
}
|
|
206
|
+
if(Array.isArray(this.ipAddress)) {
|
|
207
|
+
$dara.Model.validateArray(this.ipAddress);
|
|
208
|
+
}
|
|
209
|
+
if(this.resource && typeof (this.resource as any).validate === 'function') {
|
|
210
|
+
(this.resource as any).validate();
|
|
211
|
+
}
|
|
212
|
+
if(Array.isArray(this.tags)) {
|
|
213
|
+
$dara.Model.validateArray(this.tags);
|
|
214
|
+
}
|
|
215
|
+
super.validate();
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
constructor(map?: { [key: string]: any }) {
|
|
219
|
+
super(map);
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
6
223
|
export class ListExecutorsResponseBody extends $dara.Model {
|
|
7
224
|
executors?: ListExecutorsResponseBodyExecutors[];
|
|
8
225
|
/**
|
|
@@ -1,8 +1,90 @@
|
|
|
1
1
|
// This file is auto-generated, don't edit it
|
|
2
2
|
import * as $dara from '@darabonba/typescript';
|
|
3
|
-
import { ListImagesResponseBodyImages } from "./ListImagesResponseBodyImages";
|
|
4
3
|
|
|
5
4
|
|
|
5
|
+
export class ListImagesResponseBodyImages extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* This parameter is required.
|
|
9
|
+
*/
|
|
10
|
+
appId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 2022-12-09T07:06:34Z
|
|
14
|
+
*/
|
|
15
|
+
createTime?: string;
|
|
16
|
+
description?: string;
|
|
17
|
+
documentId?: number;
|
|
18
|
+
/**
|
|
19
|
+
* @remarks
|
|
20
|
+
* This parameter is required.
|
|
21
|
+
*
|
|
22
|
+
* @example
|
|
23
|
+
* m-bp181x855551ww5yq****
|
|
24
|
+
*/
|
|
25
|
+
imageId?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @remarks
|
|
28
|
+
* This parameter is required.
|
|
29
|
+
*
|
|
30
|
+
* @example
|
|
31
|
+
* VM
|
|
32
|
+
*/
|
|
33
|
+
imageType?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @example
|
|
36
|
+
* app-image
|
|
37
|
+
*/
|
|
38
|
+
name?: string;
|
|
39
|
+
osTag?: string;
|
|
40
|
+
updateTime?: string;
|
|
41
|
+
/**
|
|
42
|
+
* @example
|
|
43
|
+
* v1.0
|
|
44
|
+
*/
|
|
45
|
+
version?: string;
|
|
46
|
+
weight?: number;
|
|
47
|
+
static names(): { [key: string]: string } {
|
|
48
|
+
return {
|
|
49
|
+
appId: 'AppId',
|
|
50
|
+
createTime: 'CreateTime',
|
|
51
|
+
description: 'Description',
|
|
52
|
+
documentId: 'DocumentId',
|
|
53
|
+
imageId: 'ImageId',
|
|
54
|
+
imageType: 'ImageType',
|
|
55
|
+
name: 'Name',
|
|
56
|
+
osTag: 'OsTag',
|
|
57
|
+
updateTime: 'UpdateTime',
|
|
58
|
+
version: 'Version',
|
|
59
|
+
weight: 'Weight',
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
static types(): { [key: string]: any } {
|
|
64
|
+
return {
|
|
65
|
+
appId: 'string',
|
|
66
|
+
createTime: 'string',
|
|
67
|
+
description: 'string',
|
|
68
|
+
documentId: 'number',
|
|
69
|
+
imageId: 'string',
|
|
70
|
+
imageType: 'string',
|
|
71
|
+
name: 'string',
|
|
72
|
+
osTag: 'string',
|
|
73
|
+
updateTime: 'string',
|
|
74
|
+
version: 'string',
|
|
75
|
+
weight: 'number',
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
validate() {
|
|
80
|
+
super.validate();
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
constructor(map?: { [key: string]: any }) {
|
|
84
|
+
super(map);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
6
88
|
export class ListImagesResponseBody extends $dara.Model {
|
|
7
89
|
images?: ListImagesResponseBodyImages[];
|
|
8
90
|
/**
|
|
@@ -1,9 +1,162 @@
|
|
|
1
1
|
// This file is auto-generated, don't edit it
|
|
2
2
|
import * as $dara from '@darabonba/typescript';
|
|
3
|
-
import { ListJobExecutorsResponseBodyExecutorStatus } from "./ListJobExecutorsResponseBodyExecutorStatus";
|
|
4
|
-
import { ListJobExecutorsResponseBodyExecutors } from "./ListJobExecutorsResponseBodyExecutors";
|
|
5
3
|
|
|
6
4
|
|
|
5
|
+
export class ListJobExecutorsResponseBodyExecutorStatus extends $dara.Model {
|
|
6
|
+
deleted?: number;
|
|
7
|
+
exception?: number;
|
|
8
|
+
failed?: number;
|
|
9
|
+
initing?: number;
|
|
10
|
+
pending?: number;
|
|
11
|
+
running?: number;
|
|
12
|
+
succeeded?: number;
|
|
13
|
+
static names(): { [key: string]: string } {
|
|
14
|
+
return {
|
|
15
|
+
deleted: 'Deleted',
|
|
16
|
+
exception: 'Exception',
|
|
17
|
+
failed: 'Failed',
|
|
18
|
+
initing: 'Initing',
|
|
19
|
+
pending: 'Pending',
|
|
20
|
+
running: 'Running',
|
|
21
|
+
succeeded: 'Succeeded',
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
static types(): { [key: string]: any } {
|
|
26
|
+
return {
|
|
27
|
+
deleted: 'number',
|
|
28
|
+
exception: 'number',
|
|
29
|
+
failed: 'number',
|
|
30
|
+
initing: 'number',
|
|
31
|
+
pending: 'number',
|
|
32
|
+
running: 'number',
|
|
33
|
+
succeeded: 'number',
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
validate() {
|
|
38
|
+
super.validate();
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
constructor(map?: { [key: string]: any }) {
|
|
42
|
+
super(map);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export class ListJobExecutorsResponseBodyExecutorsTags extends $dara.Model {
|
|
47
|
+
tagKey?: string;
|
|
48
|
+
tagValue?: string;
|
|
49
|
+
static names(): { [key: string]: string } {
|
|
50
|
+
return {
|
|
51
|
+
tagKey: 'TagKey',
|
|
52
|
+
tagValue: 'TagValue',
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
static types(): { [key: string]: any } {
|
|
57
|
+
return {
|
|
58
|
+
tagKey: 'string',
|
|
59
|
+
tagValue: 'string',
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
validate() {
|
|
64
|
+
super.validate();
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
constructor(map?: { [key: string]: any }) {
|
|
68
|
+
super(map);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export class ListJobExecutorsResponseBodyExecutors extends $dara.Model {
|
|
73
|
+
/**
|
|
74
|
+
* @example
|
|
75
|
+
* 0
|
|
76
|
+
*/
|
|
77
|
+
arrayIndex?: number;
|
|
78
|
+
/**
|
|
79
|
+
* @example
|
|
80
|
+
* 2024-02-20 10:04:10
|
|
81
|
+
*/
|
|
82
|
+
createTime?: string;
|
|
83
|
+
/**
|
|
84
|
+
* @example
|
|
85
|
+
* 2024-02-20 10:04:18
|
|
86
|
+
*/
|
|
87
|
+
endTime?: string;
|
|
88
|
+
executorId?: string;
|
|
89
|
+
expirationTime?: string;
|
|
90
|
+
externalIpAddress?: string[];
|
|
91
|
+
hostName?: string[];
|
|
92
|
+
ipAddress?: string[];
|
|
93
|
+
startTime?: string;
|
|
94
|
+
/**
|
|
95
|
+
* @example
|
|
96
|
+
* Running
|
|
97
|
+
*/
|
|
98
|
+
status?: string;
|
|
99
|
+
/**
|
|
100
|
+
* @example
|
|
101
|
+
* Creating executor
|
|
102
|
+
*/
|
|
103
|
+
statusReason?: string;
|
|
104
|
+
tags?: ListJobExecutorsResponseBodyExecutorsTags[];
|
|
105
|
+
static names(): { [key: string]: string } {
|
|
106
|
+
return {
|
|
107
|
+
arrayIndex: 'ArrayIndex',
|
|
108
|
+
createTime: 'CreateTime',
|
|
109
|
+
endTime: 'EndTime',
|
|
110
|
+
executorId: 'ExecutorId',
|
|
111
|
+
expirationTime: 'ExpirationTime',
|
|
112
|
+
externalIpAddress: 'ExternalIpAddress',
|
|
113
|
+
hostName: 'HostName',
|
|
114
|
+
ipAddress: 'IpAddress',
|
|
115
|
+
startTime: 'StartTime',
|
|
116
|
+
status: 'Status',
|
|
117
|
+
statusReason: 'StatusReason',
|
|
118
|
+
tags: 'Tags',
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
static types(): { [key: string]: any } {
|
|
123
|
+
return {
|
|
124
|
+
arrayIndex: 'number',
|
|
125
|
+
createTime: 'string',
|
|
126
|
+
endTime: 'string',
|
|
127
|
+
executorId: 'string',
|
|
128
|
+
expirationTime: 'string',
|
|
129
|
+
externalIpAddress: { 'type': 'array', 'itemType': 'string' },
|
|
130
|
+
hostName: { 'type': 'array', 'itemType': 'string' },
|
|
131
|
+
ipAddress: { 'type': 'array', 'itemType': 'string' },
|
|
132
|
+
startTime: 'string',
|
|
133
|
+
status: 'string',
|
|
134
|
+
statusReason: 'string',
|
|
135
|
+
tags: { 'type': 'array', 'itemType': ListJobExecutorsResponseBodyExecutorsTags },
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
validate() {
|
|
140
|
+
if(Array.isArray(this.externalIpAddress)) {
|
|
141
|
+
$dara.Model.validateArray(this.externalIpAddress);
|
|
142
|
+
}
|
|
143
|
+
if(Array.isArray(this.hostName)) {
|
|
144
|
+
$dara.Model.validateArray(this.hostName);
|
|
145
|
+
}
|
|
146
|
+
if(Array.isArray(this.ipAddress)) {
|
|
147
|
+
$dara.Model.validateArray(this.ipAddress);
|
|
148
|
+
}
|
|
149
|
+
if(Array.isArray(this.tags)) {
|
|
150
|
+
$dara.Model.validateArray(this.tags);
|
|
151
|
+
}
|
|
152
|
+
super.validate();
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
constructor(map?: { [key: string]: any }) {
|
|
156
|
+
super(map);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
7
160
|
export class ListJobExecutorsResponseBody extends $dara.Model {
|
|
8
161
|
executorStatus?: ListJobExecutorsResponseBodyExecutorStatus;
|
|
9
162
|
executors?: ListJobExecutorsResponseBodyExecutors[];
|
|
@@ -1,9 +1,96 @@
|
|
|
1
1
|
// This file is auto-generated, don't edit it
|
|
2
2
|
import * as $dara from '@darabonba/typescript';
|
|
3
|
-
import { ListJobsRequestFilter } from "./ListJobsRequestFilter";
|
|
4
|
-
import { ListJobsRequestSortBy } from "./ListJobsRequestSortBy";
|
|
5
3
|
|
|
6
4
|
|
|
5
|
+
export class ListJobsRequestFilter extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* job-xxxx
|
|
9
|
+
*/
|
|
10
|
+
jobId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* testJob
|
|
14
|
+
*/
|
|
15
|
+
jobName?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* Running
|
|
19
|
+
*/
|
|
20
|
+
status?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* 1703819914
|
|
24
|
+
*/
|
|
25
|
+
timeCreatedAfter?: number;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* 1703820113
|
|
29
|
+
*/
|
|
30
|
+
timeCreatedBefore?: number;
|
|
31
|
+
static names(): { [key: string]: string } {
|
|
32
|
+
return {
|
|
33
|
+
jobId: 'JobId',
|
|
34
|
+
jobName: 'JobName',
|
|
35
|
+
status: 'Status',
|
|
36
|
+
timeCreatedAfter: 'TimeCreatedAfter',
|
|
37
|
+
timeCreatedBefore: 'TimeCreatedBefore',
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
static types(): { [key: string]: any } {
|
|
42
|
+
return {
|
|
43
|
+
jobId: 'string',
|
|
44
|
+
jobName: 'string',
|
|
45
|
+
status: 'string',
|
|
46
|
+
timeCreatedAfter: 'number',
|
|
47
|
+
timeCreatedBefore: 'number',
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
validate() {
|
|
52
|
+
super.validate();
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
constructor(map?: { [key: string]: any }) {
|
|
56
|
+
super(map);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export class ListJobsRequestSortBy extends $dara.Model {
|
|
61
|
+
/**
|
|
62
|
+
* @example
|
|
63
|
+
* time_start
|
|
64
|
+
*/
|
|
65
|
+
label?: string;
|
|
66
|
+
/**
|
|
67
|
+
* @example
|
|
68
|
+
* ASC
|
|
69
|
+
*/
|
|
70
|
+
order?: string;
|
|
71
|
+
static names(): { [key: string]: string } {
|
|
72
|
+
return {
|
|
73
|
+
label: 'Label',
|
|
74
|
+
order: 'Order',
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
static types(): { [key: string]: any } {
|
|
79
|
+
return {
|
|
80
|
+
label: 'string',
|
|
81
|
+
order: 'string',
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
validate() {
|
|
86
|
+
super.validate();
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
constructor(map?: { [key: string]: any }) {
|
|
90
|
+
super(map);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
7
94
|
export class ListJobsRequest extends $dara.Model {
|
|
8
95
|
filter?: ListJobsRequestFilter;
|
|
9
96
|
/**
|
|
@@ -1,8 +1,142 @@
|
|
|
1
1
|
// This file is auto-generated, don't edit it
|
|
2
2
|
import * as $dara from '@darabonba/typescript';
|
|
3
|
-
import { ListJobsResponseBodyJobList } from "./ListJobsResponseBodyJobList";
|
|
4
3
|
|
|
5
4
|
|
|
5
|
+
export class ListJobsResponseBodyJobListTags extends $dara.Model {
|
|
6
|
+
tagKey?: string;
|
|
7
|
+
tagValue?: string;
|
|
8
|
+
static names(): { [key: string]: string } {
|
|
9
|
+
return {
|
|
10
|
+
tagKey: 'TagKey',
|
|
11
|
+
tagValue: 'TagValue',
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
static types(): { [key: string]: any } {
|
|
16
|
+
return {
|
|
17
|
+
tagKey: 'string',
|
|
18
|
+
tagValue: 'string',
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
validate() {
|
|
23
|
+
super.validate();
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
constructor(map?: { [key: string]: any }) {
|
|
27
|
+
super(map);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export class ListJobsResponseBodyJobList extends $dara.Model {
|
|
32
|
+
appExtraInfo?: string;
|
|
33
|
+
appName?: string;
|
|
34
|
+
/**
|
|
35
|
+
* @example
|
|
36
|
+
* 2024-01-25 12:29:21
|
|
37
|
+
*/
|
|
38
|
+
createTime?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @example
|
|
41
|
+
* 2024-01-25 12:35:23
|
|
42
|
+
*/
|
|
43
|
+
endTime?: string;
|
|
44
|
+
/**
|
|
45
|
+
* @example
|
|
46
|
+
* 1
|
|
47
|
+
*/
|
|
48
|
+
executorCount?: number;
|
|
49
|
+
/**
|
|
50
|
+
* @example
|
|
51
|
+
* Demo
|
|
52
|
+
*/
|
|
53
|
+
jobDescription?: string;
|
|
54
|
+
/**
|
|
55
|
+
* @example
|
|
56
|
+
* job-xxx
|
|
57
|
+
*/
|
|
58
|
+
jobId?: string;
|
|
59
|
+
/**
|
|
60
|
+
* @example
|
|
61
|
+
* testJob
|
|
62
|
+
*/
|
|
63
|
+
jobName?: string;
|
|
64
|
+
/**
|
|
65
|
+
* @example
|
|
66
|
+
* 129**********
|
|
67
|
+
*/
|
|
68
|
+
ownerUid?: string;
|
|
69
|
+
/**
|
|
70
|
+
* @example
|
|
71
|
+
* 2024-01-25 12:29:23
|
|
72
|
+
*/
|
|
73
|
+
startTime?: string;
|
|
74
|
+
/**
|
|
75
|
+
* @example
|
|
76
|
+
* Running
|
|
77
|
+
*/
|
|
78
|
+
status?: string;
|
|
79
|
+
tags?: ListJobsResponseBodyJobListTags[];
|
|
80
|
+
/**
|
|
81
|
+
* @example
|
|
82
|
+
* 1
|
|
83
|
+
*/
|
|
84
|
+
taskCount?: number;
|
|
85
|
+
/**
|
|
86
|
+
* @example
|
|
87
|
+
* true
|
|
88
|
+
*/
|
|
89
|
+
taskSustainable?: boolean;
|
|
90
|
+
static names(): { [key: string]: string } {
|
|
91
|
+
return {
|
|
92
|
+
appExtraInfo: 'AppExtraInfo',
|
|
93
|
+
appName: 'AppName',
|
|
94
|
+
createTime: 'CreateTime',
|
|
95
|
+
endTime: 'EndTime',
|
|
96
|
+
executorCount: 'ExecutorCount',
|
|
97
|
+
jobDescription: 'JobDescription',
|
|
98
|
+
jobId: 'JobId',
|
|
99
|
+
jobName: 'JobName',
|
|
100
|
+
ownerUid: 'OwnerUid',
|
|
101
|
+
startTime: 'StartTime',
|
|
102
|
+
status: 'Status',
|
|
103
|
+
tags: 'Tags',
|
|
104
|
+
taskCount: 'TaskCount',
|
|
105
|
+
taskSustainable: 'TaskSustainable',
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
static types(): { [key: string]: any } {
|
|
110
|
+
return {
|
|
111
|
+
appExtraInfo: 'string',
|
|
112
|
+
appName: 'string',
|
|
113
|
+
createTime: 'string',
|
|
114
|
+
endTime: 'string',
|
|
115
|
+
executorCount: 'number',
|
|
116
|
+
jobDescription: 'string',
|
|
117
|
+
jobId: 'string',
|
|
118
|
+
jobName: 'string',
|
|
119
|
+
ownerUid: 'string',
|
|
120
|
+
startTime: 'string',
|
|
121
|
+
status: 'string',
|
|
122
|
+
tags: { 'type': 'array', 'itemType': ListJobsResponseBodyJobListTags },
|
|
123
|
+
taskCount: 'number',
|
|
124
|
+
taskSustainable: 'boolean',
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
validate() {
|
|
129
|
+
if(Array.isArray(this.tags)) {
|
|
130
|
+
$dara.Model.validateArray(this.tags);
|
|
131
|
+
}
|
|
132
|
+
super.validate();
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
constructor(map?: { [key: string]: any }) {
|
|
136
|
+
super(map);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
6
140
|
export class ListJobsResponseBody extends $dara.Model {
|
|
7
141
|
jobList?: ListJobsResponseBodyJobList[];
|
|
8
142
|
/**
|