@alicloud/pai-dlc20201203 1.4.2 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +41 -0
- package/dist/client.js +439 -355
- package/dist/client.js.map +1 -1
- package/package.json +4 -4
- package/src/client.ts +105 -0
package/dist/client.d.ts
CHANGED
|
@@ -762,7 +762,9 @@ export declare class Tensorboard extends $tea.Model {
|
|
|
762
762
|
requestId?: string;
|
|
763
763
|
status?: string;
|
|
764
764
|
summaryPath?: string;
|
|
765
|
+
tensorboardDataSources?: TensorboardDataSourceSpec[];
|
|
765
766
|
tensorboardId?: string;
|
|
767
|
+
tensorboardSpec?: TensorboardSpec;
|
|
766
768
|
tensorboardUrl?: string;
|
|
767
769
|
userId?: string;
|
|
768
770
|
static names(): {
|
|
@@ -775,6 +777,40 @@ export declare class Tensorboard extends $tea.Model {
|
|
|
775
777
|
[key: string]: any;
|
|
776
778
|
});
|
|
777
779
|
}
|
|
780
|
+
export declare class TensorboardDataSourceSpec extends $tea.Model {
|
|
781
|
+
dataSourceType?: string;
|
|
782
|
+
directoryName?: string;
|
|
783
|
+
fullSummaryPath?: string;
|
|
784
|
+
id?: string;
|
|
785
|
+
name?: string;
|
|
786
|
+
sourceType?: string;
|
|
787
|
+
summaryPath?: string;
|
|
788
|
+
uri?: string;
|
|
789
|
+
static names(): {
|
|
790
|
+
[key: string]: string;
|
|
791
|
+
};
|
|
792
|
+
static types(): {
|
|
793
|
+
[key: string]: any;
|
|
794
|
+
};
|
|
795
|
+
constructor(map?: {
|
|
796
|
+
[key: string]: any;
|
|
797
|
+
});
|
|
798
|
+
}
|
|
799
|
+
export declare class TensorboardSpec extends $tea.Model {
|
|
800
|
+
ecsType?: string;
|
|
801
|
+
securityGroupId?: string;
|
|
802
|
+
switchId?: string;
|
|
803
|
+
vpcId?: string;
|
|
804
|
+
static names(): {
|
|
805
|
+
[key: string]: string;
|
|
806
|
+
};
|
|
807
|
+
static types(): {
|
|
808
|
+
[key: string]: any;
|
|
809
|
+
};
|
|
810
|
+
constructor(map?: {
|
|
811
|
+
[key: string]: any;
|
|
812
|
+
});
|
|
813
|
+
}
|
|
778
814
|
export declare class Workspace extends $tea.Model {
|
|
779
815
|
creator?: string;
|
|
780
816
|
gmtCreateTime?: string;
|
|
@@ -870,6 +906,8 @@ export declare class CreateTensorboardRequest extends $tea.Model {
|
|
|
870
906
|
sourceType?: string;
|
|
871
907
|
summaryPath?: string;
|
|
872
908
|
summaryRelativePath?: string;
|
|
909
|
+
tensorboardDataSources?: TensorboardDataSourceSpec[];
|
|
910
|
+
tensorboardSpec?: TensorboardSpec;
|
|
873
911
|
uri?: string;
|
|
874
912
|
workspaceId?: string;
|
|
875
913
|
static names(): {
|
|
@@ -1550,6 +1588,7 @@ export declare class ListJobsRequest extends $tea.Model {
|
|
|
1550
1588
|
pageSize?: number;
|
|
1551
1589
|
pipelineId?: string;
|
|
1552
1590
|
resourceId?: string;
|
|
1591
|
+
resourceQuotaName?: string;
|
|
1553
1592
|
showOwn?: boolean;
|
|
1554
1593
|
sortBy?: string;
|
|
1555
1594
|
startTime?: string;
|
|
@@ -1583,6 +1622,7 @@ export declare class ListJobsShrinkRequest extends $tea.Model {
|
|
|
1583
1622
|
pageSize?: number;
|
|
1584
1623
|
pipelineId?: string;
|
|
1585
1624
|
resourceId?: string;
|
|
1625
|
+
resourceQuotaName?: string;
|
|
1586
1626
|
showOwn?: boolean;
|
|
1587
1627
|
sortBy?: string;
|
|
1588
1628
|
startTime?: string;
|
|
@@ -1638,6 +1678,7 @@ export declare class ListTensorboardsRequest extends $tea.Model {
|
|
|
1638
1678
|
order?: string;
|
|
1639
1679
|
pageNumber?: number;
|
|
1640
1680
|
pageSize?: number;
|
|
1681
|
+
paymentType?: string;
|
|
1641
1682
|
showOwn?: boolean;
|
|
1642
1683
|
sortBy?: string;
|
|
1643
1684
|
sourceId?: string;
|