@@ -19,6 +19,9 @@ public class ListAgentlessRegionResponseBody extends TeaModel {
1919 @ NameInMap ("RequestId" )
2020 public String requestId ;
2121
22+ @ NameInMap ("VendorRegionList" )
23+ public java .util .List <ListAgentlessRegionResponseBodyVendorRegionList > vendorRegionList ;
24+
2225 public static ListAgentlessRegionResponseBody build (java .util .Map <String , ?> map ) throws Exception {
2326 ListAgentlessRegionResponseBody self = new ListAgentlessRegionResponseBody ();
2427 return TeaModel .build (map , self );
@@ -40,4 +43,42 @@ public String getRequestId() {
4043 return this .requestId ;
4144 }
4245
46+ public ListAgentlessRegionResponseBody setVendorRegionList (java .util .List <ListAgentlessRegionResponseBodyVendorRegionList > vendorRegionList ) {
47+ this .vendorRegionList = vendorRegionList ;
48+ return this ;
49+ }
50+ public java .util .List <ListAgentlessRegionResponseBodyVendorRegionList > getVendorRegionList () {
51+ return this .vendorRegionList ;
52+ }
53+
54+ public static class ListAgentlessRegionResponseBodyVendorRegionList extends TeaModel {
55+ @ NameInMap ("RegionId" )
56+ public String regionId ;
57+
58+ @ NameInMap ("Vendor" )
59+ public Integer vendor ;
60+
61+ public static ListAgentlessRegionResponseBodyVendorRegionList build (java .util .Map <String , ?> map ) throws Exception {
62+ ListAgentlessRegionResponseBodyVendorRegionList self = new ListAgentlessRegionResponseBodyVendorRegionList ();
63+ return TeaModel .build (map , self );
64+ }
65+
66+ public ListAgentlessRegionResponseBodyVendorRegionList setRegionId (String regionId ) {
67+ this .regionId = regionId ;
68+ return this ;
69+ }
70+ public String getRegionId () {
71+ return this .regionId ;
72+ }
73+
74+ public ListAgentlessRegionResponseBodyVendorRegionList setVendor (Integer vendor ) {
75+ this .vendor = vendor ;
76+ return this ;
77+ }
78+ public Integer getVendor () {
79+ return this .vendor ;
80+ }
81+
82+ }
83+
4384}
0 commit comments