ksyun-sdk-node 1.5.23 → 1.5.26

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.
@@ -760,7 +760,7 @@ module.exports = class Client extends BaseClient {
760
760
  },
761
761
  SubmitRefreshCaches: {
762
762
  url: "/",
763
- method: "GET",
763
+ method: "POST",
764
764
  config: {
765
765
  query: {
766
766
  Version: "V3",
@@ -777,7 +777,7 @@ module.exports = class Client extends BaseClient {
777
777
  },
778
778
  SubmitPreloadCaches: {
779
779
  url: "/",
780
- method: "GET",
780
+ method: "POST",
781
781
  config: {
782
782
  query: {
783
783
  Version: "V3",
@@ -811,6 +811,30 @@ module.exports = class Client extends BaseClient {
811
811
  ServerCertificate: "String",
812
812
  PrivateKey: "String"
813
813
  }
814
+ },
815
+ GetRefreshOrPreloadTask: {
816
+ url: "/",
817
+ method: "POST",
818
+ config: {
819
+ query: {
820
+ Version: "V3",
821
+ Action: "GetRefreshOrPreloadTask"
822
+ },
823
+ headers: {
824
+ "Content-Type": "application/json"
825
+ }
826
+ },
827
+ paramsType: {
828
+ StartTime: "String",
829
+ EndTime: "String",
830
+ TaskId: "String",
831
+ DomainName: "String",
832
+ Urls: "Array",
833
+ Type: "String",
834
+ SubType: "String",
835
+ PageSize: "Long",
836
+ PageNumber: "Long"
837
+ }
814
838
  }
815
839
  });
816
840
  }
@@ -667,6 +667,27 @@ module.exports = class Client extends BaseClient {
667
667
  ChartRepoPassword: "String",
668
668
  Values: "String"
669
669
  }
670
+ },
671
+ CreateWebSocketPublicUri: {
672
+ url: "/",
673
+ method: "GET",
674
+ config: {
675
+ query: {
676
+ Version: "2019-08-06",
677
+ Action: "CreateWebSocketPublicUri"
678
+ },
679
+ headers: {
680
+ "Content-Type": "application/x-www-form-urlencoded"
681
+ }
682
+ },
683
+ paramsType: {
684
+ ClusterId: "String",
685
+ Namespace: "String",
686
+ PodName: "String",
687
+ ContainerName: "String",
688
+ Command: "String",
689
+ Tty: "Boolean"
690
+ }
670
691
  }
671
692
  });
672
693
  }
@@ -69,7 +69,9 @@ module.exports = class Client extends BaseClient {
69
69
  LogConfig: "Object",
70
70
  LivenessProbeConfig: "Object",
71
71
  ReadinessProbeConfig: "Object",
72
- Layers: "Array"
72
+ Layers: "Array",
73
+ CodeType: "String",
74
+ CustomContainerConfig: "Object"
73
75
  }
74
76
  },
75
77
  CheckFunctionService: {
@@ -179,7 +181,8 @@ module.exports = class Client extends BaseClient {
179
181
  LogConfig: "Object",
180
182
  LivenessProbeConfig: "Object",
181
183
  ReadinessProbeConfig: "Object",
182
- Layers: "Array"
184
+ Layers: "Array",
185
+ CustomContainerConfig: "Object"
183
186
  }
184
187
  },
185
188
  DescribeTriggers: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ksyun-sdk-node",
3
- "version": "1.5.23",
3
+ "version": "1.5.26",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -753,7 +753,7 @@ module.exports = class Client extends BaseClient {
753
753
  },
754
754
  SubmitRefreshCaches: {
755
755
  url: "/",
756
- method: "GET",
756
+ method: "POST",
757
757
  config: {
758
758
  query: {
759
759
  Version: "V3",
@@ -770,7 +770,7 @@ module.exports = class Client extends BaseClient {
770
770
  },
771
771
  SubmitPreloadCaches: {
772
772
  url: "/",
773
- method: "GET",
773
+ method: "POST",
774
774
  config: {
775
775
  query: {
776
776
  Version: "V3",
@@ -805,5 +805,29 @@ module.exports = class Client extends BaseClient {
805
805
  PrivateKey: "String",
806
806
  },
807
807
  },
808
+ GetRefreshOrPreloadTask: {
809
+ url: "/",
810
+ method: "POST",
811
+ config: {
812
+ query: {
813
+ Version: "V3",
814
+ Action: "GetRefreshOrPreloadTask",
815
+ },
816
+ headers: {
817
+ "Content-Type": "application/json",
818
+ },
819
+ },
820
+ paramsType: {
821
+ StartTime: "String",
822
+ EndTime: "String",
823
+ TaskId: "String",
824
+ DomainName: "String",
825
+ Urls: "Array",
826
+ Type: "String",
827
+ SubType: "String",
828
+ PageSize: "Long",
829
+ PageNumber: "Long",
830
+ },
831
+ },
808
832
  };
809
833
  };
@@ -661,5 +661,26 @@ module.exports = class Client extends BaseClient {
661
661
  Values: "String",
662
662
  },
663
663
  },
664
+ CreateWebSocketPublicUri: {
665
+ url: "/",
666
+ method: "GET",
667
+ config: {
668
+ query: {
669
+ Version: "2019-08-06",
670
+ Action: "CreateWebSocketPublicUri",
671
+ },
672
+ headers: {
673
+ "Content-Type": "application/x-www-form-urlencoded",
674
+ },
675
+ },
676
+ paramsType: {
677
+ ClusterId: "String",
678
+ Namespace: "String",
679
+ PodName: "String",
680
+ ContainerName: "String",
681
+ Command: "String",
682
+ Tty: "Boolean",
683
+ },
684
+ },
664
685
  };
665
686
  };
@@ -63,6 +63,8 @@ module.exports = class Client extends BaseClient {
63
63
  LivenessProbeConfig: "Object",
64
64
  ReadinessProbeConfig: "Object",
65
65
  Layers: "Array",
66
+ CodeType: "String",
67
+ CustomContainerConfig: "Object",
66
68
  },
67
69
  },
68
70
  CheckFunctionService: {
@@ -173,6 +175,7 @@ module.exports = class Client extends BaseClient {
173
175
  LivenessProbeConfig: "Object",
174
176
  ReadinessProbeConfig: "Object",
175
177
  Layers: "Array",
178
+ CustomContainerConfig: "Object",
176
179
  },
177
180
  },
178
181
  DescribeTriggers: {