@@ -53,6 +53,9 @@ public class AclForDescribeAclsOutput {
5353 @ SerializedName ("ProjectName" )
5454 private String projectName = null ;
5555
56+ @ SerializedName ("ServiceManaged" )
57+ private String serviceManaged = null ;
58+
5659 @ SerializedName ("Status" )
5760 private String status = null ;
5861
@@ -196,6 +199,24 @@ public void setProjectName(String projectName) {
196199 this .projectName = projectName ;
197200 }
198201
202+ public AclForDescribeAclsOutput serviceManaged (String serviceManaged ) {
203+ this .serviceManaged = serviceManaged ;
204+ return this ;
205+ }
206+
207+ /**
208+ * Get serviceManaged
209+ * @return serviceManaged
210+ **/
211+ @ Schema (description = "" )
212+ public String getServiceManaged () {
213+ return serviceManaged ;
214+ }
215+
216+ public void setServiceManaged (String serviceManaged ) {
217+ this .serviceManaged = serviceManaged ;
218+ }
219+
199220 public AclForDescribeAclsOutput status (String status ) {
200221 this .status = status ;
201222 return this ;
@@ -276,14 +297,15 @@ public boolean equals(java.lang.Object o) {
276297 Objects .equals (this .description , aclForDescribeAclsOutput .description ) &&
277298 Objects .equals (this .listeners , aclForDescribeAclsOutput .listeners ) &&
278299 Objects .equals (this .projectName , aclForDescribeAclsOutput .projectName ) &&
300+ Objects .equals (this .serviceManaged , aclForDescribeAclsOutput .serviceManaged ) &&
279301 Objects .equals (this .status , aclForDescribeAclsOutput .status ) &&
280302 Objects .equals (this .tags , aclForDescribeAclsOutput .tags ) &&
281303 Objects .equals (this .updateTime , aclForDescribeAclsOutput .updateTime );
282304 }
283305
284306 @ Override
285307 public int hashCode () {
286- return Objects .hash (aclEntryCount , aclId , aclName , createTime , description , listeners , projectName , status , tags , updateTime );
308+ return Objects .hash (aclEntryCount , aclId , aclName , createTime , description , listeners , projectName , serviceManaged , status , tags , updateTime );
287309 }
288310
289311
@@ -299,6 +321,7 @@ public String toString() {
299321 sb .append (" description: " ).append (toIndentedString (description )).append ("\n " );
300322 sb .append (" listeners: " ).append (toIndentedString (listeners )).append ("\n " );
301323 sb .append (" projectName: " ).append (toIndentedString (projectName )).append ("\n " );
324+ sb .append (" serviceManaged: " ).append (toIndentedString (serviceManaged )).append ("\n " );
302325 sb .append (" status: " ).append (toIndentedString (status )).append ("\n " );
303326 sb .append (" tags: " ).append (toIndentedString (tags )).append ("\n " );
304327 sb .append (" updateTime: " ).append (toIndentedString (updateTime )).append ("\n " );
0 commit comments