index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/GetCreateTableSQLResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.GetCreateTableSQLResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetCreateTableSQLResponse extends AcsResponse {
private String requestId;
private String sQL;
private String accessDeniedDetail;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getSQL() {
return this.sQL;
}
public void setSQL(String sQL) {
this.sQL = sQL;
}
public String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}
public void setAccessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
}
@Override
public GetCreateTableSQLResponse getInstance(UnmarshallerContext context) {
return GetCreateTableSQLResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/GrantOperatorPermissionRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class GrantOperatorPermissionRequest extends RpcAcsRequest<GrantOperatorPermissionResponse> {
private String privileges;
private Long resourceOwnerId;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String expiredTime;
public GrantOperatorPermissionRequest() {
super("adb", "2019-03-15", "GrantOperatorPermission", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getPrivileges() {
return this.privileges;
}
public void setPrivileges(String privileges) {
this.privileges = privileges;
if(privileges != null){
putQueryParameter("Privileges", privileges);
}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getExpiredTime() {
return this.expiredTime;
}
public void setExpiredTime(String expiredTime) {
this.expiredTime = expiredTime;
if(expiredTime != null){
putQueryParameter("ExpiredTime", expiredTime);
}
}
@Override
public Class<GrantOperatorPermissionResponse> getResponseClass() {
return GrantOperatorPermissionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/GrantOperatorPermissionResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.GrantOperatorPermissionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GrantOperatorPermissionResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public GrantOperatorPermissionResponse getInstance(UnmarshallerContext context) {
return GrantOperatorPermissionResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/KillProcessRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class KillProcessRequest extends RpcAcsRequest<KillProcessResponse> {
private Long resourceOwnerId;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String processId;
public KillProcessRequest() {
super("adb", "2019-03-15", "KillProcess", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getProcessId() {
return this.processId;
}
public void setProcessId(String processId) {
this.processId = processId;
if(processId != null){
putQueryParameter("ProcessId", processId);
}
}
@Override
public Class<KillProcessResponse> getResponseClass() {
return KillProcessResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/KillProcessResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.KillProcessResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class KillProcessResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public KillProcessResponse getInstance(UnmarshallerContext context) {
return KillProcessResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ListTagResourcesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ListTagResourcesRequest extends RpcAcsRequest<ListTagResourcesResponse> {
private Long resourceOwnerId;
private String nextToken;
private List<Tag> tags;
private List<String> resourceIds;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String resourceType;
public ListTagResourcesRequest() {
super("adb", "2019-03-15", "ListTagResources", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
if(nextToken != null){
putQueryParameter("NextToken", nextToken);
}
}
public List<Tag> getTags() {
return this.tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
if (tags != null) {
for (int depth1 = 0; depth1 < tags.size(); depth1++) {
putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue());
putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey());
}
}
}
public List<String> getResourceIds() {
return this.resourceIds;
}
public void setResourceIds(List<String> resourceIds) {
this.resourceIds = resourceIds;
if (resourceIds != null) {
for (int i = 0; i < resourceIds.size(); i++) {
putQueryParameter("ResourceId." + (i + 1) , resourceIds.get(i));
}
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
if(resourceType != null){
putQueryParameter("ResourceType", resourceType);
}
}
public static class Tag {
private String value;
private String key;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
@Override
public Class<ListTagResourcesResponse> getResponseClass() {
return ListTagResourcesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ListTagResourcesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ListTagResourcesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListTagResourcesResponse extends AcsResponse {
private String nextToken;
private String requestId;
private List<TagResource> tagResources;
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<TagResource> getTagResources() {
return this.tagResources;
}
public void setTagResources(List<TagResource> tagResources) {
this.tagResources = tagResources;
}
public static class TagResource {
private String resourceType;
private String tagValue;
private String resourceId;
private String tagKey;
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}
public String getTagValue() {
return this.tagValue;
}
public void setTagValue(String tagValue) {
this.tagValue = tagValue;
}
public String getResourceId() {
return this.resourceId;
}
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}
public String getTagKey() {
return this.tagKey;
}
public void setTagKey(String tagKey) {
this.tagKey = tagKey;
}
}
@Override
public ListTagResourcesResponse getInstance(UnmarshallerContext context) {
return ListTagResourcesResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/MigrateDBClusterRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class MigrateDBClusterRequest extends RpcAcsRequest<MigrateDBClusterResponse> {
private Long resourceOwnerId;
private String secondaryZoneId;
private Integer reservedNodeCount;
private String productVersion;
private String storageResource;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private String shardNumber;
private Long ownerId;
private String productForm;
private String secondaryVSwitchId;
private String reservedNodeSize;
private String computeResource;
private String storageResourceSize;
public MigrateDBClusterRequest() {
super("adb", "2019-03-15", "MigrateDBCluster", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getSecondaryZoneId() {
return this.secondaryZoneId;
}
public void setSecondaryZoneId(String secondaryZoneId) {
this.secondaryZoneId = secondaryZoneId;
if(secondaryZoneId != null){
putQueryParameter("SecondaryZoneId", secondaryZoneId);
}
}
public Integer getReservedNodeCount() {
return this.reservedNodeCount;
}
public void setReservedNodeCount(Integer reservedNodeCount) {
this.reservedNodeCount = reservedNodeCount;
if(reservedNodeCount != null){
putQueryParameter("ReservedNodeCount", reservedNodeCount.toString());
}
}
public String getProductVersion() {
return this.productVersion;
}
public void setProductVersion(String productVersion) {
this.productVersion = productVersion;
if(productVersion != null){
putQueryParameter("ProductVersion", productVersion);
}
}
public String getStorageResource() {
return this.storageResource;
}
public void setStorageResource(String storageResource) {
this.storageResource = storageResource;
if(storageResource != null){
putQueryParameter("StorageResource", storageResource);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public String getShardNumber() {
return this.shardNumber;
}
public void setShardNumber(String shardNumber) {
this.shardNumber = shardNumber;
if(shardNumber != null){
putQueryParameter("ShardNumber", shardNumber);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getProductForm() {
return this.productForm;
}
public void setProductForm(String productForm) {
this.productForm = productForm;
if(productForm != null){
putQueryParameter("ProductForm", productForm);
}
}
public String getSecondaryVSwitchId() {
return this.secondaryVSwitchId;
}
public void setSecondaryVSwitchId(String secondaryVSwitchId) {
this.secondaryVSwitchId = secondaryVSwitchId;
if(secondaryVSwitchId != null){
putQueryParameter("SecondaryVSwitchId", secondaryVSwitchId);
}
}
public String getReservedNodeSize() {
return this.reservedNodeSize;
}
public void setReservedNodeSize(String reservedNodeSize) {
this.reservedNodeSize = reservedNodeSize;
if(reservedNodeSize != null){
putQueryParameter("ReservedNodeSize", reservedNodeSize);
}
}
public String getComputeResource() {
return this.computeResource;
}
public void setComputeResource(String computeResource) {
this.computeResource = computeResource;
if(computeResource != null){
putQueryParameter("ComputeResource", computeResource);
}
}
public String getStorageResourceSize() {
return this.storageResourceSize;
}
public void setStorageResourceSize(String storageResourceSize) {
this.storageResourceSize = storageResourceSize;
if(storageResourceSize != null){
putQueryParameter("StorageResourceSize", storageResourceSize);
}
}
@Override
public Class<MigrateDBClusterResponse> getResponseClass() {
return MigrateDBClusterResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/MigrateDBClusterResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.MigrateDBClusterResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class MigrateDBClusterResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public MigrateDBClusterResponse getInstance(UnmarshallerContext context) {
return MigrateDBClusterResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyAccountDescriptionRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyAccountDescriptionRequest extends RpcAcsRequest<ModifyAccountDescriptionResponse> {
private Long resourceOwnerId;
private String accountDescription;
private String accountName;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
public ModifyAccountDescriptionRequest() {
super("adb", "2019-03-15", "ModifyAccountDescription", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getAccountDescription() {
return this.accountDescription;
}
public void setAccountDescription(String accountDescription) {
this.accountDescription = accountDescription;
if(accountDescription != null){
putQueryParameter("AccountDescription", accountDescription);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putQueryParameter("AccountName", accountName);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<ModifyAccountDescriptionResponse> getResponseClass() {
return ModifyAccountDescriptionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyAccountDescriptionResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyAccountDescriptionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyAccountDescriptionResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyAccountDescriptionResponse getInstance(UnmarshallerContext context) {
return ModifyAccountDescriptionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyActiveOperationMaintainConfRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyActiveOperationMaintainConfRequest extends RpcAcsRequest<ModifyActiveOperationMaintainConfResponse> {
private Long resourceOwnerId;
private String cycleTime;
private String securityToken;
private String maintainStartTime;
private String cycleType;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String maintainEndTime;
private Integer status;
public ModifyActiveOperationMaintainConfRequest() {
super("adb", "2019-03-15", "ModifyActiveOperationMaintainConf", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getCycleTime() {
return this.cycleTime;
}
public void setCycleTime(String cycleTime) {
this.cycleTime = cycleTime;
if(cycleTime != null){
putQueryParameter("CycleTime", cycleTime);
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public String getMaintainStartTime() {
return this.maintainStartTime;
}
public void setMaintainStartTime(String maintainStartTime) {
this.maintainStartTime = maintainStartTime;
if(maintainStartTime != null){
putQueryParameter("MaintainStartTime", maintainStartTime);
}
}
public String getCycleType() {
return this.cycleType;
}
public void setCycleType(String cycleType) {
this.cycleType = cycleType;
if(cycleType != null){
putQueryParameter("CycleType", cycleType);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getMaintainEndTime() {
return this.maintainEndTime;
}
public void setMaintainEndTime(String maintainEndTime) {
this.maintainEndTime = maintainEndTime;
if(maintainEndTime != null){
putQueryParameter("MaintainEndTime", maintainEndTime);
}
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status.toString());
}
}
@Override
public Class<ModifyActiveOperationMaintainConfResponse> getResponseClass() {
return ModifyActiveOperationMaintainConfResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyActiveOperationMaintainConfResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyActiveOperationMaintainConfResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyActiveOperationMaintainConfResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyActiveOperationMaintainConfResponse getInstance(UnmarshallerContext context) {
return ModifyActiveOperationMaintainConfResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyActiveOperationTasksRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyActiveOperationTasksRequest extends RpcAcsRequest<ModifyActiveOperationTasksResponse> {
private Long resourceOwnerId;
private String securityToken;
private String switchTime;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String ids;
private Integer immediateStart;
public ModifyActiveOperationTasksRequest() {
super("adb", "2019-03-15", "ModifyActiveOperationTasks", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public String getSwitchTime() {
return this.switchTime;
}
public void setSwitchTime(String switchTime) {
this.switchTime = switchTime;
if(switchTime != null){
putQueryParameter("SwitchTime", switchTime);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getIds() {
return this.ids;
}
public void setIds(String ids) {
this.ids = ids;
if(ids != null){
putQueryParameter("Ids", ids);
}
}
public Integer getImmediateStart() {
return this.immediateStart;
}
public void setImmediateStart(Integer immediateStart) {
this.immediateStart = immediateStart;
if(immediateStart != null){
putQueryParameter("ImmediateStart", immediateStart.toString());
}
}
@Override
public Class<ModifyActiveOperationTasksResponse> getResponseClass() {
return ModifyActiveOperationTasksResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyActiveOperationTasksResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyActiveOperationTasksResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyActiveOperationTasksResponse extends AcsResponse {
private String ids;
private String requestId;
public String getIds() {
return this.ids;
}
public void setIds(String ids) {
this.ids = ids;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyActiveOperationTasksResponse getInstance(UnmarshallerContext context) {
return ModifyActiveOperationTasksResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyAuditLogConfigRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyAuditLogConfigRequest extends RpcAcsRequest<ModifyAuditLogConfigResponse> {
private Long resourceOwnerId;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String auditLogStatus;
public ModifyAuditLogConfigRequest() {
super("adb", "2019-03-15", "ModifyAuditLogConfig", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getAuditLogStatus() {
return this.auditLogStatus;
}
public void setAuditLogStatus(String auditLogStatus) {
this.auditLogStatus = auditLogStatus;
if(auditLogStatus != null){
putQueryParameter("AuditLogStatus", auditLogStatus);
}
}
@Override
public Class<ModifyAuditLogConfigResponse> getResponseClass() {
return ModifyAuditLogConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyAuditLogConfigResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyAuditLogConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyAuditLogConfigResponse extends AcsResponse {
private String requestId;
private Boolean updateSucceed;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getUpdateSucceed() {
return this.updateSucceed;
}
public void setUpdateSucceed(Boolean updateSucceed) {
this.updateSucceed = updateSucceed;
}
@Override
public ModifyAuditLogConfigResponse getInstance(UnmarshallerContext context) {
return ModifyAuditLogConfigResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyAutoRenewAttributeRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyAutoRenewAttributeRequest extends RpcAcsRequest<ModifyAutoRenewAttributeResponse> {
private Long resourceOwnerId;
private String duration;
private String renewalStatus;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String periodUnit;
public ModifyAutoRenewAttributeRequest() {
super("adb", "2019-03-15", "ModifyAutoRenewAttribute", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getDuration() {
return this.duration;
}
public void setDuration(String duration) {
this.duration = duration;
if(duration != null){
putQueryParameter("Duration", duration);
}
}
public String getRenewalStatus() {
return this.renewalStatus;
}
public void setRenewalStatus(String renewalStatus) {
this.renewalStatus = renewalStatus;
if(renewalStatus != null){
putQueryParameter("RenewalStatus", renewalStatus);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getPeriodUnit() {
return this.periodUnit;
}
public void setPeriodUnit(String periodUnit) {
this.periodUnit = periodUnit;
if(periodUnit != null){
putQueryParameter("PeriodUnit", periodUnit);
}
}
@Override
public Class<ModifyAutoRenewAttributeResponse> getResponseClass() {
return ModifyAutoRenewAttributeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyAutoRenewAttributeResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyAutoRenewAttributeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyAutoRenewAttributeResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyAutoRenewAttributeResponse getInstance(UnmarshallerContext context) {
return ModifyAutoRenewAttributeResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyBackupPolicyRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyBackupPolicyRequest extends RpcAcsRequest<ModifyBackupPolicyResponse> {
private Long resourceOwnerId;
private String enableBackupLog;
private String preferredBackupPeriod;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String preferredBackupTime;
private String backupRetentionPeriod;
private Integer logBackupRetentionPeriod;
public ModifyBackupPolicyRequest() {
super("adb", "2019-03-15", "ModifyBackupPolicy", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getEnableBackupLog() {
return this.enableBackupLog;
}
public void setEnableBackupLog(String enableBackupLog) {
this.enableBackupLog = enableBackupLog;
if(enableBackupLog != null){
putQueryParameter("EnableBackupLog", enableBackupLog);
}
}
public String getPreferredBackupPeriod() {
return this.preferredBackupPeriod;
}
public void setPreferredBackupPeriod(String preferredBackupPeriod) {
this.preferredBackupPeriod = preferredBackupPeriod;
if(preferredBackupPeriod != null){
putQueryParameter("PreferredBackupPeriod", preferredBackupPeriod);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getPreferredBackupTime() {
return this.preferredBackupTime;
}
public void setPreferredBackupTime(String preferredBackupTime) {
this.preferredBackupTime = preferredBackupTime;
if(preferredBackupTime != null){
putQueryParameter("PreferredBackupTime", preferredBackupTime);
}
}
public String getBackupRetentionPeriod() {
return this.backupRetentionPeriod;
}
public void setBackupRetentionPeriod(String backupRetentionPeriod) {
this.backupRetentionPeriod = backupRetentionPeriod;
if(backupRetentionPeriod != null){
putQueryParameter("BackupRetentionPeriod", backupRetentionPeriod);
}
}
public Integer getLogBackupRetentionPeriod() {
return this.logBackupRetentionPeriod;
}
public void setLogBackupRetentionPeriod(Integer logBackupRetentionPeriod) {
this.logBackupRetentionPeriod = logBackupRetentionPeriod;
if(logBackupRetentionPeriod != null){
putQueryParameter("LogBackupRetentionPeriod", logBackupRetentionPeriod.toString());
}
}
@Override
public Class<ModifyBackupPolicyResponse> getResponseClass() {
return ModifyBackupPolicyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyBackupPolicyResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyBackupPolicyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyBackupPolicyResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyBackupPolicyResponse getInstance(UnmarshallerContext context) {
return ModifyBackupPolicyResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyClusterConnectionStringRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyClusterConnectionStringRequest extends RpcAcsRequest<ModifyClusterConnectionStringResponse> {
private Long resourceOwnerId;
private String connectionStringPrefix;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String currentConnectionString;
private Integer port;
public ModifyClusterConnectionStringRequest() {
super("adb", "2019-03-15", "ModifyClusterConnectionString", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getConnectionStringPrefix() {
return this.connectionStringPrefix;
}
public void setConnectionStringPrefix(String connectionStringPrefix) {
this.connectionStringPrefix = connectionStringPrefix;
if(connectionStringPrefix != null){
putQueryParameter("ConnectionStringPrefix", connectionStringPrefix);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getCurrentConnectionString() {
return this.currentConnectionString;
}
public void setCurrentConnectionString(String currentConnectionString) {
this.currentConnectionString = currentConnectionString;
if(currentConnectionString != null){
putQueryParameter("CurrentConnectionString", currentConnectionString);
}
}
public Integer getPort() {
return this.port;
}
public void setPort(Integer port) {
this.port = port;
if(port != null){
putQueryParameter("Port", port.toString());
}
}
@Override
public Class<ModifyClusterConnectionStringResponse> getResponseClass() {
return ModifyClusterConnectionStringResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyClusterConnectionStringResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyClusterConnectionStringResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyClusterConnectionStringResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyClusterConnectionStringResponse getInstance(UnmarshallerContext context) {
return ModifyClusterConnectionStringResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterAccessWhiteListRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterAccessWhiteListRequest extends RpcAcsRequest<ModifyDBClusterAccessWhiteListResponse> {
private Long resourceOwnerId;
private String securityIps;
private String dBClusterIPArrayAttribute;
private String modifyMode;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String dBClusterIPArrayName;
public ModifyDBClusterAccessWhiteListRequest() {
super("adb", "2019-03-15", "ModifyDBClusterAccessWhiteList", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getSecurityIps() {
return this.securityIps;
}
public void setSecurityIps(String securityIps) {
this.securityIps = securityIps;
if(securityIps != null){
putQueryParameter("SecurityIps", securityIps);
}
}
public String getDBClusterIPArrayAttribute() {
return this.dBClusterIPArrayAttribute;
}
public void setDBClusterIPArrayAttribute(String dBClusterIPArrayAttribute) {
this.dBClusterIPArrayAttribute = dBClusterIPArrayAttribute;
if(dBClusterIPArrayAttribute != null){
putQueryParameter("DBClusterIPArrayAttribute", dBClusterIPArrayAttribute);
}
}
public String getModifyMode() {
return this.modifyMode;
}
public void setModifyMode(String modifyMode) {
this.modifyMode = modifyMode;
if(modifyMode != null){
putQueryParameter("ModifyMode", modifyMode);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getDBClusterIPArrayName() {
return this.dBClusterIPArrayName;
}
public void setDBClusterIPArrayName(String dBClusterIPArrayName) {
this.dBClusterIPArrayName = dBClusterIPArrayName;
if(dBClusterIPArrayName != null){
putQueryParameter("DBClusterIPArrayName", dBClusterIPArrayName);
}
}
@Override
public Class<ModifyDBClusterAccessWhiteListResponse> getResponseClass() {
return ModifyDBClusterAccessWhiteListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterAccessWhiteListResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyDBClusterAccessWhiteListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterAccessWhiteListResponse extends AcsResponse {
private Integer taskId;
private String requestId;
private String dBClusterId;
public Integer getTaskId() {
return this.taskId;
}
public void setTaskId(Integer taskId) {
this.taskId = taskId;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
}
@Override
public ModifyDBClusterAccessWhiteListResponse getInstance(UnmarshallerContext context) {
return ModifyDBClusterAccessWhiteListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterDescriptionRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterDescriptionRequest extends RpcAcsRequest<ModifyDBClusterDescriptionResponse> {
private Long resourceOwnerId;
private String dBClusterDescription;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
public ModifyDBClusterDescriptionRequest() {
super("adb", "2019-03-15", "ModifyDBClusterDescription", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getDBClusterDescription() {
return this.dBClusterDescription;
}
public void setDBClusterDescription(String dBClusterDescription) {
this.dBClusterDescription = dBClusterDescription;
if(dBClusterDescription != null){
putQueryParameter("DBClusterDescription", dBClusterDescription);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<ModifyDBClusterDescriptionResponse> getResponseClass() {
return ModifyDBClusterDescriptionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterDescriptionResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyDBClusterDescriptionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterDescriptionResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyDBClusterDescriptionResponse getInstance(UnmarshallerContext context) {
return ModifyDBClusterDescriptionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterMaintainTimeRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterMaintainTimeRequest extends RpcAcsRequest<ModifyDBClusterMaintainTimeResponse> {
private Long resourceOwnerId;
private String maintainTime;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
public ModifyDBClusterMaintainTimeRequest() {
super("adb", "2019-03-15", "ModifyDBClusterMaintainTime", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getMaintainTime() {
return this.maintainTime;
}
public void setMaintainTime(String maintainTime) {
this.maintainTime = maintainTime;
if(maintainTime != null){
putQueryParameter("MaintainTime", maintainTime);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<ModifyDBClusterMaintainTimeResponse> getResponseClass() {
return ModifyDBClusterMaintainTimeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterMaintainTimeResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyDBClusterMaintainTimeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterMaintainTimeResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyDBClusterMaintainTimeResponse getInstance(UnmarshallerContext context) {
return ModifyDBClusterMaintainTimeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterPayTypeRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterPayTypeRequest extends RpcAcsRequest<ModifyDBClusterPayTypeResponse> {
private String period;
private String dbClusterId;
private String usedTime;
private String payType;
public ModifyDBClusterPayTypeRequest() {
super("adb", "2019-03-15", "ModifyDBClusterPayType", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getPeriod() {
return this.period;
}
public void setPeriod(String period) {
this.period = period;
if(period != null){
putQueryParameter("Period", period);
}
}
public String getDbClusterId() {
return this.dbClusterId;
}
public void setDbClusterId(String dbClusterId) {
this.dbClusterId = dbClusterId;
if(dbClusterId != null){
putQueryParameter("DbClusterId", dbClusterId);
}
}
public String getUsedTime() {
return this.usedTime;
}
public void setUsedTime(String usedTime) {
this.usedTime = usedTime;
if(usedTime != null){
putQueryParameter("UsedTime", usedTime);
}
}
public String getPayType() {
return this.payType;
}
public void setPayType(String payType) {
this.payType = payType;
if(payType != null){
putQueryParameter("PayType", payType);
}
}
@Override
public Class<ModifyDBClusterPayTypeResponse> getResponseClass() {
return ModifyDBClusterPayTypeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterPayTypeResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyDBClusterPayTypeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterPayTypeResponse extends AcsResponse {
private String requestId;
private String dBClusterId;
private String orderId;
private String payType;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
}
public String getOrderId() {
return this.orderId;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
public String getPayType() {
return this.payType;
}
public void setPayType(String payType) {
this.payType = payType;
}
@Override
public ModifyDBClusterPayTypeResponse getInstance(UnmarshallerContext context) {
return ModifyDBClusterPayTypeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterRequest extends RpcAcsRequest<ModifyDBClusterResponse> {
private String elasticIOResourceSize;
private Long resourceOwnerId;
private String mode;
private String storageResource;
private String dBNodeClass;
private String dBClusterCategory;
private String diskPerformanceLevel;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String dBNodeGroupCount;
private String dBNodeStorage;
private String executorCount;
private String modifyType;
private String computeResource;
private Integer elasticIOResource;
public ModifyDBClusterRequest() {
super("adb", "2019-03-15", "ModifyDBCluster", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getElasticIOResourceSize() {
return this.elasticIOResourceSize;
}
public void setElasticIOResourceSize(String elasticIOResourceSize) {
this.elasticIOResourceSize = elasticIOResourceSize;
if(elasticIOResourceSize != null){
putQueryParameter("ElasticIOResourceSize", elasticIOResourceSize);
}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getMode() {
return this.mode;
}
public void setMode(String mode) {
this.mode = mode;
if(mode != null){
putQueryParameter("Mode", mode);
}
}
public String getStorageResource() {
return this.storageResource;
}
public void setStorageResource(String storageResource) {
this.storageResource = storageResource;
if(storageResource != null){
putQueryParameter("StorageResource", storageResource);
}
}
public String getDBNodeClass() {
return this.dBNodeClass;
}
public void setDBNodeClass(String dBNodeClass) {
this.dBNodeClass = dBNodeClass;
if(dBNodeClass != null){
putQueryParameter("DBNodeClass", dBNodeClass);
}
}
public String getDBClusterCategory() {
return this.dBClusterCategory;
}
public void setDBClusterCategory(String dBClusterCategory) {
this.dBClusterCategory = dBClusterCategory;
if(dBClusterCategory != null){
putQueryParameter("DBClusterCategory", dBClusterCategory);
}
}
public String getDiskPerformanceLevel() {
return this.diskPerformanceLevel;
}
public void setDiskPerformanceLevel(String diskPerformanceLevel) {
this.diskPerformanceLevel = diskPerformanceLevel;
if(diskPerformanceLevel != null){
putQueryParameter("DiskPerformanceLevel", diskPerformanceLevel);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getDBNodeGroupCount() {
return this.dBNodeGroupCount;
}
public void setDBNodeGroupCount(String dBNodeGroupCount) {
this.dBNodeGroupCount = dBNodeGroupCount;
if(dBNodeGroupCount != null){
putQueryParameter("DBNodeGroupCount", dBNodeGroupCount);
}
}
public String getDBNodeStorage() {
return this.dBNodeStorage;
}
public void setDBNodeStorage(String dBNodeStorage) {
this.dBNodeStorage = dBNodeStorage;
if(dBNodeStorage != null){
putQueryParameter("DBNodeStorage", dBNodeStorage);
}
}
public String getExecutorCount() {
return this.executorCount;
}
public void setExecutorCount(String executorCount) {
this.executorCount = executorCount;
if(executorCount != null){
putQueryParameter("ExecutorCount", executorCount);
}
}
public String getModifyType() {
return this.modifyType;
}
public void setModifyType(String modifyType) {
this.modifyType = modifyType;
if(modifyType != null){
putQueryParameter("ModifyType", modifyType);
}
}
public String getComputeResource() {
return this.computeResource;
}
public void setComputeResource(String computeResource) {
this.computeResource = computeResource;
if(computeResource != null){
putQueryParameter("ComputeResource", computeResource);
}
}
public Integer getElasticIOResource() {
return this.elasticIOResource;
}
public void setElasticIOResource(Integer elasticIOResource) {
this.elasticIOResource = elasticIOResource;
if(elasticIOResource != null){
putQueryParameter("ElasticIOResource", elasticIOResource.toString());
}
}
@Override
public Class<ModifyDBClusterResponse> getResponseClass() {
return ModifyDBClusterResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterResourceGroupRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterResourceGroupRequest extends RpcAcsRequest<ModifyDBClusterResourceGroupResponse> {
private Long resourceOwnerId;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String newResourceGroupId;
public ModifyDBClusterResourceGroupRequest() {
super("adb", "2019-03-15", "ModifyDBClusterResourceGroup", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getNewResourceGroupId() {
return this.newResourceGroupId;
}
public void setNewResourceGroupId(String newResourceGroupId) {
this.newResourceGroupId = newResourceGroupId;
if(newResourceGroupId != null){
putQueryParameter("NewResourceGroupId", newResourceGroupId);
}
}
@Override
public Class<ModifyDBClusterResourceGroupResponse> getResponseClass() {
return ModifyDBClusterResourceGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterResourceGroupResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyDBClusterResourceGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterResourceGroupResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyDBClusterResourceGroupResponse getInstance(UnmarshallerContext context) {
return ModifyDBClusterResourceGroupResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyDBClusterResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterResponse extends AcsResponse {
private String requestId;
private String dBClusterId;
private String orderId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
}
public String getOrderId() {
return this.orderId;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
@Override
public ModifyDBClusterResponse getInstance(UnmarshallerContext context) {
return ModifyDBClusterResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterSSLRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterSSLRequest extends RpcAcsRequest<ModifyDBClusterSSLResponse> {
private Long resourceOwnerId;
private String connectionString;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private Boolean enableSSL;
public ModifyDBClusterSSLRequest() {
super("adb", "2019-03-15", "ModifyDBClusterSSL", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getConnectionString() {
return this.connectionString;
}
public void setConnectionString(String connectionString) {
this.connectionString = connectionString;
if(connectionString != null){
putQueryParameter("ConnectionString", connectionString);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public Boolean getEnableSSL() {
return this.enableSSL;
}
public void setEnableSSL(Boolean enableSSL) {
this.enableSSL = enableSSL;
if(enableSSL != null){
putQueryParameter("EnableSSL", enableSSL.toString());
}
}
@Override
public Class<ModifyDBClusterSSLResponse> getResponseClass() {
return ModifyDBClusterSSLResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterSSLResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyDBClusterSSLResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterSSLResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyDBClusterSSLResponse getInstance(UnmarshallerContext context) {
return ModifyDBClusterSSLResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterShardNumberRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterShardNumberRequest extends RpcAcsRequest<ModifyDBClusterShardNumberResponse> {
private Long resourceOwnerId;
private Long switchTimeMode;
private String switchTime;
private Boolean dryRun;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long newShardNumber;
private Long ownerId;
public ModifyDBClusterShardNumberRequest() {
super("adb", "2019-03-15", "ModifyDBClusterShardNumber", "ads");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public Long getSwitchTimeMode() {
return this.switchTimeMode;
}
public void setSwitchTimeMode(Long switchTimeMode) {
this.switchTimeMode = switchTimeMode;
if(switchTimeMode != null){
putQueryParameter("SwitchTimeMode", switchTimeMode.toString());
}
}
public String getSwitchTime() {
return this.switchTime;
}
public void setSwitchTime(String switchTime) {
this.switchTime = switchTime;
if(switchTime != null){
putQueryParameter("SwitchTime", switchTime);
}
}
public Boolean getDryRun() {
return this.dryRun;
}
public void setDryRun(Boolean dryRun) {
this.dryRun = dryRun;
if(dryRun != null){
putQueryParameter("DryRun", dryRun.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getNewShardNumber() {
return this.newShardNumber;
}
public void setNewShardNumber(Long newShardNumber) {
this.newShardNumber = newShardNumber;
if(newShardNumber != null){
putQueryParameter("NewShardNumber", newShardNumber.toString());
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<ModifyDBClusterShardNumberResponse> getResponseClass() {
return ModifyDBClusterShardNumberResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterShardNumberResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyDBClusterShardNumberResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterShardNumberResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyDBClusterShardNumberResponse getInstance(UnmarshallerContext context) {
return ModifyDBClusterShardNumberResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterVipRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterVipRequest extends RpcAcsRequest<ModifyDBClusterVipResponse> {
private Long resourceOwnerId;
private String connectionString;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String vSwitchId;
private String vPCId;
public ModifyDBClusterVipRequest() {
super("adb", "2019-03-15", "ModifyDBClusterVip", "ads");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getConnectionString() {
return this.connectionString;
}
public void setConnectionString(String connectionString) {
this.connectionString = connectionString;
if(connectionString != null){
putQueryParameter("ConnectionString", connectionString);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getVSwitchId() {
return this.vSwitchId;
}
public void setVSwitchId(String vSwitchId) {
this.vSwitchId = vSwitchId;
if(vSwitchId != null){
putQueryParameter("VSwitchId", vSwitchId);
}
}
public String getVPCId() {
return this.vPCId;
}
public void setVPCId(String vPCId) {
this.vPCId = vPCId;
if(vPCId != null){
putQueryParameter("VPCId", vPCId);
}
}
@Override
public Class<ModifyDBClusterVipResponse> getResponseClass() {
return ModifyDBClusterVipResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBClusterVipResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyDBClusterVipResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyDBClusterVipResponse extends AcsResponse {
private String requestId;
private String taskId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
@Override
public ModifyDBClusterVipResponse getInstance(UnmarshallerContext context) {
return ModifyDBClusterVipResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBResourceGroupRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyDBResourceGroupRequest extends RpcAcsRequest<ModifyDBResourceGroupResponse> {
private Long resourceOwnerId;
@SerializedName("poolUserList")
private List<String> poolUserList;
private String clientToken;
private Integer nodeNum;
private String groupType;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String groupName;
public ModifyDBResourceGroupRequest() {
super("adb", "2019-03-15", "ModifyDBResourceGroup", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public List<String> getPoolUserList() {
return this.poolUserList;
}
public void setPoolUserList(List<String> poolUserList) {
this.poolUserList = poolUserList;
if (poolUserList != null) {
putQueryParameter("PoolUserList" , new Gson().toJson(poolUserList));
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public Integer getNodeNum() {
return this.nodeNum;
}
public void setNodeNum(Integer nodeNum) {
this.nodeNum = nodeNum;
if(nodeNum != null){
putQueryParameter("NodeNum", nodeNum.toString());
}
}
public String getGroupType() {
return this.groupType;
}
public void setGroupType(String groupType) {
this.groupType = groupType;
if(groupType != null){
putQueryParameter("GroupType", groupType);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
if(groupName != null){
putQueryParameter("GroupName", groupName);
}
}
@Override
public Class<ModifyDBResourceGroupResponse> getResponseClass() {
return ModifyDBResourceGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBResourceGroupResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyDBResourceGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyDBResourceGroupResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyDBResourceGroupResponse getInstance(UnmarshallerContext context) {
return ModifyDBResourceGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBResourcePoolRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyDBResourcePoolRequest extends RpcAcsRequest<ModifyDBResourcePoolResponse> {
private String poolName;
private Long resourceOwnerId;
private Integer nodeNum;
private String queryType;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
public ModifyDBResourcePoolRequest() {
super("adb", "2019-03-15", "ModifyDBResourcePool", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getPoolName() {
return this.poolName;
}
public void setPoolName(String poolName) {
this.poolName = poolName;
if(poolName != null){
putQueryParameter("PoolName", poolName);
}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public Integer getNodeNum() {
return this.nodeNum;
}
public void setNodeNum(Integer nodeNum) {
this.nodeNum = nodeNum;
if(nodeNum != null){
putQueryParameter("NodeNum", nodeNum.toString());
}
}
public String getQueryType() {
return this.queryType;
}
public void setQueryType(String queryType) {
this.queryType = queryType;
if(queryType != null){
putQueryParameter("QueryType", queryType);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<ModifyDBResourcePoolResponse> getResponseClass() {
return ModifyDBResourcePoolResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyDBResourcePoolResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyDBResourcePoolResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyDBResourcePoolResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyDBResourcePoolResponse getInstance(UnmarshallerContext context) {
return ModifyDBResourcePoolResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyElasticPlanRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyElasticPlanRequest extends RpcAcsRequest<ModifyElasticPlanResponse> {
private Long resourceOwnerId;
private String elasticPlanType;
private String elasticPlanTimeStart;
private String elasticPlanEndDay;
private String elasticPlanWeeklyRepeat;
private String elasticPlanWorkerSpec;
private Boolean elasticPlanEnable;
private String elasticPlanTimeEnd;
private String elasticPlanStartDay;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String elasticPlanName;
private String elasticPlanMonthlyRepeat;
private String resourcePoolName;
private Integer elasticPlanNodeNum;
public ModifyElasticPlanRequest() {
super("adb", "2019-03-15", "ModifyElasticPlan", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getElasticPlanType() {
return this.elasticPlanType;
}
public void setElasticPlanType(String elasticPlanType) {
this.elasticPlanType = elasticPlanType;
if(elasticPlanType != null){
putQueryParameter("ElasticPlanType", elasticPlanType);
}
}
public String getElasticPlanTimeStart() {
return this.elasticPlanTimeStart;
}
public void setElasticPlanTimeStart(String elasticPlanTimeStart) {
this.elasticPlanTimeStart = elasticPlanTimeStart;
if(elasticPlanTimeStart != null){
putQueryParameter("ElasticPlanTimeStart", elasticPlanTimeStart);
}
}
public String getElasticPlanEndDay() {
return this.elasticPlanEndDay;
}
public void setElasticPlanEndDay(String elasticPlanEndDay) {
this.elasticPlanEndDay = elasticPlanEndDay;
if(elasticPlanEndDay != null){
putQueryParameter("ElasticPlanEndDay", elasticPlanEndDay);
}
}
public String getElasticPlanWeeklyRepeat() {
return this.elasticPlanWeeklyRepeat;
}
public void setElasticPlanWeeklyRepeat(String elasticPlanWeeklyRepeat) {
this.elasticPlanWeeklyRepeat = elasticPlanWeeklyRepeat;
if(elasticPlanWeeklyRepeat != null){
putQueryParameter("ElasticPlanWeeklyRepeat", elasticPlanWeeklyRepeat);
}
}
public String getElasticPlanWorkerSpec() {
return this.elasticPlanWorkerSpec;
}
public void setElasticPlanWorkerSpec(String elasticPlanWorkerSpec) {
this.elasticPlanWorkerSpec = elasticPlanWorkerSpec;
if(elasticPlanWorkerSpec != null){
putQueryParameter("ElasticPlanWorkerSpec", elasticPlanWorkerSpec);
}
}
public Boolean getElasticPlanEnable() {
return this.elasticPlanEnable;
}
public void setElasticPlanEnable(Boolean elasticPlanEnable) {
this.elasticPlanEnable = elasticPlanEnable;
if(elasticPlanEnable != null){
putQueryParameter("ElasticPlanEnable", elasticPlanEnable.toString());
}
}
public String getElasticPlanTimeEnd() {
return this.elasticPlanTimeEnd;
}
public void setElasticPlanTimeEnd(String elasticPlanTimeEnd) {
this.elasticPlanTimeEnd = elasticPlanTimeEnd;
if(elasticPlanTimeEnd != null){
putQueryParameter("ElasticPlanTimeEnd", elasticPlanTimeEnd);
}
}
public String getElasticPlanStartDay() {
return this.elasticPlanStartDay;
}
public void setElasticPlanStartDay(String elasticPlanStartDay) {
this.elasticPlanStartDay = elasticPlanStartDay;
if(elasticPlanStartDay != null){
putQueryParameter("ElasticPlanStartDay", elasticPlanStartDay);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getElasticPlanName() {
return this.elasticPlanName;
}
public void setElasticPlanName(String elasticPlanName) {
this.elasticPlanName = elasticPlanName;
if(elasticPlanName != null){
putQueryParameter("ElasticPlanName", elasticPlanName);
}
}
public String getElasticPlanMonthlyRepeat() {
return this.elasticPlanMonthlyRepeat;
}
public void setElasticPlanMonthlyRepeat(String elasticPlanMonthlyRepeat) {
this.elasticPlanMonthlyRepeat = elasticPlanMonthlyRepeat;
if(elasticPlanMonthlyRepeat != null){
putQueryParameter("ElasticPlanMonthlyRepeat", elasticPlanMonthlyRepeat);
}
}
public String getResourcePoolName() {
return this.resourcePoolName;
}
public void setResourcePoolName(String resourcePoolName) {
this.resourcePoolName = resourcePoolName;
if(resourcePoolName != null){
putQueryParameter("ResourcePoolName", resourcePoolName);
}
}
public Integer getElasticPlanNodeNum() {
return this.elasticPlanNodeNum;
}
public void setElasticPlanNodeNum(Integer elasticPlanNodeNum) {
this.elasticPlanNodeNum = elasticPlanNodeNum;
if(elasticPlanNodeNum != null){
putQueryParameter("ElasticPlanNodeNum", elasticPlanNodeNum.toString());
}
}
@Override
public Class<ModifyElasticPlanResponse> getResponseClass() {
return ModifyElasticPlanResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyElasticPlanResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyElasticPlanResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyElasticPlanResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyElasticPlanResponse getInstance(UnmarshallerContext context) {
return ModifyElasticPlanResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyLogBackupPolicyRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyLogBackupPolicyRequest extends RpcAcsRequest<ModifyLogBackupPolicyResponse> {
private Long resourceOwnerId;
private String resourceGroupId;
private String enableBackupLog;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String logBackupRetentionPeriod;
public ModifyLogBackupPolicyRequest() {
super("adb", "2019-03-15", "ModifyLogBackupPolicy", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public String getEnableBackupLog() {
return this.enableBackupLog;
}
public void setEnableBackupLog(String enableBackupLog) {
this.enableBackupLog = enableBackupLog;
if(enableBackupLog != null){
putQueryParameter("EnableBackupLog", enableBackupLog);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getLogBackupRetentionPeriod() {
return this.logBackupRetentionPeriod;
}
public void setLogBackupRetentionPeriod(String logBackupRetentionPeriod) {
this.logBackupRetentionPeriod = logBackupRetentionPeriod;
if(logBackupRetentionPeriod != null){
putQueryParameter("LogBackupRetentionPeriod", logBackupRetentionPeriod);
}
}
@Override
public Class<ModifyLogBackupPolicyResponse> getResponseClass() {
return ModifyLogBackupPolicyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyLogBackupPolicyResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyLogBackupPolicyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyLogBackupPolicyResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyLogBackupPolicyResponse getInstance(UnmarshallerContext context) {
return ModifyLogBackupPolicyResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyLogHubStatusRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyLogHubStatusRequest extends RpcAcsRequest<ModifyLogHubStatusResponse> {
private Long resourceOwnerId;
private String deliverName;
private String projectName;
private String logStoreName;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String status;
public ModifyLogHubStatusRequest() {
super("adb", "2019-03-15", "ModifyLogHubStatus", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getDeliverName() {
return this.deliverName;
}
public void setDeliverName(String deliverName) {
this.deliverName = deliverName;
if(deliverName != null){
putQueryParameter("DeliverName", deliverName);
}
}
public String getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
if(projectName != null){
putQueryParameter("ProjectName", projectName);
}
}
public String getLogStoreName() {
return this.logStoreName;
}
public void setLogStoreName(String logStoreName) {
this.logStoreName = logStoreName;
if(logStoreName != null){
putQueryParameter("LogStoreName", logStoreName);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status);
}
}
@Override
public Class<ModifyLogHubStatusResponse> getResponseClass() {
return ModifyLogHubStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyLogHubStatusResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyLogHubStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyLogHubStatusResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyLogHubStatusResponse getInstance(UnmarshallerContext context) {
return ModifyLogHubStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyMaintenanceActionRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyMaintenanceActionRequest extends RpcAcsRequest<ModifyMaintenanceActionResponse> {
private Long resourceOwnerId;
private String resourceGroupId;
private String switchTime;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String ids;
public ModifyMaintenanceActionRequest() {
super("adb", "2019-03-15", "ModifyMaintenanceAction", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public String getSwitchTime() {
return this.switchTime;
}
public void setSwitchTime(String switchTime) {
this.switchTime = switchTime;
if(switchTime != null){
putQueryParameter("SwitchTime", switchTime);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getIds() {
return this.ids;
}
public void setIds(String ids) {
this.ids = ids;
if(ids != null){
putQueryParameter("Ids", ids);
}
}
@Override
public Class<ModifyMaintenanceActionResponse> getResponseClass() {
return ModifyMaintenanceActionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyMaintenanceActionResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyMaintenanceActionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyMaintenanceActionResponse extends AcsResponse {
private String ids;
private String requestId;
public String getIds() {
return this.ids;
}
public void setIds(String ids) {
this.ids = ids;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyMaintenanceActionResponse getInstance(UnmarshallerContext context) {
return ModifyMaintenanceActionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyResubmitConfigRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyResubmitConfigRequest extends RpcAcsRequest<ModifyResubmitConfigResponse> {
private Long resourceOwnerId;
@SerializedName("rules")
private List<Rules> rules;
private String resourceGroupId;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
public ModifyResubmitConfigRequest() {
super("adb", "2019-03-15", "ModifyResubmitConfig", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public List<Rules> getRules() {
return this.rules;
}
public void setRules(List<Rules> rules) {
this.rules = rules;
if (rules != null) {
putQueryParameter("Rules" , new Gson().toJson(rules));
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public static class Rules {
@SerializedName("PeakMemory")
private String peakMemory;
@SerializedName("TargetGroupName")
private String targetGroupName;
@SerializedName("ExceedMemoryException")
private Boolean exceedMemoryException;
@SerializedName("GroupName")
private String groupName;
@SerializedName("QueryTime")
private String queryTime;
public String getPeakMemory() {
return this.peakMemory;
}
public void setPeakMemory(String peakMemory) {
this.peakMemory = peakMemory;
}
public String getTargetGroupName() {
return this.targetGroupName;
}
public void setTargetGroupName(String targetGroupName) {
this.targetGroupName = targetGroupName;
}
public Boolean getExceedMemoryException() {
return this.exceedMemoryException;
}
public void setExceedMemoryException(Boolean exceedMemoryException) {
this.exceedMemoryException = exceedMemoryException;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getQueryTime() {
return this.queryTime;
}
public void setQueryTime(String queryTime) {
this.queryTime = queryTime;
}
}
@Override
public Class<ModifyResubmitConfigResponse> getResponseClass() {
return ModifyResubmitConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifyResubmitConfigResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifyResubmitConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyResubmitConfigResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyResubmitConfigResponse getInstance(UnmarshallerContext context) {
return ModifyResubmitConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifySQAConfigRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifySQAConfigRequest extends RpcAcsRequest<ModifySQAConfigResponse> {
private Long resourceOwnerId;
private String resourceGroupId;
private String sQAStatus;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String groupName;
public ModifySQAConfigRequest() {
super("adb", "2019-03-15", "ModifySQAConfig", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public String getSQAStatus() {
return this.sQAStatus;
}
public void setSQAStatus(String sQAStatus) {
this.sQAStatus = sQAStatus;
if(sQAStatus != null){
putQueryParameter("SQAStatus", sQAStatus);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
if(groupName != null){
putQueryParameter("GroupName", groupName);
}
}
@Override
public Class<ModifySQAConfigResponse> getResponseClass() {
return ModifySQAConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifySQAConfigResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifySQAConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifySQAConfigResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifySQAConfigResponse getInstance(UnmarshallerContext context) {
return ModifySQAConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifySyncJobRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifySyncJobRequest extends RpcAcsRequest<ModifySyncJobResponse> {
private Long resourceOwnerId;
private List<SourceDBCluster> sourceDBClusters;
private String resourceOwnerAccount;
private String dBClusterId;
private String syncPlatform;
private String ownerAccount;
private Long ownerId;
public ModifySyncJobRequest() {
super("adb", "2019-03-15", "ModifySyncJob", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public List<SourceDBCluster> getSourceDBClusters() {
return this.sourceDBClusters;
}
public void setSourceDBClusters(List<SourceDBCluster> sourceDBClusters) {
this.sourceDBClusters = sourceDBClusters;
if (sourceDBClusters != null) {
for (int depth1 = 0; depth1 < sourceDBClusters.size(); depth1++) {
putQueryParameter("SourceDBCluster." + (depth1 + 1) + ".JobId" , sourceDBClusters.get(depth1).getJobId());
putQueryParameter("SourceDBCluster." + (depth1 + 1) + ".RegionId" , sourceDBClusters.get(depth1).getRegionId());
putQueryParameter("SourceDBCluster." + (depth1 + 1) + ".OperateType" , sourceDBClusters.get(depth1).getOperateType());
putQueryParameter("SourceDBCluster." + (depth1 + 1) + ".Type" , sourceDBClusters.get(depth1).getType());
putQueryParameter("SourceDBCluster." + (depth1 + 1) + ".ClusterIds" , sourceDBClusters.get(depth1).getClusterIds());
}
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getSyncPlatform() {
return this.syncPlatform;
}
public void setSyncPlatform(String syncPlatform) {
this.syncPlatform = syncPlatform;
if(syncPlatform != null){
putQueryParameter("SyncPlatform", syncPlatform);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public static class SourceDBCluster {
private String jobId;
private String regionId;
private String operateType;
private String type;
private String clusterIds;
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
public String getOperateType() {
return this.operateType;
}
public void setOperateType(String operateType) {
this.operateType = operateType;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getClusterIds() {
return this.clusterIds;
}
public void setClusterIds(String clusterIds) {
this.clusterIds = clusterIds;
}
}
@Override
public Class<ModifySyncJobResponse> getResponseClass() {
return ModifySyncJobResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ModifySyncJobResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ModifySyncJobResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifySyncJobResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifySyncJobResponse getInstance(UnmarshallerContext context) {
return ModifySyncJobResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/OperateLogHubRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class OperateLogHubRequest extends RpcAcsRequest<OperateLogHubResponse> {
private Long resourceOwnerId;
private String description;
private String deliverName;
private String deliverTime;
private String password;
private String provider;
private Boolean create;
private String tableName;
private String projectName;
private String schemaName;
private String logStoreName;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private List<LogHubStores> logHubStoress;
private Boolean filterDirtyData;
private String userName;
public OperateLogHubRequest() {
super("adb", "2019-03-15", "OperateLogHub", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putQueryParameter("Description", description);
}
}
public String getDeliverName() {
return this.deliverName;
}
public void setDeliverName(String deliverName) {
this.deliverName = deliverName;
if(deliverName != null){
putQueryParameter("DeliverName", deliverName);
}
}
public String getDeliverTime() {
return this.deliverTime;
}
public void setDeliverTime(String deliverTime) {
this.deliverTime = deliverTime;
if(deliverTime != null){
putQueryParameter("DeliverTime", deliverTime);
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putQueryParameter("Password", password);
}
}
public String getProvider() {
return this.provider;
}
public void setProvider(String provider) {
this.provider = provider;
if(provider != null){
putQueryParameter("Provider", provider);
}
}
public Boolean getCreate() {
return this.create;
}
public void setCreate(Boolean create) {
this.create = create;
if(create != null){
putQueryParameter("Create", create.toString());
}
}
public String getTableName() {
return this.tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
if(tableName != null){
putQueryParameter("TableName", tableName);
}
}
public String getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
if(projectName != null){
putQueryParameter("ProjectName", projectName);
}
}
public String getSchemaName() {
return this.schemaName;
}
public void setSchemaName(String schemaName) {
this.schemaName = schemaName;
if(schemaName != null){
putQueryParameter("SchemaName", schemaName);
}
}
public String getLogStoreName() {
return this.logStoreName;
}
public void setLogStoreName(String logStoreName) {
this.logStoreName = logStoreName;
if(logStoreName != null){
putQueryParameter("LogStoreName", logStoreName);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public List<LogHubStores> getLogHubStoress() {
return this.logHubStoress;
}
public void setLogHubStoress(List<LogHubStores> logHubStoress) {
this.logHubStoress = logHubStoress;
if (logHubStoress != null) {
for (int depth1 = 0; depth1 < logHubStoress.size(); depth1++) {
putQueryParameter("LogHubStores." + (depth1 + 1) + ".LogKey" , logHubStoress.get(depth1).getLogKey());
putQueryParameter("LogHubStores." + (depth1 + 1) + ".FieldKey" , logHubStoress.get(depth1).getFieldKey());
}
}
}
public Boolean getFilterDirtyData() {
return this.filterDirtyData;
}
public void setFilterDirtyData(Boolean filterDirtyData) {
this.filterDirtyData = filterDirtyData;
if(filterDirtyData != null){
putQueryParameter("FilterDirtyData", filterDirtyData.toString());
}
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
if(userName != null){
putQueryParameter("UserName", userName);
}
}
public static class LogHubStores {
private String logKey;
private String fieldKey;
public String getLogKey() {
return this.logKey;
}
public void setLogKey(String logKey) {
this.logKey = logKey;
}
public String getFieldKey() {
return this.fieldKey;
}
public void setFieldKey(String fieldKey) {
this.fieldKey = fieldKey;
}
}
@Override
public Class<OperateLogHubResponse> getResponseClass() {
return OperateLogHubResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/OperateLogHubResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.OperateLogHubResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class OperateLogHubResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public OperateLogHubResponse getInstance(UnmarshallerContext context) {
return OperateLogHubResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ReleaseClusterPublicConnectionRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ReleaseClusterPublicConnectionRequest extends RpcAcsRequest<ReleaseClusterPublicConnectionResponse> {
private Long resourceOwnerId;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
public ReleaseClusterPublicConnectionRequest() {
super("adb", "2019-03-15", "ReleaseClusterPublicConnection", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<ReleaseClusterPublicConnectionResponse> getResponseClass() {
return ReleaseClusterPublicConnectionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ReleaseClusterPublicConnectionResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ReleaseClusterPublicConnectionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ReleaseClusterPublicConnectionResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ReleaseClusterPublicConnectionResponse getInstance(UnmarshallerContext context) {
return ReleaseClusterPublicConnectionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ResetAccountPasswordRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class ResetAccountPasswordRequest extends RpcAcsRequest<ResetAccountPasswordResponse> {
private Long resourceOwnerId;
private String accountType;
private String accountName;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String accountPassword;
public ResetAccountPasswordRequest() {
super("adb", "2019-03-15", "ResetAccountPassword", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getAccountType() {
return this.accountType;
}
public void setAccountType(String accountType) {
this.accountType = accountType;
if(accountType != null){
putQueryParameter("AccountType", accountType);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putQueryParameter("AccountName", accountName);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getAccountPassword() {
return this.accountPassword;
}
public void setAccountPassword(String accountPassword) {
this.accountPassword = accountPassword;
if(accountPassword != null){
putQueryParameter("AccountPassword", accountPassword);
}
}
@Override
public Class<ResetAccountPasswordResponse> getResponseClass() {
return ResetAccountPasswordResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/ResetAccountPasswordResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.ResetAccountPasswordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ResetAccountPasswordResponse extends AcsResponse {
private Integer taskId;
private String requestId;
private String dBClusterId;
public Integer getTaskId() {
return this.taskId;
}
public void setTaskId(Integer taskId) {
this.taskId = taskId;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
}
@Override
public ResetAccountPasswordResponse getInstance(UnmarshallerContext context) {
return ResetAccountPasswordResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/RevokeOperatorPermissionRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class RevokeOperatorPermissionRequest extends RpcAcsRequest<RevokeOperatorPermissionResponse> {
private Long resourceOwnerId;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
public RevokeOperatorPermissionRequest() {
super("adb", "2019-03-15", "RevokeOperatorPermission", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<RevokeOperatorPermissionResponse> getResponseClass() {
return RevokeOperatorPermissionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/RevokeOperatorPermissionResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.RevokeOperatorPermissionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RevokeOperatorPermissionResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public RevokeOperatorPermissionResponse getInstance(UnmarshallerContext context) {
return RevokeOperatorPermissionResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/TagResourcesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class TagResourcesRequest extends RpcAcsRequest<TagResourcesResponse> {
private Long resourceOwnerId;
private List<Tag> tags;
private List<String> resourceIds;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String resourceType;
public TagResourcesRequest() {
super("adb", "2019-03-15", "TagResources", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public List<Tag> getTags() {
return this.tags;
}
public void setTags(List<Tag> tags) {
this.tags = tags;
if (tags != null) {
for (int depth1 = 0; depth1 < tags.size(); depth1++) {
putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue());
putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey());
}
}
}
public List<String> getResourceIds() {
return this.resourceIds;
}
public void setResourceIds(List<String> resourceIds) {
this.resourceIds = resourceIds;
if (resourceIds != null) {
for (int i = 0; i < resourceIds.size(); i++) {
putQueryParameter("ResourceId." + (i + 1) , resourceIds.get(i));
}
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
if(resourceType != null){
putQueryParameter("ResourceType", resourceType);
}
}
public static class Tag {
private String value;
private String key;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
@Override
public Class<TagResourcesResponse> getResponseClass() {
return TagResourcesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/TagResourcesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.TagResourcesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class TagResourcesResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public TagResourcesResponse getInstance(UnmarshallerContext context) {
return TagResourcesResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/UnbindDBResourceGroupWithUserRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class UnbindDBResourceGroupWithUserRequest extends RpcAcsRequest<UnbindDBResourceGroupWithUserResponse> {
private Long resourceOwnerId;
private String clientToken;
private String groupUser;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String groupName;
public UnbindDBResourceGroupWithUserRequest() {
super("adb", "2019-03-15", "UnbindDBResourceGroupWithUser", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getGroupUser() {
return this.groupUser;
}
public void setGroupUser(String groupUser) {
this.groupUser = groupUser;
if(groupUser != null){
putQueryParameter("GroupUser", groupUser);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
if(groupName != null){
putQueryParameter("GroupName", groupName);
}
}
@Override
public Class<UnbindDBResourceGroupWithUserResponse> getResponseClass() {
return UnbindDBResourceGroupWithUserResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/UnbindDBResourceGroupWithUserResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.UnbindDBResourceGroupWithUserResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UnbindDBResourceGroupWithUserResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UnbindDBResourceGroupWithUserResponse getInstance(UnmarshallerContext context) {
return UnbindDBResourceGroupWithUserResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/UnbindDBResourcePoolWithUserRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class UnbindDBResourcePoolWithUserRequest extends RpcAcsRequest<UnbindDBResourcePoolWithUserResponse> {
private String poolName;
private Long resourceOwnerId;
private String clientToken;
private String poolUser;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
public UnbindDBResourcePoolWithUserRequest() {
super("adb", "2019-03-15", "UnbindDBResourcePoolWithUser", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getPoolName() {
return this.poolName;
}
public void setPoolName(String poolName) {
this.poolName = poolName;
if(poolName != null){
putQueryParameter("PoolName", poolName);
}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getPoolUser() {
return this.poolUser;
}
public void setPoolUser(String poolUser) {
this.poolUser = poolUser;
if(poolUser != null){
putQueryParameter("PoolUser", poolUser);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<UnbindDBResourcePoolWithUserResponse> getResponseClass() {
return UnbindDBResourcePoolWithUserResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/UnbindDBResourcePoolWithUserResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.UnbindDBResourcePoolWithUserResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UnbindDBResourcePoolWithUserResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UnbindDBResourcePoolWithUserResponse getInstance(UnmarshallerContext context) {
return UnbindDBResourcePoolWithUserResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/UntagResourcesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class UntagResourcesRequest extends RpcAcsRequest<UntagResourcesResponse> {
private Long resourceOwnerId;
private Boolean all;
private List<String> resourceIds;
private String resourceOwnerAccount;
private String ownerAccount;
private Long ownerId;
private String resourceType;
private List<String> tagKeys;
public UntagResourcesRequest() {
super("adb", "2019-03-15", "UntagResources", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public Boolean getAll() {
return this.all;
}
public void setAll(Boolean all) {
this.all = all;
if(all != null){
putQueryParameter("All", all.toString());
}
}
public List<String> getResourceIds() {
return this.resourceIds;
}
public void setResourceIds(List<String> resourceIds) {
this.resourceIds = resourceIds;
if (resourceIds != null) {
for (int i = 0; i < resourceIds.size(); i++) {
putQueryParameter("ResourceId." + (i + 1) , resourceIds.get(i));
}
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
if(resourceType != null){
putQueryParameter("ResourceType", resourceType);
}
}
public List<String> getTagKeys() {
return this.tagKeys;
}
public void setTagKeys(List<String> tagKeys) {
this.tagKeys = tagKeys;
if (tagKeys != null) {
for (int i = 0; i < tagKeys.size(); i++) {
putQueryParameter("TagKey." + (i + 1) , tagKeys.get(i));
}
}
}
@Override
public Class<UntagResourcesResponse> getResponseClass() {
return UntagResourcesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/UntagResourcesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.UntagResourcesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UntagResourcesResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UntagResourcesResponse getInstance(UnmarshallerContext context) {
return UntagResourcesResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/UpgradeKernelVersionRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.adb.Endpoint;
/**
* @author auto create
* @version
*/
public class UpgradeKernelVersionRequest extends RpcAcsRequest<UpgradeKernelVersionResponse> {
private Long resourceOwnerId;
private Integer switchMode;
private String resourceOwnerAccount;
private String dBClusterId;
private String ownerAccount;
private Long ownerId;
private String dBVersion;
public UpgradeKernelVersionRequest() {
super("adb", "2019-03-15", "UpgradeKernelVersion", "ads");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public Integer getSwitchMode() {
return this.switchMode;
}
public void setSwitchMode(Integer switchMode) {
this.switchMode = switchMode;
if(switchMode != null){
putQueryParameter("SwitchMode", switchMode.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getDBClusterId() {
return this.dBClusterId;
}
public void setDBClusterId(String dBClusterId) {
this.dBClusterId = dBClusterId;
if(dBClusterId != null){
putQueryParameter("DBClusterId", dBClusterId);
}
}
public String getOwnerAccount() {
return this.ownerAccount;
}
public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getDBVersion() {
return this.dBVersion;
}
public void setDBVersion(String dBVersion) {
this.dBVersion = dBVersion;
if(dBVersion != null){
putQueryParameter("DBVersion", dBVersion);
}
}
@Override
public Class<UpgradeKernelVersionResponse> getResponseClass() {
return UpgradeKernelVersionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/model/v20190315/UpgradeKernelVersionResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.model.v20190315;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.adb.transform.v20190315.UpgradeKernelVersionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpgradeKernelVersionResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpgradeKernelVersionResponse getInstance(UnmarshallerContext context) {
return UpgradeKernelVersionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/AllocateClusterPublicConnectionResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.AllocateClusterPublicConnectionResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AllocateClusterPublicConnectionResponseUnmarshaller {
public static AllocateClusterPublicConnectionResponse unmarshall(AllocateClusterPublicConnectionResponse allocateClusterPublicConnectionResponse, UnmarshallerContext _ctx) {
allocateClusterPublicConnectionResponse.setRequestId(_ctx.stringValue("AllocateClusterPublicConnectionResponse.RequestId"));
return allocateClusterPublicConnectionResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/ApplyAdviceByIdResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.ApplyAdviceByIdResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ApplyAdviceByIdResponseUnmarshaller {
public static ApplyAdviceByIdResponse unmarshall(ApplyAdviceByIdResponse applyAdviceByIdResponse, UnmarshallerContext _ctx) {
applyAdviceByIdResponse.setRequestId(_ctx.stringValue("ApplyAdviceByIdResponse.RequestId"));
applyAdviceByIdResponse.setMessage(_ctx.stringValue("ApplyAdviceByIdResponse.Message"));
return applyAdviceByIdResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/AttachUserENIResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.AttachUserENIResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AttachUserENIResponseUnmarshaller {
public static AttachUserENIResponse unmarshall(AttachUserENIResponse attachUserENIResponse, UnmarshallerContext _ctx) {
attachUserENIResponse.setRequestId(_ctx.stringValue("AttachUserENIResponse.RequestId"));
return attachUserENIResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/BatchApplyAdviceByIdListResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.BatchApplyAdviceByIdListResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BatchApplyAdviceByIdListResponseUnmarshaller {
public static BatchApplyAdviceByIdListResponse unmarshall(BatchApplyAdviceByIdListResponse batchApplyAdviceByIdListResponse, UnmarshallerContext _ctx) {
batchApplyAdviceByIdListResponse.setRequestId(_ctx.stringValue("BatchApplyAdviceByIdListResponse.RequestId"));
batchApplyAdviceByIdListResponse.setMessage(_ctx.stringValue("BatchApplyAdviceByIdListResponse.Message"));
return batchApplyAdviceByIdListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/BindDBResourceGroupWithUserResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.BindDBResourceGroupWithUserResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BindDBResourceGroupWithUserResponseUnmarshaller {
public static BindDBResourceGroupWithUserResponse unmarshall(BindDBResourceGroupWithUserResponse bindDBResourceGroupWithUserResponse, UnmarshallerContext _ctx) {
bindDBResourceGroupWithUserResponse.setRequestId(_ctx.stringValue("BindDBResourceGroupWithUserResponse.RequestId"));
return bindDBResourceGroupWithUserResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/BindDBResourcePoolWithUserResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.BindDBResourcePoolWithUserResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class BindDBResourcePoolWithUserResponseUnmarshaller {
public static BindDBResourcePoolWithUserResponse unmarshall(BindDBResourcePoolWithUserResponse bindDBResourcePoolWithUserResponse, UnmarshallerContext _ctx) {
bindDBResourcePoolWithUserResponse.setRequestId(_ctx.stringValue("BindDBResourcePoolWithUserResponse.RequestId"));
return bindDBResourcePoolWithUserResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/CancelActiveOperationTasksResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.CancelActiveOperationTasksResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CancelActiveOperationTasksResponseUnmarshaller {
public static CancelActiveOperationTasksResponse unmarshall(CancelActiveOperationTasksResponse cancelActiveOperationTasksResponse, UnmarshallerContext _ctx) {
cancelActiveOperationTasksResponse.setRequestId(_ctx.stringValue("CancelActiveOperationTasksResponse.RequestId"));
cancelActiveOperationTasksResponse.setIds(_ctx.stringValue("CancelActiveOperationTasksResponse.Ids"));
return cancelActiveOperationTasksResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/CheckServiceLinkedRoleResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.CheckServiceLinkedRoleResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CheckServiceLinkedRoleResponseUnmarshaller {
public static CheckServiceLinkedRoleResponse unmarshall(CheckServiceLinkedRoleResponse checkServiceLinkedRoleResponse, UnmarshallerContext _ctx) {
checkServiceLinkedRoleResponse.setRequestId(_ctx.stringValue("CheckServiceLinkedRoleResponse.RequestId"));
checkServiceLinkedRoleResponse.setHasServiceLinkedRole(_ctx.booleanValue("CheckServiceLinkedRoleResponse.HasServiceLinkedRole"));
return checkServiceLinkedRoleResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/CreateAccountResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.CreateAccountResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateAccountResponseUnmarshaller {
public static CreateAccountResponse unmarshall(CreateAccountResponse createAccountResponse, UnmarshallerContext _ctx) {
createAccountResponse.setRequestId(_ctx.stringValue("CreateAccountResponse.RequestId"));
createAccountResponse.setTaskId(_ctx.integerValue("CreateAccountResponse.TaskId"));
createAccountResponse.setDBClusterId(_ctx.stringValue("CreateAccountResponse.DBClusterId"));
return createAccountResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/CreateDBClusterResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.CreateDBClusterResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateDBClusterResponseUnmarshaller {
public static CreateDBClusterResponse unmarshall(CreateDBClusterResponse createDBClusterResponse, UnmarshallerContext _ctx) {
createDBClusterResponse.setRequestId(_ctx.stringValue("CreateDBClusterResponse.RequestId"));
createDBClusterResponse.setResourceGroupId(_ctx.stringValue("CreateDBClusterResponse.ResourceGroupId"));
createDBClusterResponse.setDBClusterId(_ctx.stringValue("CreateDBClusterResponse.DBClusterId"));
createDBClusterResponse.setOrderId(_ctx.stringValue("CreateDBClusterResponse.OrderId"));
return createDBClusterResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/CreateDBResourceGroupResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.CreateDBResourceGroupResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateDBResourceGroupResponseUnmarshaller {
public static CreateDBResourceGroupResponse unmarshall(CreateDBResourceGroupResponse createDBResourceGroupResponse, UnmarshallerContext _ctx) {
createDBResourceGroupResponse.setRequestId(_ctx.stringValue("CreateDBResourceGroupResponse.RequestId"));
return createDBResourceGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/CreateDBResourcePoolResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.CreateDBResourcePoolResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateDBResourcePoolResponseUnmarshaller {
public static CreateDBResourcePoolResponse unmarshall(CreateDBResourcePoolResponse createDBResourcePoolResponse, UnmarshallerContext _ctx) {
createDBResourcePoolResponse.setRequestId(_ctx.stringValue("CreateDBResourcePoolResponse.RequestId"));
return createDBResourcePoolResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/CreateElasticPlanResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.CreateElasticPlanResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateElasticPlanResponseUnmarshaller {
public static CreateElasticPlanResponse unmarshall(CreateElasticPlanResponse createElasticPlanResponse, UnmarshallerContext _ctx) {
createElasticPlanResponse.setRequestId(_ctx.stringValue("CreateElasticPlanResponse.RequestId"));
return createElasticPlanResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/CreateServiceLinkedRoleResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.CreateServiceLinkedRoleResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateServiceLinkedRoleResponseUnmarshaller {
public static CreateServiceLinkedRoleResponse unmarshall(CreateServiceLinkedRoleResponse createServiceLinkedRoleResponse, UnmarshallerContext _ctx) {
createServiceLinkedRoleResponse.setRequestId(_ctx.stringValue("CreateServiceLinkedRoleResponse.RequestId"));
return createServiceLinkedRoleResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/DeleteAccountResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.DeleteAccountResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteAccountResponseUnmarshaller {
public static DeleteAccountResponse unmarshall(DeleteAccountResponse deleteAccountResponse, UnmarshallerContext _ctx) {
deleteAccountResponse.setRequestId(_ctx.stringValue("DeleteAccountResponse.RequestId"));
return deleteAccountResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/DeleteBackupsResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.DeleteBackupsResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteBackupsResponseUnmarshaller {
public static DeleteBackupsResponse unmarshall(DeleteBackupsResponse deleteBackupsResponse, UnmarshallerContext _ctx) {
deleteBackupsResponse.setRequestId(_ctx.stringValue("DeleteBackupsResponse.RequestId"));
return deleteBackupsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/DeleteDBClusterResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.DeleteDBClusterResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteDBClusterResponseUnmarshaller {
public static DeleteDBClusterResponse unmarshall(DeleteDBClusterResponse deleteDBClusterResponse, UnmarshallerContext _ctx) {
deleteDBClusterResponse.setRequestId(_ctx.stringValue("DeleteDBClusterResponse.RequestId"));
deleteDBClusterResponse.setTaskId(_ctx.integerValue("DeleteDBClusterResponse.TaskId"));
deleteDBClusterResponse.setDBClusterId(_ctx.stringValue("DeleteDBClusterResponse.DBClusterId"));
return deleteDBClusterResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/DeleteDBResourceGroupResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.DeleteDBResourceGroupResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteDBResourceGroupResponseUnmarshaller {
public static DeleteDBResourceGroupResponse unmarshall(DeleteDBResourceGroupResponse deleteDBResourceGroupResponse, UnmarshallerContext _ctx) {
deleteDBResourceGroupResponse.setRequestId(_ctx.stringValue("DeleteDBResourceGroupResponse.RequestId"));
return deleteDBResourceGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/DeleteDBResourcePoolResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.DeleteDBResourcePoolResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteDBResourcePoolResponseUnmarshaller {
public static DeleteDBResourcePoolResponse unmarshall(DeleteDBResourcePoolResponse deleteDBResourcePoolResponse, UnmarshallerContext _ctx) {
deleteDBResourcePoolResponse.setRequestId(_ctx.stringValue("DeleteDBResourcePoolResponse.RequestId"));
return deleteDBResourcePoolResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/DeleteElasticPlanResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.DeleteElasticPlanResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteElasticPlanResponseUnmarshaller {
public static DeleteElasticPlanResponse unmarshall(DeleteElasticPlanResponse deleteElasticPlanResponse, UnmarshallerContext _ctx) {
deleteElasticPlanResponse.setRequestId(_ctx.stringValue("DeleteElasticPlanResponse.RequestId"));
return deleteElasticPlanResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/DescribeAbnormalPatternDetectionResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.adb.model.v20190315.DescribeAbnormalPatternDetectionResponse;
import com.aliyuncs.adb.model.v20190315.DescribeAbnormalPatternDetectionResponse.OpenApiFasDetectionItem;
import com.aliyuncs.adb.model.v20190315.DescribeAbnormalPatternDetectionResponse.OpenApiFasDetectionItem.AbnormalPatterns;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeAbnormalPatternDetectionResponseUnmarshaller {
public static DescribeAbnormalPatternDetectionResponse unmarshall(DescribeAbnormalPatternDetectionResponse describeAbnormalPatternDetectionResponse, UnmarshallerContext _ctx) {
describeAbnormalPatternDetectionResponse.setRequestId(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.RequestId"));
describeAbnormalPatternDetectionResponse.setTotalCount(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.TotalCount"));
describeAbnormalPatternDetectionResponse.setDBClusterId(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.DBClusterId"));
List<OpenApiFasDetectionItem> detectionItems = new ArrayList<OpenApiFasDetectionItem>();
for (int i = 0; i < _ctx.lengthValue("DescribeAbnormalPatternDetectionResponse.DetectionItems.Length"); i++) {
OpenApiFasDetectionItem openApiFasDetectionItem = new OpenApiFasDetectionItem();
openApiFasDetectionItem.setName(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Name"));
openApiFasDetectionItem.setStatus(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Status"));
openApiFasDetectionItem.setMessage(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Message"));
List<AbnormalPatterns> results = new ArrayList<AbnormalPatterns>();
for (int j = 0; j < _ctx.lengthValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Results.Length"); j++) {
AbnormalPatterns abnormalPatterns = new AbnormalPatterns();
abnormalPatterns.setPatternId(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Results["+ j +"].PatternId"));
abnormalPatterns.setSQLPattern(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Results["+ j +"].SQLPattern"));
abnormalPatterns.setDetail(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Results["+ j +"].Detail"));
abnormalPatterns.setRelatedMetrics(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Results["+ j +"].RelatedMetrics"));
abnormalPatterns.setUser(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Results["+ j +"].User"));
abnormalPatterns.setAccessIp(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Results["+ j +"].AccessIp"));
abnormalPatterns.setTables(_ctx.stringValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Results["+ j +"].Tables"));
abnormalPatterns.setQueryCount(_ctx.longValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Results["+ j +"].QueryCount"));
abnormalPatterns.setFailedCount(_ctx.longValue("DescribeAbnormalPatternDetectionResponse.DetectionItems["+ i +"].Results["+ j +"].FailedCount"));
results.add(abnormalPatterns);
}
openApiFasDetectionItem.setResults(results);
detectionItems.add(openApiFasDetectionItem);
}
describeAbnormalPatternDetectionResponse.setDetectionItems(detectionItems);
return describeAbnormalPatternDetectionResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/DescribeAccountsResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.adb.model.v20190315.DescribeAccountsResponse;
import com.aliyuncs.adb.model.v20190315.DescribeAccountsResponse.DBAccount;
import com.aliyuncs.adb.model.v20190315.DescribeAccountsResponse.DBAccount.Tag;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeAccountsResponseUnmarshaller {
public static DescribeAccountsResponse unmarshall(DescribeAccountsResponse describeAccountsResponse, UnmarshallerContext _ctx) {
describeAccountsResponse.setRequestId(_ctx.stringValue("DescribeAccountsResponse.RequestId"));
List<DBAccount> accountList = new ArrayList<DBAccount>();
for (int i = 0; i < _ctx.lengthValue("DescribeAccountsResponse.AccountList.Length"); i++) {
DBAccount dBAccount = new DBAccount();
dBAccount.setAccountStatus(_ctx.stringValue("DescribeAccountsResponse.AccountList["+ i +"].AccountStatus"));
dBAccount.setAccountDescription(_ctx.stringValue("DescribeAccountsResponse.AccountList["+ i +"].AccountDescription"));
dBAccount.setAccountType(_ctx.stringValue("DescribeAccountsResponse.AccountList["+ i +"].AccountType"));
dBAccount.setAccountName(_ctx.stringValue("DescribeAccountsResponse.AccountList["+ i +"].AccountName"));
List<Tag> tags = new ArrayList<Tag>();
for (int j = 0; j < _ctx.lengthValue("DescribeAccountsResponse.AccountList["+ i +"].Tags.Length"); j++) {
Tag tag = new Tag();
tag.setKey(_ctx.stringValue("DescribeAccountsResponse.AccountList["+ i +"].Tags["+ j +"].Key"));
tag.setValue(_ctx.stringValue("DescribeAccountsResponse.AccountList["+ i +"].Tags["+ j +"].Value"));
tags.add(tag);
}
dBAccount.setTags(tags);
accountList.add(dBAccount);
}
describeAccountsResponse.setAccountList(accountList);
return describeAccountsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform
|
java-sources/com/aliyun/aliyun-java-sdk-adb/1.0.28/com/aliyuncs/adb/transform/v20190315/DescribeActiveOperationMaintainConfResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.adb.transform.v20190315;
import com.aliyuncs.adb.model.v20190315.DescribeActiveOperationMaintainConfResponse;
import com.aliyuncs.adb.model.v20190315.DescribeActiveOperationMaintainConfResponse.Config;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeActiveOperationMaintainConfResponseUnmarshaller {
public static DescribeActiveOperationMaintainConfResponse unmarshall(DescribeActiveOperationMaintainConfResponse describeActiveOperationMaintainConfResponse, UnmarshallerContext _ctx) {
describeActiveOperationMaintainConfResponse.setRequestId(_ctx.stringValue("DescribeActiveOperationMaintainConfResponse.RequestId"));
describeActiveOperationMaintainConfResponse.setHasConfig(_ctx.integerValue("DescribeActiveOperationMaintainConfResponse.HasConfig"));
Config config = new Config();
config.setCycleType(_ctx.stringValue("DescribeActiveOperationMaintainConfResponse.Config.CycleType"));
config.setStatus(_ctx.integerValue("DescribeActiveOperationMaintainConfResponse.Config.Status"));
config.setModifiedTime(_ctx.stringValue("DescribeActiveOperationMaintainConfResponse.Config.ModifiedTime"));
config.setMaintainStartTime(_ctx.stringValue("DescribeActiveOperationMaintainConfResponse.Config.MaintainStartTime"));
config.setMaintainEndTime(_ctx.stringValue("DescribeActiveOperationMaintainConfResponse.Config.MaintainEndTime"));
config.setCycleTime(_ctx.stringValue("DescribeActiveOperationMaintainConfResponse.Config.CycleTime"));
config.setCreatedTime(_ctx.stringValue("DescribeActiveOperationMaintainConfResponse.Config.CreatedTime"));
describeActiveOperationMaintainConfResponse.setConfig(config);
return describeActiveOperationMaintainConfResponse;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.