All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.ens20171110.models.GetOssStorageAndAccByBucketsRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ens20171110.models;

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link GetOssStorageAndAccByBucketsRequest} extends {@link RequestModel}
 *
 * 

GetOssStorageAndAccByBucketsRequest

*/ public class GetOssStorageAndAccByBucketsRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("BucketList") private String bucketList; private GetOssStorageAndAccByBucketsRequest(Builder builder) { super(builder); this.bucketList = builder.bucketList; } public static Builder builder() { return new Builder(); } public static GetOssStorageAndAccByBucketsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bucketList */ public String getBucketList() { return this.bucketList; } public static final class Builder extends Request.Builder { private String bucketList; private Builder() { super(); } private Builder(GetOssStorageAndAccByBucketsRequest request) { super(request); this.bucketList = request.bucketList; } /** *

The information about the bucket.

* * example: *

my-bucket

*/ public Builder bucketList(String bucketList) { this.putQueryParameter("BucketList", bucketList); this.bucketList = bucketList; return this; } @Override public GetOssStorageAndAccByBucketsRequest build() { return new GetOssStorageAndAccByBucketsRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy