@@ -620,6 +620,9 @@ public static class TrafficControlTasks extends TeaModel {
620620 @ com .aliyun .core .annotation .NameInMap ("EffectiveSceneIds" )
621621 private java .util .List <Integer > effectiveSceneIds ;
622622
623+ @ com .aliyun .core .annotation .NameInMap ("EffectiveSceneNameList" )
624+ private java .util .List <String > effectiveSceneNameList ;
625+
623626 @ com .aliyun .core .annotation .NameInMap ("EffectiveSceneNames" )
624627 private java .util .List <Integer > effectiveSceneNames ;
625628
@@ -680,6 +683,9 @@ public static class TrafficControlTasks extends TeaModel {
680683 @ com .aliyun .core .annotation .NameInMap ("ServiceId" )
681684 private String serviceId ;
682685
686+ @ com .aliyun .core .annotation .NameInMap ("ServiceIdList" )
687+ private java .util .List <Integer > serviceIdList ;
688+
683689 @ com .aliyun .core .annotation .NameInMap ("ServiceIds" )
684690 private java .util .List <String > serviceIds ;
685691
@@ -720,6 +726,7 @@ private TrafficControlTasks(Builder builder) {
720726 this .controlType = builder .controlType ;
721727 this .description = builder .description ;
722728 this .effectiveSceneIds = builder .effectiveSceneIds ;
729+ this .effectiveSceneNameList = builder .effectiveSceneNameList ;
723730 this .effectiveSceneNames = builder .effectiveSceneNames ;
724731 this .endTime = builder .endTime ;
725732 this .everPublished = builder .everPublished ;
@@ -740,6 +747,7 @@ private TrafficControlTasks(Builder builder) {
740747 this .sceneId = builder .sceneId ;
741748 this .sceneName = builder .sceneName ;
742749 this .serviceId = builder .serviceId ;
750+ this .serviceIdList = builder .serviceIdList ;
743751 this .serviceIds = builder .serviceIds ;
744752 this .startTime = builder .startTime ;
745753 this .statisBahaviorConditionExpress = builder .statisBahaviorConditionExpress ;
@@ -803,6 +811,13 @@ public java.util.List<Integer> getEffectiveSceneIds() {
803811 return this .effectiveSceneIds ;
804812 }
805813
814+ /**
815+ * @return effectiveSceneNameList
816+ */
817+ public java .util .List <String > getEffectiveSceneNameList () {
818+ return this .effectiveSceneNameList ;
819+ }
820+
806821 /**
807822 * @return effectiveSceneNames
808823 */
@@ -943,6 +958,13 @@ public String getServiceId() {
943958 return this .serviceId ;
944959 }
945960
961+ /**
962+ * @return serviceIdList
963+ */
964+ public java .util .List <Integer > getServiceIdList () {
965+ return this .serviceIdList ;
966+ }
967+
946968 /**
947969 * @return serviceIds
948970 */
@@ -1027,6 +1049,7 @@ public static final class Builder {
10271049 private String controlType ;
10281050 private String description ;
10291051 private java .util .List <Integer > effectiveSceneIds ;
1052+ private java .util .List <String > effectiveSceneNameList ;
10301053 private java .util .List <Integer > effectiveSceneNames ;
10311054 private String endTime ;
10321055 private Boolean everPublished ;
@@ -1047,6 +1070,7 @@ public static final class Builder {
10471070 private String sceneId ;
10481071 private String sceneName ;
10491072 private String serviceId ;
1073+ private java .util .List <Integer > serviceIdList ;
10501074 private java .util .List <String > serviceIds ;
10511075 private String startTime ;
10521076 private String statisBahaviorConditionExpress ;
@@ -1069,6 +1093,7 @@ private Builder(TrafficControlTasks model) {
10691093 this .controlType = model .controlType ;
10701094 this .description = model .description ;
10711095 this .effectiveSceneIds = model .effectiveSceneIds ;
1096+ this .effectiveSceneNameList = model .effectiveSceneNameList ;
10721097 this .effectiveSceneNames = model .effectiveSceneNames ;
10731098 this .endTime = model .endTime ;
10741099 this .everPublished = model .everPublished ;
@@ -1089,6 +1114,7 @@ private Builder(TrafficControlTasks model) {
10891114 this .sceneId = model .sceneId ;
10901115 this .sceneName = model .sceneName ;
10911116 this .serviceId = model .serviceId ;
1117+ this .serviceIdList = model .serviceIdList ;
10921118 this .serviceIds = model .serviceIds ;
10931119 this .startTime = model .startTime ;
10941120 this .statisBahaviorConditionExpress = model .statisBahaviorConditionExpress ;
@@ -1150,6 +1176,14 @@ public Builder effectiveSceneIds(java.util.List<Integer> effectiveSceneIds) {
11501176 return this ;
11511177 }
11521178
1179+ /**
1180+ * EffectiveSceneNameList.
1181+ */
1182+ public Builder effectiveSceneNameList (java .util .List <String > effectiveSceneNameList ) {
1183+ this .effectiveSceneNameList = effectiveSceneNameList ;
1184+ return this ;
1185+ }
1186+
11531187 /**
11541188 * EffectiveSceneNames.
11551189 */
@@ -1310,6 +1344,14 @@ public Builder serviceId(String serviceId) {
13101344 return this ;
13111345 }
13121346
1347+ /**
1348+ * ServiceIdList.
1349+ */
1350+ public Builder serviceIdList (java .util .List <Integer > serviceIdList ) {
1351+ this .serviceIdList = serviceIdList ;
1352+ return this ;
1353+ }
1354+
13131355 /**
13141356 * ServiceIds.
13151357 */
0 commit comments