tencentcloud-sdk-nodejs-tsf 4.0.946 → 4.0.985

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.
@@ -613,17 +613,13 @@ export interface DescribeConfigTemplateResponse {
613
613
  }
614
614
 
615
615
  /**
616
- * 分页的 ContainerEvent
616
+ * ContinueRunFailedTaskBatch请求参数结构体
617
617
  */
618
- export interface TsfPageContainerEvent {
619
- /**
620
- * 返回个数
621
- */
622
- TotalCount: number
618
+ export interface ContinueRunFailedTaskBatchRequest {
623
619
  /**
624
- * events 数组
620
+ * 批次ID。
625
621
  */
626
- Content: Array<ContainerEvent>
622
+ BatchId: string
627
623
  }
628
624
 
629
625
  /**
@@ -640,6 +636,22 @@ export interface DescribeDeliveryConfigResponse {
640
636
  RequestId?: string
641
637
  }
642
638
 
639
+ /**
640
+ * 强制调度配置
641
+ */
642
+ export interface ForceSchedule {
643
+ /**
644
+ * -
645
+ 注意:此字段可能返回 null,表示取不到有效值。
646
+ */
647
+ AffinityList?: Array<Affinity>
648
+ /**
649
+ * -
650
+ 注意:此字段可能返回 null,表示取不到有效值。
651
+ */
652
+ AntiAffinityList?: Array<Affinity>
653
+ }
654
+
643
655
  /**
644
656
  * 简单应用
645
657
  */
@@ -648,67 +660,82 @@ export interface SimpleApplication {
648
660
  * 应用ID
649
661
  注意:此字段可能返回 null,表示取不到有效值。
650
662
  */
651
- ApplicationId: string
663
+ ApplicationId?: string
652
664
  /**
653
665
  * 应用名称
654
666
  注意:此字段可能返回 null,表示取不到有效值。
655
667
  */
656
- ApplicationName: string
668
+ ApplicationName?: string
657
669
  /**
658
670
  * 应用类型
659
671
  注意:此字段可能返回 null,表示取不到有效值。
660
672
  */
661
- ApplicationType: string
673
+ ApplicationType?: string
662
674
  /**
663
675
  * 应用微服务类型
664
676
  注意:此字段可能返回 null,表示取不到有效值。
665
677
  */
666
- MicroserviceType: string
678
+ MicroserviceType?: string
667
679
  /**
668
680
  * ApplicationDesc
669
681
  注意:此字段可能返回 null,表示取不到有效值。
670
682
  */
671
- ApplicationDesc: string
683
+ ApplicationDesc?: string
672
684
  /**
673
685
  * ProgLang
674
686
  注意:此字段可能返回 null,表示取不到有效值。
675
687
  */
676
- ProgLang: string
688
+ ProgLang?: string
677
689
  /**
678
690
  * ApplicationResourceType
679
691
  注意:此字段可能返回 null,表示取不到有效值。
680
692
  */
681
- ApplicationResourceType: string
693
+ ApplicationResourceType?: string
682
694
  /**
683
695
  * CreateTime
684
696
  注意:此字段可能返回 null,表示取不到有效值。
685
697
  */
686
- CreateTime: string
698
+ CreateTime?: string
687
699
  /**
688
700
  * UpdateTime
689
701
  注意:此字段可能返回 null,表示取不到有效值。
690
702
  */
691
- UpdateTime: string
703
+ UpdateTime?: string
692
704
  /**
693
705
  * ApigatewayServiceId
694
706
  注意:此字段可能返回 null,表示取不到有效值。
695
707
  */
696
- ApigatewayServiceId: string
708
+ ApigatewayServiceId?: string
697
709
  /**
698
710
  * ApplicationRuntimeType
699
711
  注意:此字段可能返回 null,表示取不到有效值。
700
712
  */
701
- ApplicationRuntimeType: string
713
+ ApplicationRuntimeType?: string
714
+ /**
715
+ * Apm业务系统id
716
+ 注意:此字段可能返回 null,表示取不到有效值。
717
+ */
718
+ AmpInstanceId?: string
719
+ /**
720
+ * Apm业务系统Name
721
+ 注意:此字段可能返回 null,表示取不到有效值。
722
+ */
723
+ ApmInstanceName?: string
702
724
  }
703
725
 
704
726
  /**
705
- * ContinueRunFailedTaskBatch请求参数结构体
727
+ * DescribeSimpleNamespaces返回参数结构体
706
728
  */
707
- export interface ContinueRunFailedTaskBatchRequest {
729
+ export interface DescribeSimpleNamespacesResponse {
708
730
  /**
709
- * 批次ID。
731
+ * 命名空间分页列表
732
+ 注意:此字段可能返回 null,表示取不到有效值。
710
733
  */
711
- BatchId: string
734
+ Result?: TsfPageNamespace
735
+ /**
736
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
737
+ */
738
+ RequestId?: string
712
739
  }
713
740
 
714
741
  /**
@@ -871,6 +898,22 @@ export interface ReleaseFileConfigRequest {
871
898
  ReleaseDesc?: string
872
899
  }
873
900
 
901
+ /**
902
+ * 标签
903
+ */
904
+ export interface Tag {
905
+ /**
906
+ * 标签键
907
+ 注意:此字段可能返回 null,表示取不到有效值。
908
+ */
909
+ TagKey?: string
910
+ /**
911
+ * 标签值
912
+ 注意:此字段可能返回 null,表示取不到有效值。
913
+ */
914
+ TagValue?: string
915
+ }
916
+
874
917
  /**
875
918
  * DescribeInvocationMetricDataDimension返回参数结构体
876
919
  */
@@ -2908,18 +2951,24 @@ export interface DescribePkgsResponse {
2908
2951
  }
2909
2952
 
2910
2953
  /**
2911
- * DescribeSimpleNamespaces返回参数结构体
2954
+ * ConfigMap可选项
2912
2955
  */
2913
- export interface DescribeSimpleNamespacesResponse {
2956
+ export interface ConfigMapOption {
2914
2957
  /**
2915
- * 命名空间分页列表
2958
+ * -
2916
2959
  注意:此字段可能返回 null,表示取不到有效值。
2917
2960
  */
2918
- Result?: TsfPageNamespace
2961
+ Key?: string
2919
2962
  /**
2920
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2963
+ * -
2964
+ 注意:此字段可能返回 null,表示取不到有效值。
2921
2965
  */
2922
- RequestId?: string
2966
+ Path?: string
2967
+ /**
2968
+ * -
2969
+ 注意:此字段可能返回 null,表示取不到有效值。
2970
+ */
2971
+ Mode?: string
2923
2972
  }
2924
2973
 
2925
2974
  /**
@@ -3034,87 +3083,97 @@ export interface ImageRepository {
3034
3083
  * 仓库名,含命名空间,如tsf/nginx
3035
3084
  注意:此字段可能返回 null,表示取不到有效值。
3036
3085
  */
3037
- Reponame: string
3086
+ Reponame?: string
3038
3087
  /**
3039
3088
  * 仓库类型
3040
3089
  注意:此字段可能返回 null,表示取不到有效值。
3041
3090
  */
3042
- Repotype: string
3091
+ Repotype?: string
3043
3092
  /**
3044
3093
  * 镜像版本数
3045
3094
  注意:此字段可能返回 null,表示取不到有效值。
3046
3095
  */
3047
- TagCount: number
3096
+ TagCount?: number
3048
3097
  /**
3049
3098
  * 是否公共,1:公有,0:私有
3050
3099
  注意:此字段可能返回 null,表示取不到有效值。
3051
3100
  */
3052
- IsPublic: number
3101
+ IsPublic?: number
3053
3102
  /**
3054
3103
  * 是否被用户收藏。true:是,false:否
3055
3104
  注意:此字段可能返回 null,表示取不到有效值。
3056
3105
  */
3057
- IsUserFavor: boolean
3106
+ IsUserFavor?: boolean
3058
3107
  /**
3059
3108
  * 是否是腾讯云官方仓库。 是否是腾讯云官方仓库。true:是,false:否
3060
3109
  注意:此字段可能返回 null,表示取不到有效值。
3061
3110
  */
3062
- IsQcloudOfficial: boolean
3111
+ IsQcloudOfficial?: boolean
3063
3112
  /**
3064
3113
  * 被所有用户收藏次数
3065
3114
  注意:此字段可能返回 null,表示取不到有效值。
3066
3115
  */
3067
- FavorCount: number
3116
+ FavorCount?: number
3068
3117
  /**
3069
3118
  * 拉取次数
3070
3119
  注意:此字段可能返回 null,表示取不到有效值。
3071
3120
  */
3072
- PullCount: number
3121
+ PullCount?: number
3073
3122
  /**
3074
3123
  * 描述内容
3075
3124
  注意:此字段可能返回 null,表示取不到有效值。
3076
3125
  */
3077
- Description: string
3126
+ Description?: string
3078
3127
  /**
3079
3128
  * 创建时间
3080
3129
  注意:此字段可能返回 null,表示取不到有效值。
3081
3130
  */
3082
- CreationTime: string
3131
+ CreationTime?: string
3083
3132
  /**
3084
3133
  * 更新时间
3085
3134
  注意:此字段可能返回 null,表示取不到有效值。
3086
3135
  */
3087
- UpdateTime: string
3136
+ UpdateTime?: string
3088
3137
  /**
3089
3138
  * TcrRepoInfo值
3090
3139
  注意:此字段可能返回 null,表示取不到有效值。
3091
3140
  */
3092
- TcrRepoInfo: TcrRepoInfo
3141
+ TcrRepoInfo?: TcrRepoInfo
3093
3142
  /**
3094
3143
  * TcrBindingId值
3095
3144
  注意:此字段可能返回 null,表示取不到有效值。
3096
3145
  */
3097
- TcrBindingId: number
3146
+ TcrBindingId?: number
3098
3147
  /**
3099
3148
  * applicationid值
3100
3149
  注意:此字段可能返回 null,表示取不到有效值。
3101
3150
  */
3102
- ApplicationId: string
3151
+ ApplicationId?: string
3103
3152
  /**
3104
3153
  * ApplicationName值(废弃)
3105
3154
  注意:此字段可能返回 null,表示取不到有效值。
3106
3155
  */
3107
- ApplicationName: ScalableRule
3156
+ ApplicationName?: ScalableRule
3108
3157
  /**
3109
3158
  * ApplicationName值
3110
3159
  注意:此字段可能返回 null,表示取不到有效值。
3111
3160
  */
3112
- ApplicationNameReal: string
3161
+ ApplicationNameReal?: string
3113
3162
  /**
3114
3163
  * 是否公共,1:公有,0:私有
3115
3164
  注意:此字段可能返回 null,表示取不到有效值。
3116
3165
  */
3117
3166
  Public?: number
3167
+ /**
3168
+ * 创建方式:manual | automatic
3169
+ 注意:此字段可能返回 null,表示取不到有效值。
3170
+ */
3171
+ CreateMode?: string
3172
+ /**
3173
+ * 仓库名,等同reponame字段
3174
+ 注意:此字段可能返回 null,表示取不到有效值。
3175
+ */
3176
+ RepoName?: string
3118
3177
  }
3119
3178
 
3120
3179
  /**
@@ -3132,6 +3191,27 @@ export interface DescribeOverviewInvocationResponse {
3132
3191
  RequestId?: string
3133
3192
  }
3134
3193
 
3194
+ /**
3195
+ * 通用选项
3196
+ */
3197
+ export interface CommonOption {
3198
+ /**
3199
+ * -
3200
+ 注意:此字段可能返回 null,表示取不到有效值。
3201
+ */
3202
+ LabelName?: string
3203
+ /**
3204
+ * -
3205
+ 注意:此字段可能返回 null,表示取不到有效值。
3206
+ */
3207
+ Operator?: string
3208
+ /**
3209
+ * -
3210
+ 注意:此字段可能返回 null,表示取不到有效值。
3211
+ */
3212
+ LabelValue?: string
3213
+ }
3214
+
3135
3215
  /**
3136
3216
  * CreatePublicConfig返回参数结构体
3137
3217
  */
@@ -3598,7 +3678,7 @@ export interface DescribeSimpleApplicationsResponse {
3598
3678
  * 简单应用分页对象
3599
3679
  注意:此字段可能返回 null,表示取不到有效值。
3600
3680
  */
3601
- Result: TsfPageSimpleApplication
3681
+ Result?: TsfPageSimpleApplication
3602
3682
  /**
3603
3683
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3604
3684
  */
@@ -3849,6 +3929,10 @@ export interface DescribeSimpleApplicationsRequest {
3849
3929
  * 无
3850
3930
  */
3851
3931
  DisableProgramAuthCheck?: boolean
3932
+ /**
3933
+ * 查询指定微服务类型的应用列表
3934
+ */
3935
+ MicroserviceTypeList?: Array<string>
3852
3936
  }
3853
3937
 
3854
3938
  /**
@@ -4344,7 +4428,7 @@ export interface DescribePodInstancesResponse {
4344
4428
  /**
4345
4429
  * 查询的权限数据对象
4346
4430
  */
4347
- Result: GroupPodResult
4431
+ Result?: GroupPodResult
4348
4432
  /**
4349
4433
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4350
4434
  */
@@ -4530,6 +4614,10 @@ export interface CreateGroupRequest {
4530
4614
  * 部署组备注
4531
4615
  */
4532
4616
  Alias?: string
4617
+ /**
4618
+ * 标签列表
4619
+ */
4620
+ Tags?: Array<Tag>
4533
4621
  }
4534
4622
 
4535
4623
  /**
@@ -4973,6 +5061,22 @@ export interface DescribeContainerEventsRequest {
4973
5061
  * 当类型是 instance 时需要
4974
5062
  */
4975
5063
  GroupId?: string
5064
+ /**
5065
+ * event的资源kind
5066
+ */
5067
+ Kind?: string
5068
+ /**
5069
+ * event 的type
5070
+ */
5071
+ Type?: string
5072
+ /**
5073
+ * 资源名称
5074
+ */
5075
+ ResourceName?: string
5076
+ /**
5077
+ * 关键词查询
5078
+ */
5079
+ SearchWord?: string
4976
5080
  }
4977
5081
 
4978
5082
  /**
@@ -5600,6 +5704,16 @@ export interface ValueFrom {
5600
5704
  注意:此字段可能返回 null,表示取不到有效值。
5601
5705
  */
5602
5706
  ResourceFieldRef?: ResourceFieldRef
5707
+ /**
5708
+ * k8s env的configMapKeyRef
5709
+ 注意:此字段可能返回 null,表示取不到有效值。
5710
+ */
5711
+ ConfigMapKeyRef?: CommonRef
5712
+ /**
5713
+ * k8s env 的 secretKeyRef
5714
+ 注意:此字段可能返回 null,表示取不到有效值。
5715
+ */
5716
+ SecretKeyRef?: CommonRef
5603
5717
  }
5604
5718
 
5605
5719
  /**
@@ -6014,6 +6128,16 @@ export interface VolumeInfo {
6014
6128
  * 数据卷配置
6015
6129
  */
6016
6130
  VolumeConfig?: string
6131
+ /**
6132
+ * -
6133
+ 注意:此字段可能返回 null,表示取不到有效值。
6134
+ */
6135
+ ConfigMapOptions?: Array<ConfigMapOption>
6136
+ /**
6137
+ * -
6138
+ 注意:此字段可能返回 null,表示取不到有效值。
6139
+ */
6140
+ EmptyDirOption?: EmptyDirOption
6017
6141
  }
6018
6142
 
6019
6143
  /**
@@ -6519,7 +6643,7 @@ export interface DescribeImageRepositoryRequest {
6519
6643
  */
6520
6644
  TcrRepoInfo?: TcrRepoInfo
6521
6645
  /**
6522
- * 镜像仓库
6646
+ * 镜像仓库名称
6523
6647
  */
6524
6648
  RepoName?: string
6525
6649
  }
@@ -6928,6 +7052,22 @@ export interface UpdateConfigTemplateResponse {
6928
7052
  RequestId?: string
6929
7053
  }
6930
7054
 
7055
+ /**
7056
+ * 尽量调度
7057
+ */
7058
+ export interface TrySchedule {
7059
+ /**
7060
+ * -
7061
+ 注意:此字段可能返回 null,表示取不到有效值。
7062
+ */
7063
+ AffinityList?: Array<Affinity>
7064
+ /**
7065
+ * -
7066
+ 注意:此字段可能返回 null,表示取不到有效值。
7067
+ */
7068
+ AntiAffinityList?: Array<Affinity>
7069
+ }
7070
+
6931
7071
  /**
6932
7072
  * BindPlugin请求参数结构体
6933
7073
  */
@@ -7854,6 +7994,26 @@ export interface CreateApplicationRequest {
7854
7994
  * 无
7855
7995
  */
7856
7996
  ProgramIdList?: Array<string>
7997
+ /**
7998
+ * apm业务系统id
7999
+ */
8000
+ ApmInstanceId?: string
8001
+ /**
8002
+ * 编程语言
8003
+ */
8004
+ ProgramLanguage?: string
8005
+ /**
8006
+ * 开发框架
8007
+ */
8008
+ FrameworkType?: string
8009
+ /**
8010
+ * 注册配置治理
8011
+ */
8012
+ ServiceGovernanceConfig?: ServiceGovernanceConfig
8013
+ /**
8014
+ * 是否创建并关联同名镜像仓库
8015
+ */
8016
+ CreateSameNameImageRepository?: boolean
7857
8017
  }
7858
8018
 
7859
8019
  /**
@@ -8123,7 +8283,7 @@ export interface CreateApplicationResponse {
8123
8283
  * 应用ID
8124
8284
  注意:此字段可能返回 null,表示取不到有效值。
8125
8285
  */
8126
- Result: string
8286
+ Result?: string
8127
8287
  /**
8128
8288
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8129
8289
  */
@@ -8852,6 +9012,71 @@ export interface ServiceSetting {
8852
9012
  注意:此字段可能返回 null,表示取不到有效值。
8853
9013
  */
8854
9014
  SessionAffinityTimeoutSeconds?: number
9015
+ /**
9016
+ * 服务名称
9017
+ 注意:此字段可能返回 null,表示取不到有效值。
9018
+ */
9019
+ ServiceName?: string
9020
+ /**
9021
+ * 外部流量策略
9022
+ 注意:此字段可能返回 null,表示取不到有效值。
9023
+ */
9024
+ ExternalTrafficStrategy?: string
9025
+ /**
9026
+ * 外部流量策略
9027
+ 注意:此字段可能返回 null,表示取不到有效值。
9028
+ */
9029
+ ExternalTrafficPolicy?: string
9030
+ /**
9031
+ * 负载均衡提供者
9032
+ 注意:此字段可能返回 null,表示取不到有效值。
9033
+ */
9034
+ LoadBalancerProvisioner?: string
9035
+ /**
9036
+ * 负载均衡类型
9037
+ 注意:此字段可能返回 null,表示取不到有效值。
9038
+ */
9039
+ LoadBalancingType?: string
9040
+ /**
9041
+ * k8s负载均衡内网vip
9042
+ 注意:此字段可能返回 null,表示取不到有效值。
9043
+ */
9044
+ ClusterIp?: string
9045
+ /**
9046
+ * 禁用服务Int记录
9047
+ 注意:此字段可能返回 null,表示取不到有效值。
9048
+ */
9049
+ DisableServiceInt?: number
9050
+ /**
9051
+ * 开启SessionAffinity Int记录
9052
+ 注意:此字段可能返回 null,表示取不到有效值。
9053
+ */
9054
+ OpenSessionAffinityInt?: number
9055
+ /**
9056
+ * 开启HeadlessService int记录
9057
+ 注意:此字段可能返回 null,表示取不到有效值。
9058
+ */
9059
+ HeadlessServiceInt?: number
9060
+ /**
9061
+ * 服务名称
9062
+ 注意:此字段可能返回 null,表示取不到有效值。
9063
+ */
9064
+ Name?: string
9065
+ /**
9066
+ * VPC网络ID
9067
+ 注意:此字段可能返回 null,表示取不到有效值。
9068
+ */
9069
+ VpcId?: string
9070
+ /**
9071
+ * 负载均衡VIP
9072
+ 注意:此字段可能返回 null,表示取不到有效值。
9073
+ */
9074
+ LoadBalancingIp?: string
9075
+ /**
9076
+ * 负载均衡id
9077
+ 注意:此字段可能返回 null,表示取不到有效值。
9078
+ */
9079
+ LoadBalancerId?: string
8855
9080
  }
8856
9081
 
8857
9082
  /**
@@ -8941,6 +9166,27 @@ export interface DescribeInstancesResponse {
8941
9166
  RequestId?: string
8942
9167
  }
8943
9168
 
9169
+ /**
9170
+ * 打散调度规则
9171
+ */
9172
+ export interface AvailableZoneScatterScheduleRule {
9173
+ /**
9174
+ * -
9175
+ 注意:此字段可能返回 null,表示取不到有效值。
9176
+ */
9177
+ ScatterDimension?: string
9178
+ /**
9179
+ * -
9180
+ 注意:此字段可能返回 null,表示取不到有效值。
9181
+ */
9182
+ MaxUnbalanceQuantity?: number
9183
+ /**
9184
+ * -
9185
+ 注意:此字段可能返回 null,表示取不到有效值。
9186
+ */
9187
+ IsForceSchedule?: boolean
9188
+ }
9189
+
8944
9190
  /**
8945
9191
  * CreatePathRewritesWithDetailResp请求参数结构体
8946
9192
  */
@@ -9603,6 +9849,20 @@ export interface TsfPageUnitNamespace {
9603
9849
  Content: Array<UnitNamespace>
9604
9850
  }
9605
9851
 
9852
+ /**
9853
+ * 分页的 ContainerEvent
9854
+ */
9855
+ export interface TsfPageContainerEvent {
9856
+ /**
9857
+ * 返回个数
9858
+ */
9859
+ TotalCount: number
9860
+ /**
9861
+ * events 数组
9862
+ */
9863
+ Content: Array<ContainerEvent>
9864
+ }
9865
+
9606
9866
  /**
9607
9867
  * CreateMicroserviceWithDetailResp请求参数结构体
9608
9868
  */
@@ -9761,6 +10021,61 @@ export interface SchedulingStrategy {
9761
10021
  注意:此字段可能返回 null,表示取不到有效值。
9762
10022
  */
9763
10023
  Type: string
10024
+ /**
10025
+ * -
10026
+ 注意:此字段可能返回 null,表示取不到有效值。
10027
+ */
10028
+ NodeScheduleStrategyType?: string
10029
+ /**
10030
+ * -
10031
+ 注意:此字段可能返回 null,表示取不到有效值。
10032
+ */
10033
+ NodeScheduleOptions?: Array<CommonOption>
10034
+ /**
10035
+ * -
10036
+ 注意:此字段可能返回 null,表示取不到有效值。
10037
+ */
10038
+ StrongAffinityList?: Array<CommonOption>
10039
+ /**
10040
+ * -
10041
+ 注意:此字段可能返回 null,表示取不到有效值。
10042
+ */
10043
+ WeakAffinityList?: Array<CommonOption>
10044
+ /**
10045
+ * -
10046
+ 注意:此字段可能返回 null,表示取不到有效值。
10047
+ */
10048
+ WeakAffinityWeight?: number
10049
+ /**
10050
+ * -
10051
+ 注意:此字段可能返回 null,表示取不到有效值。
10052
+ */
10053
+ AvailableZoneScatterScheduleType?: string
10054
+ /**
10055
+ * -
10056
+ 注意:此字段可能返回 null,表示取不到有效值。
10057
+ */
10058
+ AvailableZoneScatterScheduleRules?: Array<AvailableZoneScatterScheduleRule>
10059
+ /**
10060
+ * -
10061
+ 注意:此字段可能返回 null,表示取不到有效值。
10062
+ */
10063
+ PodScheduleStrategyType?: string
10064
+ /**
10065
+ * -
10066
+ 注意:此字段可能返回 null,表示取不到有效值。
10067
+ */
10068
+ CustomPodSchedule?: CustomPodSchedule
10069
+ /**
10070
+ * -
10071
+ 注意:此字段可能返回 null,表示取不到有效值。
10072
+ */
10073
+ TolerateScheduleType?: string
10074
+ /**
10075
+ * -
10076
+ 注意:此字段可能返回 null,表示取不到有效值。
10077
+ */
10078
+ CustomTolerateSchedules?: Array<CustomTolerateSchedule>
9764
10079
  }
9765
10080
 
9766
10081
  /**
@@ -10110,6 +10425,37 @@ export interface DescribeTaskRecordsRequest {
10110
10425
  Ids?: Array<string>
10111
10426
  }
10112
10427
 
10428
+ /**
10429
+ * 自定义容忍调度规则列表
10430
+ */
10431
+ export interface CustomTolerateSchedule {
10432
+ /**
10433
+ * -
10434
+ 注意:此字段可能返回 null,表示取不到有效值。
10435
+ */
10436
+ Key?: string
10437
+ /**
10438
+ * -
10439
+ 注意:此字段可能返回 null,表示取不到有效值。
10440
+ */
10441
+ Operator?: string
10442
+ /**
10443
+ * -
10444
+ 注意:此字段可能返回 null,表示取不到有效值。
10445
+ */
10446
+ Value?: string
10447
+ /**
10448
+ * -
10449
+ 注意:此字段可能返回 null,表示取不到有效值。
10450
+ */
10451
+ Effect?: string
10452
+ /**
10453
+ * -
10454
+ 注意:此字段可能返回 null,表示取不到有效值。
10455
+ */
10456
+ TolerationSeconds?: number
10457
+ }
10458
+
10113
10459
  /**
10114
10460
  * ModifyContainerGroup返回参数结构体
10115
10461
  */
@@ -10127,6 +10473,42 @@ false:失败。
10127
10473
  RequestId?: string
10128
10474
  }
10129
10475
 
10476
+ /**
10477
+ * 独占实例
10478
+ */
10479
+ export interface ExclusiveInstance {
10480
+ /**
10481
+ * 配置中心类型[Registration、Configuration]
10482
+ 注意:此字段可能返回 null,表示取不到有效值。
10483
+ */
10484
+ CenterType?: string
10485
+ /**
10486
+ * 实例id
10487
+ 注意:此字段可能返回 null,表示取不到有效值。
10488
+ */
10489
+ InstanceId?: string
10490
+ /**
10491
+ * 实例类型[Polaris]
10492
+ 注意:此字段可能返回 null,表示取不到有效值。
10493
+ */
10494
+ InstanceType?: string
10495
+ /**
10496
+ * 实例名称
10497
+ 注意:此字段可能返回 null,表示取不到有效值。
10498
+ */
10499
+ InstanceName?: string
10500
+ /**
10501
+ * 实例地域id
10502
+ 注意:此字段可能返回 null,表示取不到有效值。
10503
+ */
10504
+ RegionId?: string
10505
+ /**
10506
+ * 实例命名空间ID
10507
+ 注意:此字段可能返回 null,表示取不到有效值。
10508
+ */
10509
+ InstanceNamespaceId?: string
10510
+ }
10511
+
10130
10512
  /**
10131
10513
  * DeleteApplication请求参数结构体
10132
10514
  */
@@ -10424,7 +10806,13 @@ export interface ApiVersionArray {
10424
10806
  /**
10425
10807
  * TSF Envoy网关服务配置
10426
10808
  */
10427
- export type GatewayConfig = null
10809
+ export interface GatewayConfig {
10810
+ /**
10811
+ * 服务名称
10812
+ 注意:此字段可能返回 null,表示取不到有效值。
10813
+ */
10814
+ Name: string
10815
+ }
10428
10816
 
10429
10817
  /**
10430
10818
  * 描述配置项绑定的部署组
@@ -10909,72 +11297,117 @@ export interface ApplicationForPage {
10909
11297
  * 应用ID
10910
11298
  注意:此字段可能返回 null,表示取不到有效值。
10911
11299
  */
10912
- ApplicationId: string
11300
+ ApplicationId?: string
10913
11301
  /**
10914
11302
  * 应用名称
10915
11303
  注意:此字段可能返回 null,表示取不到有效值。
10916
11304
  */
10917
- ApplicationName: string
11305
+ ApplicationName?: string
10918
11306
  /**
10919
11307
  * 应用描述
10920
11308
  注意:此字段可能返回 null,表示取不到有效值。
10921
11309
  */
10922
- ApplicationDesc: string
11310
+ ApplicationDesc?: string
10923
11311
  /**
10924
11312
  * 应用类型
10925
11313
  注意:此字段可能返回 null,表示取不到有效值。
10926
11314
  */
10927
- ApplicationType: string
11315
+ ApplicationType?: string
10928
11316
  /**
10929
11317
  * 微服务类型
10930
11318
  注意:此字段可能返回 null,表示取不到有效值。
10931
11319
  */
10932
- MicroserviceType: string
11320
+ MicroserviceType?: string
10933
11321
  /**
10934
11322
  * 编程语言
10935
11323
  注意:此字段可能返回 null,表示取不到有效值。
10936
11324
  */
10937
- ProgLang: string
11325
+ ProgLang?: string
10938
11326
  /**
10939
11327
  * 创建时间
10940
11328
  注意:此字段可能返回 null,表示取不到有效值。
10941
11329
  */
10942
- CreateTime: string
11330
+ CreateTime?: string
10943
11331
  /**
10944
11332
  * 更新时间
10945
11333
  注意:此字段可能返回 null,表示取不到有效值。
10946
11334
  */
10947
- UpdateTime: string
11335
+ UpdateTime?: string
10948
11336
  /**
10949
11337
  * 应用资源类型
10950
11338
  注意:此字段可能返回 null,表示取不到有效值。
10951
11339
  */
10952
- ApplicationResourceType: string
11340
+ ApplicationResourceType?: string
10953
11341
  /**
10954
11342
  * 应用runtime类型
10955
11343
  注意:此字段可能返回 null,表示取不到有效值。
10956
11344
  */
10957
- ApplicationRuntimeType: string
11345
+ ApplicationRuntimeType?: string
10958
11346
  /**
10959
11347
  * Apigateway的serviceId
10960
11348
  注意:此字段可能返回 null,表示取不到有效值。
10961
11349
  */
10962
- ApigatewayServiceId: string
11350
+ ApigatewayServiceId?: string
10963
11351
  /**
10964
11352
  * 应用备注名
10965
11353
  注意:此字段可能返回 null,表示取不到有效值。
10966
11354
  */
10967
- ApplicationRemarkName: string
11355
+ ApplicationRemarkName?: string
10968
11356
  /**
10969
11357
  * 服务配置信息列表
10970
11358
  注意:此字段可能返回 null,表示取不到有效值。
10971
11359
  */
10972
- ServiceConfigList: Array<ServiceConfig>
11360
+ ServiceConfigList?: Array<ServiceConfig>
10973
11361
  /**
10974
11362
  * IgnoreCreateImageRepository
10975
11363
  注意:此字段可能返回 null,表示取不到有效值。
10976
11364
  */
10977
11365
  IgnoreCreateImageRepository?: boolean
11366
+ /**
11367
+ * Apm业务系统id
11368
+ 注意:此字段可能返回 null,表示取不到有效值。
11369
+ */
11370
+ ApmInstanceId?: string
11371
+ /**
11372
+ * Apm业务系统Name
11373
+ 注意:此字段可能返回 null,表示取不到有效值。
11374
+ */
11375
+ ApmInstanceName?: string
11376
+ /**
11377
+ * 同步删除镜像仓库
11378
+ 注意:此字段可能返回 null,表示取不到有效值。
11379
+ */
11380
+ SyncDeleteImageRepository?: boolean
11381
+ /**
11382
+ * 应用微服务子类型
11383
+ 注意:此字段可能返回 null,表示取不到有效值。
11384
+ */
11385
+ MicroserviceSubType?: string
11386
+ /**
11387
+ * 应用编程语言类型
11388
+ 注意:此字段可能返回 null,表示取不到有效值。
11389
+ */
11390
+ ProgramLanguage?: string
11391
+ /**
11392
+ * 开发框架类型[SpringCloud,Dubbo,Go-GRPC,Other]
11393
+ 注意:此字段可能返回 null,表示取不到有效值。
11394
+ */
11395
+ FrameworkType?: string
11396
+ /**
11397
+ * 注册配置治理信息
11398
+ 注意:此字段可能返回 null,表示取不到有效值。
11399
+ */
11400
+ ServiceGovernanceConfig?: ServiceGovernanceConfig
11401
+ /**
11402
+ * 微服务类型列表
11403
+ 注意:此字段可能返回 null,表示取不到有效值。
11404
+ */
11405
+ MicroserviceTypeList?: Array<string>
11406
+ /**
11407
+ * 是否同时创建镜像仓库
11408
+ 注意:此字段可能返回 null,表示取不到有效值。
11409
+ */
11410
+ CreateSameNameImageRepository?: boolean
10978
11411
  }
10979
11412
 
10980
11413
  /**
@@ -11346,6 +11779,10 @@ export interface DescribeApplicationsRequest {
11346
11779
  * IdList
11347
11780
  */
11348
11781
  ApplicationIdList?: Array<string>
11782
+ /**
11783
+ * 查询多种微服务类型的应用
11784
+ */
11785
+ MicroserviceTypeList?: Array<string>
11349
11786
  }
11350
11787
 
11351
11788
  /**
@@ -11449,7 +11886,7 @@ export interface DescribeContainerEventsResponse {
11449
11886
  * events 分页列表
11450
11887
  注意:此字段可能返回 null,表示取不到有效值。
11451
11888
  */
11452
- Result: TsfPageContainerEvent
11889
+ Result?: TsfPageContainerEvent
11453
11890
  /**
11454
11891
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11455
11892
  */
@@ -11944,6 +12381,32 @@ export interface DescribeTaskDetailResponse {
11944
12381
  RequestId?: string
11945
12382
  }
11946
12383
 
12384
+ /**
12385
+ * 空目录选项
12386
+ */
12387
+ export interface EmptyDirOption {
12388
+ /**
12389
+ * -
12390
+ 注意:此字段可能返回 null,表示取不到有效值。
12391
+ */
12392
+ EnableMemory?: boolean
12393
+ /**
12394
+ * -
12395
+ 注意:此字段可能返回 null,表示取不到有效值。
12396
+ */
12397
+ StorageCapacity?: number
12398
+ /**
12399
+ * -
12400
+ 注意:此字段可能返回 null,表示取不到有效值。
12401
+ */
12402
+ StorageUnit?: string
12403
+ /**
12404
+ * -
12405
+ 注意:此字段可能返回 null,表示取不到有效值。
12406
+ */
12407
+ SizeLimit?: string
12408
+ }
12409
+
11947
12410
  /**
11948
12411
  * ExpandGroup请求参数结构体
11949
12412
  */
@@ -12084,72 +12547,77 @@ export interface GroupPod {
12084
12547
  * 实例名称(对应到kubernetes的pod名称)
12085
12548
  注意:此字段可能返回 null,表示取不到有效值。
12086
12549
  */
12087
- PodName: string
12550
+ PodName?: string
12088
12551
  /**
12089
12552
  * 实例ID(对应到kubernetes的pod id)
12090
12553
  注意:此字段可能返回 null,表示取不到有效值。
12091
12554
  */
12092
- PodId: string
12555
+ PodId?: string
12093
12556
  /**
12094
12557
  * 实例状态,请参考后面的实例以及容器的状态定义。启动中(pod 未 ready):Starting;运行中:Running;异常:Abnormal;停止:Stopped;
12095
12558
  注意:此字段可能返回 null,表示取不到有效值。
12096
12559
  */
12097
- Status: string
12560
+ Status?: string
12098
12561
  /**
12099
12562
  * 实例处于当前状态的原因,例如容器下载镜像失败
12100
12563
  注意:此字段可能返回 null,表示取不到有效值。
12101
12564
  */
12102
- Reason: string
12565
+ Reason?: string
12103
12566
  /**
12104
12567
  * 主机IP
12105
12568
  注意:此字段可能返回 null,表示取不到有效值。
12106
12569
  */
12107
- NodeIp: string
12570
+ NodeIp?: string
12108
12571
  /**
12109
12572
  * 实例IP
12110
12573
  注意:此字段可能返回 null,表示取不到有效值。
12111
12574
  */
12112
- Ip: string
12575
+ Ip?: string
12113
12576
  /**
12114
12577
  * 实例中容器的重启次数
12115
12578
  注意:此字段可能返回 null,表示取不到有效值。
12116
12579
  */
12117
- RestartCount: number
12580
+ RestartCount?: number
12118
12581
  /**
12119
12582
  * 实例中已就绪容器的个数
12120
12583
  注意:此字段可能返回 null,表示取不到有效值。
12121
12584
  */
12122
- ReadyCount: number
12585
+ ReadyCount?: number
12123
12586
  /**
12124
12587
  * 运行时长
12125
12588
  注意:此字段可能返回 null,表示取不到有效值。
12126
12589
  */
12127
- Runtime: string
12590
+ Runtime?: string
12128
12591
  /**
12129
12592
  * 实例启动时间
12130
12593
  注意:此字段可能返回 null,表示取不到有效值。
12131
12594
  */
12132
- CreatedAt: string
12595
+ CreatedAt?: string
12133
12596
  /**
12134
12597
  * 服务实例状态
12135
12598
  注意:此字段可能返回 null,表示取不到有效值。
12136
12599
  */
12137
- ServiceInstanceStatus: string
12600
+ ServiceInstanceStatus?: string
12138
12601
  /**
12139
12602
  * 机器实例可使用状态
12140
12603
  注意:此字段可能返回 null,表示取不到有效值。
12141
12604
  */
12142
- InstanceAvailableStatus: string
12605
+ InstanceAvailableStatus?: string
12143
12606
  /**
12144
12607
  * 机器实例状态
12145
12608
  注意:此字段可能返回 null,表示取不到有效值。
12146
12609
  */
12147
- InstanceStatus: string
12610
+ InstanceStatus?: string
12148
12611
  /**
12149
12612
  * 节点实例id
12150
12613
  注意:此字段可能返回 null,表示取不到有效值。
12151
12614
  */
12152
- NodeInstanceId: string
12615
+ NodeInstanceId?: string
12616
+ /**
12617
+ * 预期副本数
12618
+ 注意:此字段可能返回 null,表示取不到有效值。
12619
+ */
12620
+ SpecTotalCount?: string
12153
12621
  }
12154
12622
 
12155
12623
  /**
@@ -12283,6 +12751,22 @@ export interface DescribeConfigReleasesRequest {
12283
12751
  ApplicationId?: string
12284
12752
  }
12285
12753
 
12754
+ /**
12755
+ * ValueFrom 通用结构
12756
+ */
12757
+ export interface CommonRef {
12758
+ /**
12759
+ * 名称
12760
+ 注意:此字段可能返回 null,表示取不到有效值。
12761
+ */
12762
+ Name?: string
12763
+ /**
12764
+ * Key值
12765
+ 注意:此字段可能返回 null,表示取不到有效值。
12766
+ */
12767
+ Key?: string
12768
+ }
12769
+
12286
12770
  /**
12287
12771
  * 标准输出日志
12288
12772
  */
@@ -13138,6 +13622,14 @@ export interface DescribePodInstancesRequest {
13138
13622
  * 过滤字段
13139
13623
  */
13140
13624
  PodNameList?: Array<string>
13625
+ /**
13626
+ * 新老版本pod批次标识
13627
+ */
13628
+ DeployVersion?: string
13629
+ /**
13630
+ * 任务ID
13631
+ */
13632
+ TaskId?: string
13141
13633
  }
13142
13634
 
13143
13635
  /**
@@ -13238,6 +13730,22 @@ export interface DeliveryConfigBindGroup {
13238
13730
  KafkaInfos?: Array<DeliveryKafkaInfo>
13239
13731
  }
13240
13732
 
13733
+ /**
13734
+ * 自定义Pod调度规则
13735
+ */
13736
+ export interface CustomPodSchedule {
13737
+ /**
13738
+ * -
13739
+ 注意:此字段可能返回 null,表示取不到有效值。
13740
+ */
13741
+ ForceSchedule?: ForceSchedule
13742
+ /**
13743
+ * -
13744
+ 注意:此字段可能返回 null,表示取不到有效值。
13745
+ */
13746
+ TrySchedule?: TrySchedule
13747
+ }
13748
+
13241
13749
  /**
13242
13750
  * DescribeConfigs请求参数结构体
13243
13751
  */
@@ -13312,12 +13820,17 @@ export interface TsfPageApplication {
13312
13820
  * 应用总数目
13313
13821
  注意:此字段可能返回 null,表示取不到有效值。
13314
13822
  */
13315
- TotalCount: number
13823
+ TotalCount?: number
13316
13824
  /**
13317
13825
  * 应用信息列表
13318
13826
  注意:此字段可能返回 null,表示取不到有效值。
13319
13827
  */
13320
- Content: Array<ApplicationForPage>
13828
+ Content?: Array<ApplicationForPage>
13829
+ /**
13830
+ * 获取部署组实例列表返回的原始批次个数
13831
+ 注意:此字段可能返回 null,表示取不到有效值。
13832
+ */
13833
+ SpecTotalCount?: number
13321
13834
  }
13322
13835
 
13323
13836
  /**
@@ -13599,7 +14112,7 @@ export interface Config {
13599
14112
  }
13600
14113
 
13601
14114
  /**
13602
- * 端口对象
14115
+ * 端口对象
13603
14116
  */
13604
14117
  export interface ProtocolPort {
13605
14118
  /**
@@ -13619,6 +14132,11 @@ export interface ProtocolPort {
13619
14132
  注意:此字段可能返回 null,表示取不到有效值。
13620
14133
  */
13621
14134
  NodePort?: number
14135
+ /**
14136
+ * 端口名称
14137
+ 注意:此字段可能返回 null,表示取不到有效值。
14138
+ */
14139
+ Name?: string
13622
14140
  }
13623
14141
 
13624
14142
  /**
@@ -14166,6 +14684,27 @@ export interface DescribeInvocationMetricDataPointResponse {
14166
14684
  RequestId?: string
14167
14685
  }
14168
14686
 
14687
+ /**
14688
+ * 注册配置治理信息
14689
+ */
14690
+ export interface ServiceGovernanceConfig {
14691
+ /**
14692
+ * 是否开启服务注册治理
14693
+ 注意:此字段可能返回 null,表示取不到有效值。
14694
+ */
14695
+ EnableGovernance?: boolean
14696
+ /**
14697
+ * 服务治理类型
14698
+ 注意:此字段可能返回 null,表示取不到有效值。
14699
+ */
14700
+ GovernanceType?: string
14701
+ /**
14702
+ * 独享实例列表
14703
+ 注意:此字段可能返回 null,表示取不到有效值。
14704
+ */
14705
+ ExclusiveInstances?: Array<ExclusiveInstance>
14706
+ }
14707
+
14169
14708
  /**
14170
14709
  * DisableUnitRule返回参数结构体
14171
14710
  */
@@ -14205,6 +14744,18 @@ export interface ModifyApplicationRequest {
14205
14744
  * 服务配置信息列表
14206
14745
  */
14207
14746
  ServiceConfigList?: Array<ServiceConfig>
14747
+ /**
14748
+ * 应用的微服务类型
14749
+ */
14750
+ MicroserviceType?: string
14751
+ /**
14752
+ * 注册配置治理信息
14753
+ */
14754
+ ServiceGovernanceConfig?: ServiceGovernanceConfig
14755
+ /**
14756
+ * 应用开发框架
14757
+ */
14758
+ FrameworkType?: string
14208
14759
  }
14209
14760
 
14210
14761
  /**
@@ -14828,6 +15379,27 @@ export interface TsfPageSimpleApplication {
14828
15379
  Content: Array<SimpleApplication>
14829
15380
  }
14830
15381
 
15382
+ /**
15383
+ * 亲和规则
15384
+ */
15385
+ export interface Affinity {
15386
+ /**
15387
+ * -
15388
+ 注意:此字段可能返回 null,表示取不到有效值。
15389
+ */
15390
+ Scope?: string
15391
+ /**
15392
+ * -
15393
+ 注意:此字段可能返回 null,表示取不到有效值。
15394
+ */
15395
+ Weight?: string
15396
+ /**
15397
+ * -
15398
+ 注意:此字段可能返回 null,表示取不到有效值。
15399
+ */
15400
+ Paths?: Array<CommonOption>
15401
+ }
15402
+
14831
15403
  /**
14832
15404
  * 属性字段
14833
15405
  */
@@ -15704,7 +16276,7 @@ export interface CreateGroupResponse {
15704
16276
  * groupId, null表示创建失败
15705
16277
  注意:此字段可能返回 null,表示取不到有效值。
15706
16278
  */
15707
- Result: string
16279
+ Result?: string
15708
16280
  /**
15709
16281
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
15710
16282
  */