@@ -29,6 +29,9 @@ public class DescribePolarFsAttributeResponseBody extends TeaModel {
2929 @ com .aliyun .core .annotation .NameInMap ("BandwidthBaseLine" )
3030 private Double bandwidthBaseLine ;
3131
32+ @ com .aliyun .core .annotation .NameInMap ("BucketId" )
33+ private String bucketId ;
34+
3235 @ com .aliyun .core .annotation .NameInMap ("Category" )
3336 private String category ;
3437
@@ -47,6 +50,9 @@ public class DescribePolarFsAttributeResponseBody extends TeaModel {
4750 @ com .aliyun .core .annotation .NameInMap ("Expired" )
4851 private String expired ;
4952
53+ @ com .aliyun .core .annotation .NameInMap ("FileSystemId" )
54+ private String fileSystemId ;
55+
5056 @ com .aliyun .core .annotation .NameInMap ("LockMode" )
5157 private String lockMode ;
5258
@@ -83,6 +89,9 @@ public class DescribePolarFsAttributeResponseBody extends TeaModel {
8389 @ com .aliyun .core .annotation .NameInMap ("RelativeDbClusterId" )
8490 private String relativeDbClusterId ;
8591
92+ @ com .aliyun .core .annotation .NameInMap ("RelativePfsClusterId" )
93+ private String relativePfsClusterId ;
94+
8695 @ com .aliyun .core .annotation .NameInMap ("RequestId" )
8796 private String requestId ;
8897
@@ -112,12 +121,14 @@ private DescribePolarFsAttributeResponseBody(Builder builder) {
112121 this .acceleratingEnable = builder .acceleratingEnable ;
113122 this .bandwidth = builder .bandwidth ;
114123 this .bandwidthBaseLine = builder .bandwidthBaseLine ;
124+ this .bucketId = builder .bucketId ;
115125 this .category = builder .category ;
116126 this .clientDownloadPath = builder .clientDownloadPath ;
117127 this .createTime = builder .createTime ;
118128 this .DBType = builder .DBType ;
119129 this .expireTime = builder .expireTime ;
120130 this .expired = builder .expired ;
131+ this .fileSystemId = builder .fileSystemId ;
121132 this .lockMode = builder .lockMode ;
122133 this .metaUrl = builder .metaUrl ;
123134 this .minorVersion = builder .minorVersion ;
@@ -130,6 +141,7 @@ private DescribePolarFsAttributeResponseBody(Builder builder) {
130141 this .polarFsVersion = builder .polarFsVersion ;
131142 this .regionId = builder .regionId ;
132143 this .relativeDbClusterId = builder .relativeDbClusterId ;
144+ this .relativePfsClusterId = builder .relativePfsClusterId ;
133145 this .requestId = builder .requestId ;
134146 this .securityGroupId = builder .securityGroupId ;
135147 this .storageSpace = builder .storageSpace ;
@@ -180,6 +192,13 @@ public Double getBandwidthBaseLine() {
180192 return this .bandwidthBaseLine ;
181193 }
182194
195+ /**
196+ * @return bucketId
197+ */
198+ public String getBucketId () {
199+ return this .bucketId ;
200+ }
201+
183202 /**
184203 * @return category
185204 */
@@ -222,6 +241,13 @@ public String getExpired() {
222241 return this .expired ;
223242 }
224243
244+ /**
245+ * @return fileSystemId
246+ */
247+ public String getFileSystemId () {
248+ return this .fileSystemId ;
249+ }
250+
225251 /**
226252 * @return lockMode
227253 */
@@ -306,6 +332,13 @@ public String getRelativeDbClusterId() {
306332 return this .relativeDbClusterId ;
307333 }
308334
335+ /**
336+ * @return relativePfsClusterId
337+ */
338+ public String getRelativePfsClusterId () {
339+ return this .relativePfsClusterId ;
340+ }
341+
309342 /**
310343 * @return requestId
311344 */
@@ -367,12 +400,14 @@ public static final class Builder {
367400 private String acceleratingEnable ;
368401 private Double bandwidth ;
369402 private Double bandwidthBaseLine ;
403+ private String bucketId ;
370404 private String category ;
371405 private String clientDownloadPath ;
372406 private String createTime ;
373407 private String DBType ;
374408 private String expireTime ;
375409 private String expired ;
410+ private String fileSystemId ;
376411 private String lockMode ;
377412 private String metaUrl ;
378413 private String minorVersion ;
@@ -385,6 +420,7 @@ public static final class Builder {
385420 private String polarFsVersion ;
386421 private String regionId ;
387422 private String relativeDbClusterId ;
423+ private String relativePfsClusterId ;
388424 private String requestId ;
389425 private String securityGroupId ;
390426 private Double storageSpace ;
@@ -402,12 +438,14 @@ private Builder(DescribePolarFsAttributeResponseBody model) {
402438 this .acceleratingEnable = model .acceleratingEnable ;
403439 this .bandwidth = model .bandwidth ;
404440 this .bandwidthBaseLine = model .bandwidthBaseLine ;
441+ this .bucketId = model .bucketId ;
405442 this .category = model .category ;
406443 this .clientDownloadPath = model .clientDownloadPath ;
407444 this .createTime = model .createTime ;
408445 this .DBType = model .DBType ;
409446 this .expireTime = model .expireTime ;
410447 this .expired = model .expired ;
448+ this .fileSystemId = model .fileSystemId ;
411449 this .lockMode = model .lockMode ;
412450 this .metaUrl = model .metaUrl ;
413451 this .minorVersion = model .minorVersion ;
@@ -420,6 +458,7 @@ private Builder(DescribePolarFsAttributeResponseBody model) {
420458 this .polarFsVersion = model .polarFsVersion ;
421459 this .regionId = model .regionId ;
422460 this .relativeDbClusterId = model .relativeDbClusterId ;
461+ this .relativePfsClusterId = model .relativePfsClusterId ;
423462 this .requestId = model .requestId ;
424463 this .securityGroupId = model .securityGroupId ;
425464 this .storageSpace = model .storageSpace ;
@@ -462,6 +501,14 @@ public Builder bandwidthBaseLine(Double bandwidthBaseLine) {
462501 return this ;
463502 }
464503
504+ /**
505+ * BucketId.
506+ */
507+ public Builder bucketId (String bucketId ) {
508+ this .bucketId = bucketId ;
509+ return this ;
510+ }
511+
465512 /**
466513 * Category.
467514 */
@@ -510,6 +557,14 @@ public Builder expired(String expired) {
510557 return this ;
511558 }
512559
560+ /**
561+ * FileSystemId.
562+ */
563+ public Builder fileSystemId (String fileSystemId ) {
564+ this .fileSystemId = fileSystemId ;
565+ return this ;
566+ }
567+
513568 /**
514569 * LockMode.
515570 */
@@ -606,6 +661,14 @@ public Builder relativeDbClusterId(String relativeDbClusterId) {
606661 return this ;
607662 }
608663
664+ /**
665+ * RelativePfsClusterId.
666+ */
667+ public Builder relativePfsClusterId (String relativePfsClusterId ) {
668+ this .relativePfsClusterId = relativePfsClusterId ;
669+ return this ;
670+ }
671+
609672 /**
610673 * <p>Id of the request</p>
611674 *
0 commit comments