tencentcloud-sdk-nodejs-tsf 4.0.946 → 4.0.984
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/package.json +1 -1
- package/products.md +154 -150
- package/src/services/tsf/v20180326/tsf_client.ts +21 -5
- package/src/services/tsf/v20180326/tsf_models.ts +654 -82
- package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +6 -3
- package/tencentcloud/services/tsf/v20180326/tsf_client.js +5 -2
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +641 -82
|
@@ -575,17 +575,13 @@ export interface DescribeConfigTemplateResponse {
|
|
|
575
575
|
RequestId?: string;
|
|
576
576
|
}
|
|
577
577
|
/**
|
|
578
|
-
*
|
|
578
|
+
* ContinueRunFailedTaskBatch请求参数结构体
|
|
579
579
|
*/
|
|
580
|
-
export interface
|
|
581
|
-
/**
|
|
582
|
-
* 返回个数
|
|
583
|
-
*/
|
|
584
|
-
TotalCount: number;
|
|
580
|
+
export interface ContinueRunFailedTaskBatchRequest {
|
|
585
581
|
/**
|
|
586
|
-
*
|
|
582
|
+
* 批次ID。
|
|
587
583
|
*/
|
|
588
|
-
|
|
584
|
+
BatchId: string;
|
|
589
585
|
}
|
|
590
586
|
/**
|
|
591
587
|
* DescribeDeliveryConfig返回参数结构体
|
|
@@ -600,6 +596,21 @@ export interface DescribeDeliveryConfigResponse {
|
|
|
600
596
|
*/
|
|
601
597
|
RequestId?: string;
|
|
602
598
|
}
|
|
599
|
+
/**
|
|
600
|
+
* 强制调度配置
|
|
601
|
+
*/
|
|
602
|
+
export interface ForceSchedule {
|
|
603
|
+
/**
|
|
604
|
+
* -
|
|
605
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
606
|
+
*/
|
|
607
|
+
AffinityList?: Array<Affinity>;
|
|
608
|
+
/**
|
|
609
|
+
* -
|
|
610
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
611
|
+
*/
|
|
612
|
+
AntiAffinityList?: Array<Affinity>;
|
|
613
|
+
}
|
|
603
614
|
/**
|
|
604
615
|
* 简单应用
|
|
605
616
|
*/
|
|
@@ -608,66 +619,81 @@ export interface SimpleApplication {
|
|
|
608
619
|
* 应用ID
|
|
609
620
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
610
621
|
*/
|
|
611
|
-
ApplicationId
|
|
622
|
+
ApplicationId?: string;
|
|
612
623
|
/**
|
|
613
624
|
* 应用名称
|
|
614
625
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
615
626
|
*/
|
|
616
|
-
ApplicationName
|
|
627
|
+
ApplicationName?: string;
|
|
617
628
|
/**
|
|
618
629
|
* 应用类型
|
|
619
630
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
620
631
|
*/
|
|
621
|
-
ApplicationType
|
|
632
|
+
ApplicationType?: string;
|
|
622
633
|
/**
|
|
623
634
|
* 应用微服务类型
|
|
624
635
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
625
636
|
*/
|
|
626
|
-
MicroserviceType
|
|
637
|
+
MicroserviceType?: string;
|
|
627
638
|
/**
|
|
628
639
|
* ApplicationDesc
|
|
629
640
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
630
641
|
*/
|
|
631
|
-
ApplicationDesc
|
|
642
|
+
ApplicationDesc?: string;
|
|
632
643
|
/**
|
|
633
644
|
* ProgLang
|
|
634
645
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
635
646
|
*/
|
|
636
|
-
ProgLang
|
|
647
|
+
ProgLang?: string;
|
|
637
648
|
/**
|
|
638
649
|
* ApplicationResourceType
|
|
639
650
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
640
651
|
*/
|
|
641
|
-
ApplicationResourceType
|
|
652
|
+
ApplicationResourceType?: string;
|
|
642
653
|
/**
|
|
643
654
|
* CreateTime
|
|
644
655
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
645
656
|
*/
|
|
646
|
-
CreateTime
|
|
657
|
+
CreateTime?: string;
|
|
647
658
|
/**
|
|
648
659
|
* UpdateTime
|
|
649
660
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
650
661
|
*/
|
|
651
|
-
UpdateTime
|
|
662
|
+
UpdateTime?: string;
|
|
652
663
|
/**
|
|
653
664
|
* ApigatewayServiceId
|
|
654
665
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
655
666
|
*/
|
|
656
|
-
ApigatewayServiceId
|
|
667
|
+
ApigatewayServiceId?: string;
|
|
657
668
|
/**
|
|
658
669
|
* ApplicationRuntimeType
|
|
659
670
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
660
671
|
*/
|
|
661
|
-
ApplicationRuntimeType
|
|
672
|
+
ApplicationRuntimeType?: string;
|
|
673
|
+
/**
|
|
674
|
+
* Apm业务系统id
|
|
675
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
676
|
+
*/
|
|
677
|
+
AmpInstanceId?: string;
|
|
678
|
+
/**
|
|
679
|
+
* Apm业务系统Name
|
|
680
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
681
|
+
*/
|
|
682
|
+
ApmInstanceName?: string;
|
|
662
683
|
}
|
|
663
684
|
/**
|
|
664
|
-
*
|
|
685
|
+
* DescribeSimpleNamespaces返回参数结构体
|
|
665
686
|
*/
|
|
666
|
-
export interface
|
|
687
|
+
export interface DescribeSimpleNamespacesResponse {
|
|
667
688
|
/**
|
|
668
|
-
*
|
|
689
|
+
* 命名空间分页列表
|
|
690
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
669
691
|
*/
|
|
670
|
-
|
|
692
|
+
Result?: TsfPageNamespace;
|
|
693
|
+
/**
|
|
694
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
695
|
+
*/
|
|
696
|
+
RequestId?: string;
|
|
671
697
|
}
|
|
672
698
|
/**
|
|
673
699
|
* DescribeSimpleClusters返回参数结构体
|
|
@@ -820,6 +846,21 @@ export interface ReleaseFileConfigRequest {
|
|
|
820
846
|
*/
|
|
821
847
|
ReleaseDesc?: string;
|
|
822
848
|
}
|
|
849
|
+
/**
|
|
850
|
+
* 标签
|
|
851
|
+
*/
|
|
852
|
+
export interface Tag {
|
|
853
|
+
/**
|
|
854
|
+
* 标签键
|
|
855
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
856
|
+
*/
|
|
857
|
+
TagKey?: string;
|
|
858
|
+
/**
|
|
859
|
+
* 标签值
|
|
860
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
861
|
+
*/
|
|
862
|
+
TagValue?: string;
|
|
863
|
+
}
|
|
823
864
|
/**
|
|
824
865
|
* DescribeInvocationMetricDataDimension返回参数结构体
|
|
825
866
|
*/
|
|
@@ -2768,18 +2809,24 @@ export interface DescribePkgsResponse {
|
|
|
2768
2809
|
RequestId?: string;
|
|
2769
2810
|
}
|
|
2770
2811
|
/**
|
|
2771
|
-
*
|
|
2812
|
+
* ConfigMap可选项
|
|
2772
2813
|
*/
|
|
2773
|
-
export interface
|
|
2814
|
+
export interface ConfigMapOption {
|
|
2774
2815
|
/**
|
|
2775
|
-
*
|
|
2816
|
+
* -
|
|
2776
2817
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2777
2818
|
*/
|
|
2778
|
-
|
|
2819
|
+
Key?: string;
|
|
2779
2820
|
/**
|
|
2780
|
-
*
|
|
2821
|
+
* -
|
|
2822
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2781
2823
|
*/
|
|
2782
|
-
|
|
2824
|
+
Path?: string;
|
|
2825
|
+
/**
|
|
2826
|
+
* -
|
|
2827
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2828
|
+
*/
|
|
2829
|
+
Mode?: string;
|
|
2783
2830
|
}
|
|
2784
2831
|
/**
|
|
2785
2832
|
* 需要删除的镜像版本
|
|
@@ -2887,87 +2934,97 @@ export interface ImageRepository {
|
|
|
2887
2934
|
* 仓库名,含命名空间,如tsf/nginx
|
|
2888
2935
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2889
2936
|
*/
|
|
2890
|
-
Reponame
|
|
2937
|
+
Reponame?: string;
|
|
2891
2938
|
/**
|
|
2892
2939
|
* 仓库类型
|
|
2893
2940
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2894
2941
|
*/
|
|
2895
|
-
Repotype
|
|
2942
|
+
Repotype?: string;
|
|
2896
2943
|
/**
|
|
2897
2944
|
* 镜像版本数
|
|
2898
2945
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2899
2946
|
*/
|
|
2900
|
-
TagCount
|
|
2947
|
+
TagCount?: number;
|
|
2901
2948
|
/**
|
|
2902
2949
|
* 是否公共,1:公有,0:私有
|
|
2903
2950
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2904
2951
|
*/
|
|
2905
|
-
IsPublic
|
|
2952
|
+
IsPublic?: number;
|
|
2906
2953
|
/**
|
|
2907
2954
|
* 是否被用户收藏。true:是,false:否
|
|
2908
2955
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2909
2956
|
*/
|
|
2910
|
-
IsUserFavor
|
|
2957
|
+
IsUserFavor?: boolean;
|
|
2911
2958
|
/**
|
|
2912
2959
|
* 是否是腾讯云官方仓库。 是否是腾讯云官方仓库。true:是,false:否
|
|
2913
2960
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2914
2961
|
*/
|
|
2915
|
-
IsQcloudOfficial
|
|
2962
|
+
IsQcloudOfficial?: boolean;
|
|
2916
2963
|
/**
|
|
2917
2964
|
* 被所有用户收藏次数
|
|
2918
2965
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2919
2966
|
*/
|
|
2920
|
-
FavorCount
|
|
2967
|
+
FavorCount?: number;
|
|
2921
2968
|
/**
|
|
2922
2969
|
* 拉取次数
|
|
2923
2970
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2924
2971
|
*/
|
|
2925
|
-
PullCount
|
|
2972
|
+
PullCount?: number;
|
|
2926
2973
|
/**
|
|
2927
2974
|
* 描述内容
|
|
2928
2975
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2929
2976
|
*/
|
|
2930
|
-
Description
|
|
2977
|
+
Description?: string;
|
|
2931
2978
|
/**
|
|
2932
2979
|
* 创建时间
|
|
2933
2980
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2934
2981
|
*/
|
|
2935
|
-
CreationTime
|
|
2982
|
+
CreationTime?: string;
|
|
2936
2983
|
/**
|
|
2937
2984
|
* 更新时间
|
|
2938
2985
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2939
2986
|
*/
|
|
2940
|
-
UpdateTime
|
|
2987
|
+
UpdateTime?: string;
|
|
2941
2988
|
/**
|
|
2942
2989
|
* TcrRepoInfo值
|
|
2943
2990
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2944
2991
|
*/
|
|
2945
|
-
TcrRepoInfo
|
|
2992
|
+
TcrRepoInfo?: TcrRepoInfo;
|
|
2946
2993
|
/**
|
|
2947
2994
|
* TcrBindingId值
|
|
2948
2995
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2949
2996
|
*/
|
|
2950
|
-
TcrBindingId
|
|
2997
|
+
TcrBindingId?: number;
|
|
2951
2998
|
/**
|
|
2952
2999
|
* applicationid值
|
|
2953
3000
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2954
3001
|
*/
|
|
2955
|
-
ApplicationId
|
|
3002
|
+
ApplicationId?: string;
|
|
2956
3003
|
/**
|
|
2957
3004
|
* ApplicationName值(废弃)
|
|
2958
3005
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2959
3006
|
*/
|
|
2960
|
-
ApplicationName
|
|
3007
|
+
ApplicationName?: ScalableRule;
|
|
2961
3008
|
/**
|
|
2962
3009
|
* ApplicationName值
|
|
2963
3010
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2964
3011
|
*/
|
|
2965
|
-
ApplicationNameReal
|
|
3012
|
+
ApplicationNameReal?: string;
|
|
2966
3013
|
/**
|
|
2967
3014
|
* 是否公共,1:公有,0:私有
|
|
2968
3015
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2969
3016
|
*/
|
|
2970
3017
|
Public?: number;
|
|
3018
|
+
/**
|
|
3019
|
+
* 创建方式:manual | automatic
|
|
3020
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3021
|
+
*/
|
|
3022
|
+
CreateMode?: string;
|
|
3023
|
+
/**
|
|
3024
|
+
* 仓库名,等同reponame字段
|
|
3025
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3026
|
+
*/
|
|
3027
|
+
RepoName?: string;
|
|
2971
3028
|
}
|
|
2972
3029
|
/**
|
|
2973
3030
|
* DescribeOverviewInvocation返回参数结构体
|
|
@@ -2983,6 +3040,26 @@ export interface DescribeOverviewInvocationResponse {
|
|
|
2983
3040
|
*/
|
|
2984
3041
|
RequestId?: string;
|
|
2985
3042
|
}
|
|
3043
|
+
/**
|
|
3044
|
+
* 通用选项
|
|
3045
|
+
*/
|
|
3046
|
+
export interface CommonOption {
|
|
3047
|
+
/**
|
|
3048
|
+
* -
|
|
3049
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3050
|
+
*/
|
|
3051
|
+
LabelName?: string;
|
|
3052
|
+
/**
|
|
3053
|
+
* -
|
|
3054
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3055
|
+
*/
|
|
3056
|
+
Operator?: string;
|
|
3057
|
+
/**
|
|
3058
|
+
* -
|
|
3059
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3060
|
+
*/
|
|
3061
|
+
LabelValue?: string;
|
|
3062
|
+
}
|
|
2986
3063
|
/**
|
|
2987
3064
|
* CreatePublicConfig返回参数结构体
|
|
2988
3065
|
*/
|
|
@@ -3424,7 +3501,7 @@ export interface DescribeSimpleApplicationsResponse {
|
|
|
3424
3501
|
* 简单应用分页对象
|
|
3425
3502
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3426
3503
|
*/
|
|
3427
|
-
Result
|
|
3504
|
+
Result?: TsfPageSimpleApplication;
|
|
3428
3505
|
/**
|
|
3429
3506
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3430
3507
|
*/
|
|
@@ -3670,6 +3747,10 @@ export interface DescribeSimpleApplicationsRequest {
|
|
|
3670
3747
|
* 无
|
|
3671
3748
|
*/
|
|
3672
3749
|
DisableProgramAuthCheck?: boolean;
|
|
3750
|
+
/**
|
|
3751
|
+
* 查询指定微服务类型的应用列表
|
|
3752
|
+
*/
|
|
3753
|
+
MicroserviceTypeList?: Array<string>;
|
|
3673
3754
|
}
|
|
3674
3755
|
/**
|
|
3675
3756
|
* DescribeDeliveryConfigByGroupId返回参数结构体
|
|
@@ -4142,7 +4223,7 @@ export interface DescribePodInstancesResponse {
|
|
|
4142
4223
|
/**
|
|
4143
4224
|
* 查询的权限数据对象
|
|
4144
4225
|
*/
|
|
4145
|
-
Result
|
|
4226
|
+
Result?: GroupPodResult;
|
|
4146
4227
|
/**
|
|
4147
4228
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4148
4229
|
*/
|
|
@@ -4323,6 +4404,10 @@ export interface CreateGroupRequest {
|
|
|
4323
4404
|
* 部署组备注
|
|
4324
4405
|
*/
|
|
4325
4406
|
Alias?: string;
|
|
4407
|
+
/**
|
|
4408
|
+
* 标签列表
|
|
4409
|
+
*/
|
|
4410
|
+
Tags?: Array<Tag>;
|
|
4326
4411
|
}
|
|
4327
4412
|
/**
|
|
4328
4413
|
* DeleteCluster请求参数结构体
|
|
@@ -4747,6 +4832,22 @@ export interface DescribeContainerEventsRequest {
|
|
|
4747
4832
|
* 当类型是 instance 时需要
|
|
4748
4833
|
*/
|
|
4749
4834
|
GroupId?: string;
|
|
4835
|
+
/**
|
|
4836
|
+
* event的资源kind
|
|
4837
|
+
*/
|
|
4838
|
+
Kind?: string;
|
|
4839
|
+
/**
|
|
4840
|
+
* event 的type
|
|
4841
|
+
*/
|
|
4842
|
+
Type?: string;
|
|
4843
|
+
/**
|
|
4844
|
+
* 资源名称
|
|
4845
|
+
*/
|
|
4846
|
+
ResourceName?: string;
|
|
4847
|
+
/**
|
|
4848
|
+
* 关键词查询
|
|
4849
|
+
*/
|
|
4850
|
+
SearchWord?: string;
|
|
4750
4851
|
}
|
|
4751
4852
|
/**
|
|
4752
4853
|
* DisableUnitRule请求参数结构体
|
|
@@ -5348,6 +5449,16 @@ export interface ValueFrom {
|
|
|
5348
5449
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5349
5450
|
*/
|
|
5350
5451
|
ResourceFieldRef?: ResourceFieldRef;
|
|
5452
|
+
/**
|
|
5453
|
+
* k8s env的configMapKeyRef
|
|
5454
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5455
|
+
*/
|
|
5456
|
+
ConfigMapKeyRef?: CommonRef;
|
|
5457
|
+
/**
|
|
5458
|
+
* k8s env 的 secretKeyRef
|
|
5459
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5460
|
+
*/
|
|
5461
|
+
SecretKeyRef?: CommonRef;
|
|
5351
5462
|
}
|
|
5352
5463
|
/**
|
|
5353
5464
|
* ShrinkInstances返回参数结构体
|
|
@@ -5753,6 +5864,16 @@ export interface VolumeInfo {
|
|
|
5753
5864
|
* 数据卷配置
|
|
5754
5865
|
*/
|
|
5755
5866
|
VolumeConfig?: string;
|
|
5867
|
+
/**
|
|
5868
|
+
* -
|
|
5869
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5870
|
+
*/
|
|
5871
|
+
ConfigMapOptions?: Array<ConfigMapOption>;
|
|
5872
|
+
/**
|
|
5873
|
+
* -
|
|
5874
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5875
|
+
*/
|
|
5876
|
+
EmptyDirOption?: EmptyDirOption;
|
|
5756
5877
|
}
|
|
5757
5878
|
/**
|
|
5758
5879
|
* UpdateApiTimeouts请求参数结构体
|
|
@@ -6240,7 +6361,7 @@ export interface DescribeImageRepositoryRequest {
|
|
|
6240
6361
|
*/
|
|
6241
6362
|
TcrRepoInfo?: TcrRepoInfo;
|
|
6242
6363
|
/**
|
|
6243
|
-
*
|
|
6364
|
+
* 镜像仓库名称
|
|
6244
6365
|
*/
|
|
6245
6366
|
RepoName?: string;
|
|
6246
6367
|
}
|
|
@@ -6630,6 +6751,21 @@ export interface UpdateConfigTemplateResponse {
|
|
|
6630
6751
|
*/
|
|
6631
6752
|
RequestId?: string;
|
|
6632
6753
|
}
|
|
6754
|
+
/**
|
|
6755
|
+
* 尽量调度
|
|
6756
|
+
*/
|
|
6757
|
+
export interface TrySchedule {
|
|
6758
|
+
/**
|
|
6759
|
+
* -
|
|
6760
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6761
|
+
*/
|
|
6762
|
+
AffinityList?: Array<Affinity>;
|
|
6763
|
+
/**
|
|
6764
|
+
* -
|
|
6765
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6766
|
+
*/
|
|
6767
|
+
AntiAffinityList?: Array<Affinity>;
|
|
6768
|
+
}
|
|
6633
6769
|
/**
|
|
6634
6770
|
* BindPlugin请求参数结构体
|
|
6635
6771
|
*/
|
|
@@ -7527,6 +7663,26 @@ export interface CreateApplicationRequest {
|
|
|
7527
7663
|
* 无
|
|
7528
7664
|
*/
|
|
7529
7665
|
ProgramIdList?: Array<string>;
|
|
7666
|
+
/**
|
|
7667
|
+
* apm业务系统id
|
|
7668
|
+
*/
|
|
7669
|
+
ApmInstanceId?: string;
|
|
7670
|
+
/**
|
|
7671
|
+
* 编程语言
|
|
7672
|
+
*/
|
|
7673
|
+
ProgramLanguage?: string;
|
|
7674
|
+
/**
|
|
7675
|
+
* 开发框架
|
|
7676
|
+
*/
|
|
7677
|
+
FrameworkType?: string;
|
|
7678
|
+
/**
|
|
7679
|
+
* 注册配置治理
|
|
7680
|
+
*/
|
|
7681
|
+
ServiceGovernanceConfig?: ServiceGovernanceConfig;
|
|
7682
|
+
/**
|
|
7683
|
+
* 是否创建并关联同名镜像仓库
|
|
7684
|
+
*/
|
|
7685
|
+
CreateSameNameImageRepository?: boolean;
|
|
7530
7686
|
}
|
|
7531
7687
|
/**
|
|
7532
7688
|
* 服务统计结果集
|
|
@@ -7784,7 +7940,7 @@ export interface CreateApplicationResponse {
|
|
|
7784
7940
|
* 应用ID
|
|
7785
7941
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7786
7942
|
*/
|
|
7787
|
-
Result
|
|
7943
|
+
Result?: string;
|
|
7788
7944
|
/**
|
|
7789
7945
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7790
7946
|
*/
|
|
@@ -8486,6 +8642,71 @@ export interface ServiceSetting {
|
|
|
8486
8642
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8487
8643
|
*/
|
|
8488
8644
|
SessionAffinityTimeoutSeconds?: number;
|
|
8645
|
+
/**
|
|
8646
|
+
* 服务名称
|
|
8647
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8648
|
+
*/
|
|
8649
|
+
ServiceName?: string;
|
|
8650
|
+
/**
|
|
8651
|
+
* 外部流量策略
|
|
8652
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8653
|
+
*/
|
|
8654
|
+
ExternalTrafficStrategy?: string;
|
|
8655
|
+
/**
|
|
8656
|
+
* 外部流量策略
|
|
8657
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8658
|
+
*/
|
|
8659
|
+
ExternalTrafficPolicy?: string;
|
|
8660
|
+
/**
|
|
8661
|
+
* 负载均衡提供者
|
|
8662
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8663
|
+
*/
|
|
8664
|
+
LoadBalancerProvisioner?: string;
|
|
8665
|
+
/**
|
|
8666
|
+
* 负载均衡类型
|
|
8667
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8668
|
+
*/
|
|
8669
|
+
LoadBalancingType?: string;
|
|
8670
|
+
/**
|
|
8671
|
+
* k8s负载均衡内网vip
|
|
8672
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8673
|
+
*/
|
|
8674
|
+
ClusterIp?: string;
|
|
8675
|
+
/**
|
|
8676
|
+
* 禁用服务Int记录
|
|
8677
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8678
|
+
*/
|
|
8679
|
+
DisableServiceInt?: number;
|
|
8680
|
+
/**
|
|
8681
|
+
* 开启SessionAffinity Int记录
|
|
8682
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8683
|
+
*/
|
|
8684
|
+
OpenSessionAffinityInt?: number;
|
|
8685
|
+
/**
|
|
8686
|
+
* 开启HeadlessService int记录
|
|
8687
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8688
|
+
*/
|
|
8689
|
+
HeadlessServiceInt?: number;
|
|
8690
|
+
/**
|
|
8691
|
+
* 服务名称
|
|
8692
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8693
|
+
*/
|
|
8694
|
+
Name?: string;
|
|
8695
|
+
/**
|
|
8696
|
+
* VPC网络ID
|
|
8697
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8698
|
+
*/
|
|
8699
|
+
VpcId?: string;
|
|
8700
|
+
/**
|
|
8701
|
+
* 负载均衡VIP
|
|
8702
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8703
|
+
*/
|
|
8704
|
+
LoadBalancingIp?: string;
|
|
8705
|
+
/**
|
|
8706
|
+
* 负载均衡id
|
|
8707
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8708
|
+
*/
|
|
8709
|
+
LoadBalancerId?: string;
|
|
8489
8710
|
}
|
|
8490
8711
|
/**
|
|
8491
8712
|
* ModifyUploadInfo请求参数结构体
|
|
@@ -8569,6 +8790,26 @@ export interface DescribeInstancesResponse {
|
|
|
8569
8790
|
*/
|
|
8570
8791
|
RequestId?: string;
|
|
8571
8792
|
}
|
|
8793
|
+
/**
|
|
8794
|
+
* 打散调度规则
|
|
8795
|
+
*/
|
|
8796
|
+
export interface AvailableZoneScatterScheduleRule {
|
|
8797
|
+
/**
|
|
8798
|
+
* -
|
|
8799
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8800
|
+
*/
|
|
8801
|
+
ScatterDimension?: string;
|
|
8802
|
+
/**
|
|
8803
|
+
* -
|
|
8804
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8805
|
+
*/
|
|
8806
|
+
MaxUnbalanceQuantity?: number;
|
|
8807
|
+
/**
|
|
8808
|
+
* -
|
|
8809
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8810
|
+
*/
|
|
8811
|
+
IsForceSchedule?: boolean;
|
|
8812
|
+
}
|
|
8572
8813
|
/**
|
|
8573
8814
|
* CreatePathRewritesWithDetailResp请求参数结构体
|
|
8574
8815
|
*/
|
|
@@ -9202,6 +9443,19 @@ export interface TsfPageUnitNamespace {
|
|
|
9202
9443
|
*/
|
|
9203
9444
|
Content: Array<UnitNamespace>;
|
|
9204
9445
|
}
|
|
9446
|
+
/**
|
|
9447
|
+
* 分页的 ContainerEvent
|
|
9448
|
+
*/
|
|
9449
|
+
export interface TsfPageContainerEvent {
|
|
9450
|
+
/**
|
|
9451
|
+
* 返回个数
|
|
9452
|
+
*/
|
|
9453
|
+
TotalCount: number;
|
|
9454
|
+
/**
|
|
9455
|
+
* events 数组
|
|
9456
|
+
*/
|
|
9457
|
+
Content: Array<ContainerEvent>;
|
|
9458
|
+
}
|
|
9205
9459
|
/**
|
|
9206
9460
|
* CreateMicroserviceWithDetailResp请求参数结构体
|
|
9207
9461
|
*/
|
|
@@ -9354,6 +9608,61 @@ export interface SchedulingStrategy {
|
|
|
9354
9608
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
9355
9609
|
*/
|
|
9356
9610
|
Type: string;
|
|
9611
|
+
/**
|
|
9612
|
+
* -
|
|
9613
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9614
|
+
*/
|
|
9615
|
+
NodeScheduleStrategyType?: string;
|
|
9616
|
+
/**
|
|
9617
|
+
* -
|
|
9618
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9619
|
+
*/
|
|
9620
|
+
NodeScheduleOptions?: Array<CommonOption>;
|
|
9621
|
+
/**
|
|
9622
|
+
* -
|
|
9623
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9624
|
+
*/
|
|
9625
|
+
StrongAffinityList?: Array<CommonOption>;
|
|
9626
|
+
/**
|
|
9627
|
+
* -
|
|
9628
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9629
|
+
*/
|
|
9630
|
+
WeakAffinityList?: Array<CommonOption>;
|
|
9631
|
+
/**
|
|
9632
|
+
* -
|
|
9633
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9634
|
+
*/
|
|
9635
|
+
WeakAffinityWeight?: number;
|
|
9636
|
+
/**
|
|
9637
|
+
* -
|
|
9638
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9639
|
+
*/
|
|
9640
|
+
AvailableZoneScatterScheduleType?: string;
|
|
9641
|
+
/**
|
|
9642
|
+
* -
|
|
9643
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9644
|
+
*/
|
|
9645
|
+
AvailableZoneScatterScheduleRules?: Array<AvailableZoneScatterScheduleRule>;
|
|
9646
|
+
/**
|
|
9647
|
+
* -
|
|
9648
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9649
|
+
*/
|
|
9650
|
+
PodScheduleStrategyType?: string;
|
|
9651
|
+
/**
|
|
9652
|
+
* -
|
|
9653
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9654
|
+
*/
|
|
9655
|
+
CustomPodSchedule?: CustomPodSchedule;
|
|
9656
|
+
/**
|
|
9657
|
+
* -
|
|
9658
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9659
|
+
*/
|
|
9660
|
+
TolerateScheduleType?: string;
|
|
9661
|
+
/**
|
|
9662
|
+
* -
|
|
9663
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9664
|
+
*/
|
|
9665
|
+
CustomTolerateSchedules?: Array<CustomTolerateSchedule>;
|
|
9357
9666
|
}
|
|
9358
9667
|
/**
|
|
9359
9668
|
* 网关部署组、分组、API列表数据
|
|
@@ -9689,6 +9998,36 @@ export interface DescribeTaskRecordsRequest {
|
|
|
9689
9998
|
*/
|
|
9690
9999
|
Ids?: Array<string>;
|
|
9691
10000
|
}
|
|
10001
|
+
/**
|
|
10002
|
+
* 自定义容忍调度规则列表
|
|
10003
|
+
*/
|
|
10004
|
+
export interface CustomTolerateSchedule {
|
|
10005
|
+
/**
|
|
10006
|
+
* -
|
|
10007
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10008
|
+
*/
|
|
10009
|
+
Key?: string;
|
|
10010
|
+
/**
|
|
10011
|
+
* -
|
|
10012
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10013
|
+
*/
|
|
10014
|
+
Operator?: string;
|
|
10015
|
+
/**
|
|
10016
|
+
* -
|
|
10017
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10018
|
+
*/
|
|
10019
|
+
Value?: string;
|
|
10020
|
+
/**
|
|
10021
|
+
* -
|
|
10022
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10023
|
+
*/
|
|
10024
|
+
Effect?: string;
|
|
10025
|
+
/**
|
|
10026
|
+
* -
|
|
10027
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10028
|
+
*/
|
|
10029
|
+
TolerationSeconds?: number;
|
|
10030
|
+
}
|
|
9692
10031
|
/**
|
|
9693
10032
|
* ModifyContainerGroup返回参数结构体
|
|
9694
10033
|
*/
|
|
@@ -9705,6 +10044,41 @@ export interface ModifyContainerGroupResponse {
|
|
|
9705
10044
|
*/
|
|
9706
10045
|
RequestId?: string;
|
|
9707
10046
|
}
|
|
10047
|
+
/**
|
|
10048
|
+
* 独占实例
|
|
10049
|
+
*/
|
|
10050
|
+
export interface ExclusiveInstance {
|
|
10051
|
+
/**
|
|
10052
|
+
* 配置中心类型[Registration、Configuration]
|
|
10053
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10054
|
+
*/
|
|
10055
|
+
CenterType?: string;
|
|
10056
|
+
/**
|
|
10057
|
+
* 实例id
|
|
10058
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10059
|
+
*/
|
|
10060
|
+
InstanceId?: string;
|
|
10061
|
+
/**
|
|
10062
|
+
* 实例类型[Polaris]
|
|
10063
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10064
|
+
*/
|
|
10065
|
+
InstanceType?: string;
|
|
10066
|
+
/**
|
|
10067
|
+
* 实例名称
|
|
10068
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10069
|
+
*/
|
|
10070
|
+
InstanceName?: string;
|
|
10071
|
+
/**
|
|
10072
|
+
* 实例地域id
|
|
10073
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10074
|
+
*/
|
|
10075
|
+
RegionId?: string;
|
|
10076
|
+
/**
|
|
10077
|
+
* 实例命名空间ID
|
|
10078
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10079
|
+
*/
|
|
10080
|
+
InstanceNamespaceId?: string;
|
|
10081
|
+
}
|
|
9708
10082
|
/**
|
|
9709
10083
|
* DeleteApplication请求参数结构体
|
|
9710
10084
|
*/
|
|
@@ -9991,7 +10365,13 @@ export interface ApiVersionArray {
|
|
|
9991
10365
|
/**
|
|
9992
10366
|
* TSF Envoy网关服务配置
|
|
9993
10367
|
*/
|
|
9994
|
-
export
|
|
10368
|
+
export interface GatewayConfig {
|
|
10369
|
+
/**
|
|
10370
|
+
* 服务名称
|
|
10371
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10372
|
+
*/
|
|
10373
|
+
Name: string;
|
|
10374
|
+
}
|
|
9995
10375
|
/**
|
|
9996
10376
|
* 描述配置项绑定的部署组
|
|
9997
10377
|
*/
|
|
@@ -10455,72 +10835,117 @@ export interface ApplicationForPage {
|
|
|
10455
10835
|
* 应用ID
|
|
10456
10836
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10457
10837
|
*/
|
|
10458
|
-
ApplicationId
|
|
10838
|
+
ApplicationId?: string;
|
|
10459
10839
|
/**
|
|
10460
10840
|
* 应用名称
|
|
10461
10841
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10462
10842
|
*/
|
|
10463
|
-
ApplicationName
|
|
10843
|
+
ApplicationName?: string;
|
|
10464
10844
|
/**
|
|
10465
10845
|
* 应用描述
|
|
10466
10846
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10467
10847
|
*/
|
|
10468
|
-
ApplicationDesc
|
|
10848
|
+
ApplicationDesc?: string;
|
|
10469
10849
|
/**
|
|
10470
10850
|
* 应用类型
|
|
10471
10851
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10472
10852
|
*/
|
|
10473
|
-
ApplicationType
|
|
10853
|
+
ApplicationType?: string;
|
|
10474
10854
|
/**
|
|
10475
10855
|
* 微服务类型
|
|
10476
10856
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10477
10857
|
*/
|
|
10478
|
-
MicroserviceType
|
|
10858
|
+
MicroserviceType?: string;
|
|
10479
10859
|
/**
|
|
10480
10860
|
* 编程语言
|
|
10481
10861
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10482
10862
|
*/
|
|
10483
|
-
ProgLang
|
|
10863
|
+
ProgLang?: string;
|
|
10484
10864
|
/**
|
|
10485
10865
|
* 创建时间
|
|
10486
10866
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10487
10867
|
*/
|
|
10488
|
-
CreateTime
|
|
10868
|
+
CreateTime?: string;
|
|
10489
10869
|
/**
|
|
10490
10870
|
* 更新时间
|
|
10491
10871
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10492
10872
|
*/
|
|
10493
|
-
UpdateTime
|
|
10873
|
+
UpdateTime?: string;
|
|
10494
10874
|
/**
|
|
10495
10875
|
* 应用资源类型
|
|
10496
10876
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10497
10877
|
*/
|
|
10498
|
-
ApplicationResourceType
|
|
10878
|
+
ApplicationResourceType?: string;
|
|
10499
10879
|
/**
|
|
10500
10880
|
* 应用runtime类型
|
|
10501
10881
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10502
10882
|
*/
|
|
10503
|
-
ApplicationRuntimeType
|
|
10883
|
+
ApplicationRuntimeType?: string;
|
|
10504
10884
|
/**
|
|
10505
10885
|
* Apigateway的serviceId
|
|
10506
10886
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10507
10887
|
*/
|
|
10508
|
-
ApigatewayServiceId
|
|
10888
|
+
ApigatewayServiceId?: string;
|
|
10509
10889
|
/**
|
|
10510
10890
|
* 应用备注名
|
|
10511
10891
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10512
10892
|
*/
|
|
10513
|
-
ApplicationRemarkName
|
|
10893
|
+
ApplicationRemarkName?: string;
|
|
10514
10894
|
/**
|
|
10515
10895
|
* 服务配置信息列表
|
|
10516
10896
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10517
10897
|
*/
|
|
10518
|
-
ServiceConfigList
|
|
10898
|
+
ServiceConfigList?: Array<ServiceConfig>;
|
|
10519
10899
|
/**
|
|
10520
10900
|
* IgnoreCreateImageRepository
|
|
10521
10901
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10522
10902
|
*/
|
|
10523
10903
|
IgnoreCreateImageRepository?: boolean;
|
|
10904
|
+
/**
|
|
10905
|
+
* Apm业务系统id
|
|
10906
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10907
|
+
*/
|
|
10908
|
+
ApmInstanceId?: string;
|
|
10909
|
+
/**
|
|
10910
|
+
* Apm业务系统Name
|
|
10911
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10912
|
+
*/
|
|
10913
|
+
ApmInstanceName?: string;
|
|
10914
|
+
/**
|
|
10915
|
+
* 同步删除镜像仓库
|
|
10916
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10917
|
+
*/
|
|
10918
|
+
SyncDeleteImageRepository?: boolean;
|
|
10919
|
+
/**
|
|
10920
|
+
* 应用微服务子类型
|
|
10921
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10922
|
+
*/
|
|
10923
|
+
MicroserviceSubType?: string;
|
|
10924
|
+
/**
|
|
10925
|
+
* 应用编程语言类型
|
|
10926
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10927
|
+
*/
|
|
10928
|
+
ProgramLanguage?: string;
|
|
10929
|
+
/**
|
|
10930
|
+
* 开发框架类型[SpringCloud,Dubbo,Go-GRPC,Other]
|
|
10931
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10932
|
+
*/
|
|
10933
|
+
FrameworkType?: string;
|
|
10934
|
+
/**
|
|
10935
|
+
* 注册配置治理信息
|
|
10936
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10937
|
+
*/
|
|
10938
|
+
ServiceGovernanceConfig?: ServiceGovernanceConfig;
|
|
10939
|
+
/**
|
|
10940
|
+
* 微服务类型列表
|
|
10941
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10942
|
+
*/
|
|
10943
|
+
MicroserviceTypeList?: Array<string>;
|
|
10944
|
+
/**
|
|
10945
|
+
* 是否同时创建镜像仓库
|
|
10946
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10947
|
+
*/
|
|
10948
|
+
CreateSameNameImageRepository?: boolean;
|
|
10524
10949
|
}
|
|
10525
10950
|
/**
|
|
10526
10951
|
* DescribeInvocationMetricScatterPlot请求参数结构体
|
|
@@ -10881,6 +11306,10 @@ export interface DescribeApplicationsRequest {
|
|
|
10881
11306
|
* IdList
|
|
10882
11307
|
*/
|
|
10883
11308
|
ApplicationIdList?: Array<string>;
|
|
11309
|
+
/**
|
|
11310
|
+
* 查询多种微服务类型的应用
|
|
11311
|
+
*/
|
|
11312
|
+
MicroserviceTypeList?: Array<string>;
|
|
10884
11313
|
}
|
|
10885
11314
|
/**
|
|
10886
11315
|
* DescribeTaskDetail请求参数结构体
|
|
@@ -10978,7 +11407,7 @@ export interface DescribeContainerEventsResponse {
|
|
|
10978
11407
|
* events 分页列表
|
|
10979
11408
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10980
11409
|
*/
|
|
10981
|
-
Result
|
|
11410
|
+
Result?: TsfPageContainerEvent;
|
|
10982
11411
|
/**
|
|
10983
11412
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10984
11413
|
*/
|
|
@@ -11447,6 +11876,31 @@ export interface DescribeTaskDetailResponse {
|
|
|
11447
11876
|
*/
|
|
11448
11877
|
RequestId?: string;
|
|
11449
11878
|
}
|
|
11879
|
+
/**
|
|
11880
|
+
* 空目录选项
|
|
11881
|
+
*/
|
|
11882
|
+
export interface EmptyDirOption {
|
|
11883
|
+
/**
|
|
11884
|
+
* -
|
|
11885
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11886
|
+
*/
|
|
11887
|
+
EnableMemory?: boolean;
|
|
11888
|
+
/**
|
|
11889
|
+
* -
|
|
11890
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11891
|
+
*/
|
|
11892
|
+
StorageCapacity?: number;
|
|
11893
|
+
/**
|
|
11894
|
+
* -
|
|
11895
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11896
|
+
*/
|
|
11897
|
+
StorageUnit?: string;
|
|
11898
|
+
/**
|
|
11899
|
+
* -
|
|
11900
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11901
|
+
*/
|
|
11902
|
+
SizeLimit?: string;
|
|
11903
|
+
}
|
|
11450
11904
|
/**
|
|
11451
11905
|
* ExpandGroup请求参数结构体
|
|
11452
11906
|
*/
|
|
@@ -11580,72 +12034,77 @@ export interface GroupPod {
|
|
|
11580
12034
|
* 实例名称(对应到kubernetes的pod名称)
|
|
11581
12035
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11582
12036
|
*/
|
|
11583
|
-
PodName
|
|
12037
|
+
PodName?: string;
|
|
11584
12038
|
/**
|
|
11585
12039
|
* 实例ID(对应到kubernetes的pod id)
|
|
11586
12040
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11587
12041
|
*/
|
|
11588
|
-
PodId
|
|
12042
|
+
PodId?: string;
|
|
11589
12043
|
/**
|
|
11590
12044
|
* 实例状态,请参考后面的实例以及容器的状态定义。启动中(pod 未 ready):Starting;运行中:Running;异常:Abnormal;停止:Stopped;
|
|
11591
12045
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11592
12046
|
*/
|
|
11593
|
-
Status
|
|
12047
|
+
Status?: string;
|
|
11594
12048
|
/**
|
|
11595
12049
|
* 实例处于当前状态的原因,例如容器下载镜像失败
|
|
11596
12050
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11597
12051
|
*/
|
|
11598
|
-
Reason
|
|
12052
|
+
Reason?: string;
|
|
11599
12053
|
/**
|
|
11600
12054
|
* 主机IP
|
|
11601
12055
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11602
12056
|
*/
|
|
11603
|
-
NodeIp
|
|
12057
|
+
NodeIp?: string;
|
|
11604
12058
|
/**
|
|
11605
12059
|
* 实例IP
|
|
11606
12060
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11607
12061
|
*/
|
|
11608
|
-
Ip
|
|
12062
|
+
Ip?: string;
|
|
11609
12063
|
/**
|
|
11610
12064
|
* 实例中容器的重启次数
|
|
11611
12065
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11612
12066
|
*/
|
|
11613
|
-
RestartCount
|
|
12067
|
+
RestartCount?: number;
|
|
11614
12068
|
/**
|
|
11615
12069
|
* 实例中已就绪容器的个数
|
|
11616
12070
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11617
12071
|
*/
|
|
11618
|
-
ReadyCount
|
|
12072
|
+
ReadyCount?: number;
|
|
11619
12073
|
/**
|
|
11620
12074
|
* 运行时长
|
|
11621
12075
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11622
12076
|
*/
|
|
11623
|
-
Runtime
|
|
12077
|
+
Runtime?: string;
|
|
11624
12078
|
/**
|
|
11625
12079
|
* 实例启动时间
|
|
11626
12080
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11627
12081
|
*/
|
|
11628
|
-
CreatedAt
|
|
12082
|
+
CreatedAt?: string;
|
|
11629
12083
|
/**
|
|
11630
12084
|
* 服务实例状态
|
|
11631
12085
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11632
12086
|
*/
|
|
11633
|
-
ServiceInstanceStatus
|
|
12087
|
+
ServiceInstanceStatus?: string;
|
|
11634
12088
|
/**
|
|
11635
12089
|
* 机器实例可使用状态
|
|
11636
12090
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11637
12091
|
*/
|
|
11638
|
-
InstanceAvailableStatus
|
|
12092
|
+
InstanceAvailableStatus?: string;
|
|
11639
12093
|
/**
|
|
11640
12094
|
* 机器实例状态
|
|
11641
12095
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11642
12096
|
*/
|
|
11643
|
-
InstanceStatus
|
|
12097
|
+
InstanceStatus?: string;
|
|
11644
12098
|
/**
|
|
11645
12099
|
* 节点实例id
|
|
11646
12100
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11647
12101
|
*/
|
|
11648
|
-
NodeInstanceId
|
|
12102
|
+
NodeInstanceId?: string;
|
|
12103
|
+
/**
|
|
12104
|
+
* 预期副本数
|
|
12105
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12106
|
+
*/
|
|
12107
|
+
SpecTotalCount?: string;
|
|
11649
12108
|
}
|
|
11650
12109
|
/**
|
|
11651
12110
|
* EnableTaskFlow请求参数结构体
|
|
@@ -11771,6 +12230,21 @@ export interface DescribeConfigReleasesRequest {
|
|
|
11771
12230
|
*/
|
|
11772
12231
|
ApplicationId?: string;
|
|
11773
12232
|
}
|
|
12233
|
+
/**
|
|
12234
|
+
* ValueFrom 通用结构
|
|
12235
|
+
*/
|
|
12236
|
+
export interface CommonRef {
|
|
12237
|
+
/**
|
|
12238
|
+
* 名称
|
|
12239
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12240
|
+
*/
|
|
12241
|
+
Name?: string;
|
|
12242
|
+
/**
|
|
12243
|
+
* Key值
|
|
12244
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12245
|
+
*/
|
|
12246
|
+
Key?: string;
|
|
12247
|
+
}
|
|
11774
12248
|
/**
|
|
11775
12249
|
* 标准输出日志
|
|
11776
12250
|
*/
|
|
@@ -12594,6 +13068,14 @@ export interface DescribePodInstancesRequest {
|
|
|
12594
13068
|
* 过滤字段
|
|
12595
13069
|
*/
|
|
12596
13070
|
PodNameList?: Array<string>;
|
|
13071
|
+
/**
|
|
13072
|
+
* 新老版本pod批次标识
|
|
13073
|
+
*/
|
|
13074
|
+
DeployVersion?: string;
|
|
13075
|
+
/**
|
|
13076
|
+
* 任务ID
|
|
13077
|
+
*/
|
|
13078
|
+
TaskId?: string;
|
|
12597
13079
|
}
|
|
12598
13080
|
/**
|
|
12599
13081
|
* RedoTask返回参数结构体
|
|
@@ -12691,6 +13173,21 @@ export interface DeliveryConfigBindGroup {
|
|
|
12691
13173
|
*/
|
|
12692
13174
|
KafkaInfos?: Array<DeliveryKafkaInfo>;
|
|
12693
13175
|
}
|
|
13176
|
+
/**
|
|
13177
|
+
* 自定义Pod调度规则
|
|
13178
|
+
*/
|
|
13179
|
+
export interface CustomPodSchedule {
|
|
13180
|
+
/**
|
|
13181
|
+
* -
|
|
13182
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13183
|
+
*/
|
|
13184
|
+
ForceSchedule?: ForceSchedule;
|
|
13185
|
+
/**
|
|
13186
|
+
* -
|
|
13187
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13188
|
+
*/
|
|
13189
|
+
TrySchedule?: TrySchedule;
|
|
13190
|
+
}
|
|
12694
13191
|
/**
|
|
12695
13192
|
* DescribeConfigs请求参数结构体
|
|
12696
13193
|
*/
|
|
@@ -12762,12 +13259,17 @@ export interface TsfPageApplication {
|
|
|
12762
13259
|
* 应用总数目
|
|
12763
13260
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
12764
13261
|
*/
|
|
12765
|
-
TotalCount
|
|
13262
|
+
TotalCount?: number;
|
|
12766
13263
|
/**
|
|
12767
13264
|
* 应用信息列表
|
|
12768
13265
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
12769
13266
|
*/
|
|
12770
|
-
Content
|
|
13267
|
+
Content?: Array<ApplicationForPage>;
|
|
13268
|
+
/**
|
|
13269
|
+
* 获取部署组实例列表返回的原始批次个数
|
|
13270
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13271
|
+
*/
|
|
13272
|
+
SpecTotalCount?: number;
|
|
12771
13273
|
}
|
|
12772
13274
|
/**
|
|
12773
13275
|
* DisableLaneRule请求参数结构体
|
|
@@ -13038,7 +13540,7 @@ export interface Config {
|
|
|
13038
13540
|
ConfigVersionCount: number;
|
|
13039
13541
|
}
|
|
13040
13542
|
/**
|
|
13041
|
-
*
|
|
13543
|
+
* 端口对象
|
|
13042
13544
|
*/
|
|
13043
13545
|
export interface ProtocolPort {
|
|
13044
13546
|
/**
|
|
@@ -13058,6 +13560,11 @@ export interface ProtocolPort {
|
|
|
13058
13560
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
13059
13561
|
*/
|
|
13060
13562
|
NodePort?: number;
|
|
13563
|
+
/**
|
|
13564
|
+
* 端口名称
|
|
13565
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13566
|
+
*/
|
|
13567
|
+
Name?: string;
|
|
13061
13568
|
}
|
|
13062
13569
|
/**
|
|
13063
13570
|
* DescribeApiUseDetail请求参数结构体
|
|
@@ -13584,6 +14091,26 @@ export interface DescribeInvocationMetricDataPointResponse {
|
|
|
13584
14091
|
*/
|
|
13585
14092
|
RequestId?: string;
|
|
13586
14093
|
}
|
|
14094
|
+
/**
|
|
14095
|
+
* 注册配置治理信息
|
|
14096
|
+
*/
|
|
14097
|
+
export interface ServiceGovernanceConfig {
|
|
14098
|
+
/**
|
|
14099
|
+
* 是否开启服务注册治理
|
|
14100
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14101
|
+
*/
|
|
14102
|
+
EnableGovernance?: boolean;
|
|
14103
|
+
/**
|
|
14104
|
+
* 服务治理类型
|
|
14105
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14106
|
+
*/
|
|
14107
|
+
GovernanceType?: string;
|
|
14108
|
+
/**
|
|
14109
|
+
* 独享实例列表
|
|
14110
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14111
|
+
*/
|
|
14112
|
+
ExclusiveInstances?: Array<ExclusiveInstance>;
|
|
14113
|
+
}
|
|
13587
14114
|
/**
|
|
13588
14115
|
* DisableUnitRule返回参数结构体
|
|
13589
14116
|
*/
|
|
@@ -13622,6 +14149,18 @@ export interface ModifyApplicationRequest {
|
|
|
13622
14149
|
* 服务配置信息列表
|
|
13623
14150
|
*/
|
|
13624
14151
|
ServiceConfigList?: Array<ServiceConfig>;
|
|
14152
|
+
/**
|
|
14153
|
+
* 应用的微服务类型
|
|
14154
|
+
*/
|
|
14155
|
+
MicroserviceType?: string;
|
|
14156
|
+
/**
|
|
14157
|
+
* 注册配置治理信息
|
|
14158
|
+
*/
|
|
14159
|
+
ServiceGovernanceConfig?: ServiceGovernanceConfig;
|
|
14160
|
+
/**
|
|
14161
|
+
* 应用开发框架
|
|
14162
|
+
*/
|
|
14163
|
+
FrameworkType?: string;
|
|
13625
14164
|
}
|
|
13626
14165
|
/**
|
|
13627
14166
|
* DescribePathRewrites返回参数结构体
|
|
@@ -14217,6 +14756,26 @@ export interface TsfPageSimpleApplication {
|
|
|
14217
14756
|
*/
|
|
14218
14757
|
Content: Array<SimpleApplication>;
|
|
14219
14758
|
}
|
|
14759
|
+
/**
|
|
14760
|
+
* 亲和规则
|
|
14761
|
+
*/
|
|
14762
|
+
export interface Affinity {
|
|
14763
|
+
/**
|
|
14764
|
+
* -
|
|
14765
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14766
|
+
*/
|
|
14767
|
+
Scope?: string;
|
|
14768
|
+
/**
|
|
14769
|
+
* -
|
|
14770
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14771
|
+
*/
|
|
14772
|
+
Weight?: string;
|
|
14773
|
+
/**
|
|
14774
|
+
* -
|
|
14775
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14776
|
+
*/
|
|
14777
|
+
Paths?: Array<CommonOption>;
|
|
14778
|
+
}
|
|
14220
14779
|
/**
|
|
14221
14780
|
* 属性字段
|
|
14222
14781
|
*/
|
|
@@ -15063,7 +15622,7 @@ export interface CreateGroupResponse {
|
|
|
15063
15622
|
* groupId, null表示创建失败
|
|
15064
15623
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
15065
15624
|
*/
|
|
15066
|
-
Result
|
|
15625
|
+
Result?: string;
|
|
15067
15626
|
/**
|
|
15068
15627
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15069
15628
|
*/
|