index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreateAclResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.CreateAclResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateAclResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public CreateAclResponse getInstance(UnmarshallerContext context) {
return CreateAclResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreateConsumerGroupRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateConsumerGroupRequest extends RpcAcsRequest<CreateConsumerGroupResponse> {
private String consumerId;
private String remark;
private String instanceId;
private List<Tag> tags;
public CreateConsumerGroupRequest() {
super("alikafka", "2019-09-16", "CreateConsumerGroup", "alikafka");
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 getConsumerId() {
return this.consumerId;
}
public void setConsumerId(String consumerId) {
this.consumerId = consumerId;
if(consumerId != null){
putQueryParameter("ConsumerId", consumerId);
}
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
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 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<CreateConsumerGroupResponse> getResponseClass() {
return CreateConsumerGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreateConsumerGroupResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.CreateConsumerGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateConsumerGroupResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public CreateConsumerGroupResponse getInstance(UnmarshallerContext context) {
return CreateConsumerGroupResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreatePostPayInstanceRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class CreatePostPayInstanceRequest extends RpcAcsRequest<CreatePostPayInstanceResponse> {
private Integer eipMax;
private String specType;
private String resourceGroupId;
private List<Tag> tags;
private Integer partitionNum;
private Integer paidType;
@SerializedName("serverlessConfig")
private ServerlessConfig serverlessConfig;
private Integer diskSize;
private String ioMaxSpec;
private String diskType;
private Integer deployType;
public CreatePostPayInstanceRequest() {
super("alikafka", "2019-09-16", "CreatePostPayInstance", "alikafka");
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 Integer getEipMax() {
return this.eipMax;
}
public void setEipMax(Integer eipMax) {
this.eipMax = eipMax;
if(eipMax != null){
putQueryParameter("EipMax", eipMax.toString());
}
}
public String getSpecType() {
return this.specType;
}
public void setSpecType(String specType) {
this.specType = specType;
if(specType != null){
putQueryParameter("SpecType", specType);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
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 Integer getPartitionNum() {
return this.partitionNum;
}
public void setPartitionNum(Integer partitionNum) {
this.partitionNum = partitionNum;
if(partitionNum != null){
putQueryParameter("PartitionNum", partitionNum.toString());
}
}
public Integer getPaidType() {
return this.paidType;
}
public void setPaidType(Integer paidType) {
this.paidType = paidType;
if(paidType != null){
putQueryParameter("PaidType", paidType.toString());
}
}
public ServerlessConfig getServerlessConfig() {
return this.serverlessConfig;
}
public void setServerlessConfig(ServerlessConfig serverlessConfig) {
this.serverlessConfig = serverlessConfig;
if (serverlessConfig != null) {
putQueryParameter("ServerlessConfig" , new Gson().toJson(serverlessConfig));
}
}
public Integer getDiskSize() {
return this.diskSize;
}
public void setDiskSize(Integer diskSize) {
this.diskSize = diskSize;
if(diskSize != null){
putQueryParameter("DiskSize", diskSize.toString());
}
}
public String getIoMaxSpec() {
return this.ioMaxSpec;
}
public void setIoMaxSpec(String ioMaxSpec) {
this.ioMaxSpec = ioMaxSpec;
if(ioMaxSpec != null){
putQueryParameter("IoMaxSpec", ioMaxSpec);
}
}
public String getDiskType() {
return this.diskType;
}
public void setDiskType(String diskType) {
this.diskType = diskType;
if(diskType != null){
putQueryParameter("DiskType", diskType);
}
}
public Integer getDeployType() {
return this.deployType;
}
public void setDeployType(Integer deployType) {
this.deployType = deployType;
if(deployType != null){
putQueryParameter("DeployType", deployType.toString());
}
}
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;
}
}
public static class ServerlessConfig {
@SerializedName("ReservedPublishCapacity")
private Long reservedPublishCapacity;
@SerializedName("ReservedSubscribeCapacity")
private Long reservedSubscribeCapacity;
public Long getReservedPublishCapacity() {
return this.reservedPublishCapacity;
}
public void setReservedPublishCapacity(Long reservedPublishCapacity) {
this.reservedPublishCapacity = reservedPublishCapacity;
}
public Long getReservedSubscribeCapacity() {
return this.reservedSubscribeCapacity;
}
public void setReservedSubscribeCapacity(Long reservedSubscribeCapacity) {
this.reservedSubscribeCapacity = reservedSubscribeCapacity;
}
}
@Override
public Class<CreatePostPayInstanceResponse> getResponseClass() {
return CreatePostPayInstanceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreatePostPayInstanceResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.CreatePostPayInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreatePostPayInstanceResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private Data data;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long orderId;
private String instanceId;
public Long getOrderId() {
return this.orderId;
}
public void setOrderId(Long orderId) {
this.orderId = orderId;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
}
@Override
public CreatePostPayInstanceResponse getInstance(UnmarshallerContext context) {
return CreatePostPayInstanceResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreatePostPayOrderRequest.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.alikafka.model.v20190916;
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.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class CreatePostPayOrderRequest extends RpcAcsRequest<CreatePostPayOrderResponse> {
private Integer ioMax;
private Integer eipMax;
private String specType;
private String resourceGroupId;
private List<Tag> tags;
private Integer partitionNum;
private Integer paidType;
@SerializedName("serverlessConfig")
private ServerlessConfig serverlessConfig;
private Integer diskSize;
private String ioMaxSpec;
private String diskType;
private Integer topicQuota;
private Integer deployType;
public CreatePostPayOrderRequest() {
super("alikafka", "2019-09-16", "CreatePostPayOrder", "alikafka");
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 Integer getIoMax() {
return this.ioMax;
}
public void setIoMax(Integer ioMax) {
this.ioMax = ioMax;
if(ioMax != null){
putQueryParameter("IoMax", ioMax.toString());
}
}
public Integer getEipMax() {
return this.eipMax;
}
public void setEipMax(Integer eipMax) {
this.eipMax = eipMax;
if(eipMax != null){
putQueryParameter("EipMax", eipMax.toString());
}
}
public String getSpecType() {
return this.specType;
}
public void setSpecType(String specType) {
this.specType = specType;
if(specType != null){
putQueryParameter("SpecType", specType);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
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 Integer getPartitionNum() {
return this.partitionNum;
}
public void setPartitionNum(Integer partitionNum) {
this.partitionNum = partitionNum;
if(partitionNum != null){
putQueryParameter("PartitionNum", partitionNum.toString());
}
}
public Integer getPaidType() {
return this.paidType;
}
public void setPaidType(Integer paidType) {
this.paidType = paidType;
if(paidType != null){
putQueryParameter("PaidType", paidType.toString());
}
}
public ServerlessConfig getServerlessConfig() {
return this.serverlessConfig;
}
public void setServerlessConfig(ServerlessConfig serverlessConfig) {
this.serverlessConfig = serverlessConfig;
if (serverlessConfig != null) {
putQueryParameter("ServerlessConfig" , new Gson().toJson(serverlessConfig));
}
}
public Integer getDiskSize() {
return this.diskSize;
}
public void setDiskSize(Integer diskSize) {
this.diskSize = diskSize;
if(diskSize != null){
putQueryParameter("DiskSize", diskSize.toString());
}
}
public String getIoMaxSpec() {
return this.ioMaxSpec;
}
public void setIoMaxSpec(String ioMaxSpec) {
this.ioMaxSpec = ioMaxSpec;
if(ioMaxSpec != null){
putQueryParameter("IoMaxSpec", ioMaxSpec);
}
}
public String getDiskType() {
return this.diskType;
}
public void setDiskType(String diskType) {
this.diskType = diskType;
if(diskType != null){
putQueryParameter("DiskType", diskType);
}
}
public Integer getTopicQuota() {
return this.topicQuota;
}
public void setTopicQuota(Integer topicQuota) {
this.topicQuota = topicQuota;
if(topicQuota != null){
putQueryParameter("TopicQuota", topicQuota.toString());
}
}
public Integer getDeployType() {
return this.deployType;
}
public void setDeployType(Integer deployType) {
this.deployType = deployType;
if(deployType != null){
putQueryParameter("DeployType", deployType.toString());
}
}
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;
}
}
public static class ServerlessConfig {
@SerializedName("ReservedPublishCapacity")
private Long reservedPublishCapacity;
@SerializedName("ReservedSubscribeCapacity")
private Long reservedSubscribeCapacity;
public Long getReservedPublishCapacity() {
return this.reservedPublishCapacity;
}
public void setReservedPublishCapacity(Long reservedPublishCapacity) {
this.reservedPublishCapacity = reservedPublishCapacity;
}
public Long getReservedSubscribeCapacity() {
return this.reservedSubscribeCapacity;
}
public void setReservedSubscribeCapacity(Long reservedSubscribeCapacity) {
this.reservedSubscribeCapacity = reservedSubscribeCapacity;
}
}
@Override
public Class<CreatePostPayOrderResponse> getResponseClass() {
return CreatePostPayOrderResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreatePostPayOrderResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.CreatePostPayOrderResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreatePostPayOrderResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private String orderId;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getOrderId() {
return this.orderId;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
@Override
public CreatePostPayOrderResponse getInstance(UnmarshallerContext context) {
return CreatePostPayOrderResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreatePrePayInstanceRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class CreatePrePayInstanceRequest extends RpcAcsRequest<CreatePrePayInstanceResponse> {
private Integer eipMax;
private Integer duration;
private String specType;
private String resourceGroupId;
@SerializedName("confluentConfig")
private ConfluentConfig confluentConfig;
private List<Tag> tags;
private Integer partitionNum;
private Integer paidType;
private Integer diskSize;
private String ioMaxSpec;
private String diskType;
private Integer deployType;
public CreatePrePayInstanceRequest() {
super("alikafka", "2019-09-16", "CreatePrePayInstance", "alikafka");
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 Integer getEipMax() {
return this.eipMax;
}
public void setEipMax(Integer eipMax) {
this.eipMax = eipMax;
if(eipMax != null){
putQueryParameter("EipMax", eipMax.toString());
}
}
public Integer getDuration() {
return this.duration;
}
public void setDuration(Integer duration) {
this.duration = duration;
if(duration != null){
putQueryParameter("Duration", duration.toString());
}
}
public String getSpecType() {
return this.specType;
}
public void setSpecType(String specType) {
this.specType = specType;
if(specType != null){
putQueryParameter("SpecType", specType);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public ConfluentConfig getConfluentConfig() {
return this.confluentConfig;
}
public void setConfluentConfig(ConfluentConfig confluentConfig) {
this.confluentConfig = confluentConfig;
if (confluentConfig != null) {
putQueryParameter("ConfluentConfig" , new Gson().toJson(confluentConfig));
}
}
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 Integer getPartitionNum() {
return this.partitionNum;
}
public void setPartitionNum(Integer partitionNum) {
this.partitionNum = partitionNum;
if(partitionNum != null){
putQueryParameter("PartitionNum", partitionNum.toString());
}
}
public Integer getPaidType() {
return this.paidType;
}
public void setPaidType(Integer paidType) {
this.paidType = paidType;
if(paidType != null){
putQueryParameter("PaidType", paidType.toString());
}
}
public Integer getDiskSize() {
return this.diskSize;
}
public void setDiskSize(Integer diskSize) {
this.diskSize = diskSize;
if(diskSize != null){
putQueryParameter("DiskSize", diskSize.toString());
}
}
public String getIoMaxSpec() {
return this.ioMaxSpec;
}
public void setIoMaxSpec(String ioMaxSpec) {
this.ioMaxSpec = ioMaxSpec;
if(ioMaxSpec != null){
putQueryParameter("IoMaxSpec", ioMaxSpec);
}
}
public String getDiskType() {
return this.diskType;
}
public void setDiskType(String diskType) {
this.diskType = diskType;
if(diskType != null){
putQueryParameter("DiskType", diskType);
}
}
public Integer getDeployType() {
return this.deployType;
}
public void setDeployType(Integer deployType) {
this.deployType = deployType;
if(deployType != null){
putQueryParameter("DeployType", deployType.toString());
}
}
public static class ConfluentConfig {
@SerializedName("KsqlStorage")
private Integer ksqlStorage;
@SerializedName("ControlCenterStorage")
private Integer controlCenterStorage;
@SerializedName("KafkaRestProxyReplica")
private Integer kafkaRestProxyReplica;
@SerializedName("ZooKeeperReplica")
private Integer zooKeeperReplica;
@SerializedName("ConnectCU")
private Integer connectCU;
@SerializedName("KafkaReplica")
private Integer kafkaReplica;
@SerializedName("SchemaRegistryReplica")
private Integer schemaRegistryReplica;
@SerializedName("KafkaCU")
private Integer kafkaCU;
@SerializedName("ConnectReplica")
private Integer connectReplica;
@SerializedName("ControlCenterCU")
private Integer controlCenterCU;
@SerializedName("KsqlReplica")
private Integer ksqlReplica;
@SerializedName("ControlCenterReplica")
private Integer controlCenterReplica;
@SerializedName("KafkaStorage")
private Integer kafkaStorage;
@SerializedName("ZooKeeperStorage")
private Integer zooKeeperStorage;
@SerializedName("KsqlCU")
private Integer ksqlCU;
@SerializedName("SchemaRegistryCU")
private Integer schemaRegistryCU;
@SerializedName("ZooKeeperCU")
private Integer zooKeeperCU;
@SerializedName("KafkaRestProxyCU")
private Integer kafkaRestProxyCU;
public Integer getKsqlStorage() {
return this.ksqlStorage;
}
public void setKsqlStorage(Integer ksqlStorage) {
this.ksqlStorage = ksqlStorage;
}
public Integer getControlCenterStorage() {
return this.controlCenterStorage;
}
public void setControlCenterStorage(Integer controlCenterStorage) {
this.controlCenterStorage = controlCenterStorage;
}
public Integer getKafkaRestProxyReplica() {
return this.kafkaRestProxyReplica;
}
public void setKafkaRestProxyReplica(Integer kafkaRestProxyReplica) {
this.kafkaRestProxyReplica = kafkaRestProxyReplica;
}
public Integer getZooKeeperReplica() {
return this.zooKeeperReplica;
}
public void setZooKeeperReplica(Integer zooKeeperReplica) {
this.zooKeeperReplica = zooKeeperReplica;
}
public Integer getConnectCU() {
return this.connectCU;
}
public void setConnectCU(Integer connectCU) {
this.connectCU = connectCU;
}
public Integer getKafkaReplica() {
return this.kafkaReplica;
}
public void setKafkaReplica(Integer kafkaReplica) {
this.kafkaReplica = kafkaReplica;
}
public Integer getSchemaRegistryReplica() {
return this.schemaRegistryReplica;
}
public void setSchemaRegistryReplica(Integer schemaRegistryReplica) {
this.schemaRegistryReplica = schemaRegistryReplica;
}
public Integer getKafkaCU() {
return this.kafkaCU;
}
public void setKafkaCU(Integer kafkaCU) {
this.kafkaCU = kafkaCU;
}
public Integer getConnectReplica() {
return this.connectReplica;
}
public void setConnectReplica(Integer connectReplica) {
this.connectReplica = connectReplica;
}
public Integer getControlCenterCU() {
return this.controlCenterCU;
}
public void setControlCenterCU(Integer controlCenterCU) {
this.controlCenterCU = controlCenterCU;
}
public Integer getKsqlReplica() {
return this.ksqlReplica;
}
public void setKsqlReplica(Integer ksqlReplica) {
this.ksqlReplica = ksqlReplica;
}
public Integer getControlCenterReplica() {
return this.controlCenterReplica;
}
public void setControlCenterReplica(Integer controlCenterReplica) {
this.controlCenterReplica = controlCenterReplica;
}
public Integer getKafkaStorage() {
return this.kafkaStorage;
}
public void setKafkaStorage(Integer kafkaStorage) {
this.kafkaStorage = kafkaStorage;
}
public Integer getZooKeeperStorage() {
return this.zooKeeperStorage;
}
public void setZooKeeperStorage(Integer zooKeeperStorage) {
this.zooKeeperStorage = zooKeeperStorage;
}
public Integer getKsqlCU() {
return this.ksqlCU;
}
public void setKsqlCU(Integer ksqlCU) {
this.ksqlCU = ksqlCU;
}
public Integer getSchemaRegistryCU() {
return this.schemaRegistryCU;
}
public void setSchemaRegistryCU(Integer schemaRegistryCU) {
this.schemaRegistryCU = schemaRegistryCU;
}
public Integer getZooKeeperCU() {
return this.zooKeeperCU;
}
public void setZooKeeperCU(Integer zooKeeperCU) {
this.zooKeeperCU = zooKeeperCU;
}
public Integer getKafkaRestProxyCU() {
return this.kafkaRestProxyCU;
}
public void setKafkaRestProxyCU(Integer kafkaRestProxyCU) {
this.kafkaRestProxyCU = kafkaRestProxyCU;
}
}
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<CreatePrePayInstanceResponse> getResponseClass() {
return CreatePrePayInstanceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreatePrePayInstanceResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.CreatePrePayInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreatePrePayInstanceResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private Data data;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long orderId;
private String instanceId;
public Long getOrderId() {
return this.orderId;
}
public void setOrderId(Long orderId) {
this.orderId = orderId;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
}
@Override
public CreatePrePayInstanceResponse getInstance(UnmarshallerContext context) {
return CreatePrePayInstanceResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreatePrePayOrderRequest.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.alikafka.model.v20190916;
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.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class CreatePrePayOrderRequest extends RpcAcsRequest<CreatePrePayOrderResponse> {
private Integer ioMax;
private Integer eipMax;
private Integer duration;
private String specType;
private String resourceGroupId;
@SerializedName("confluentConfig")
private ConfluentConfig confluentConfig;
private List<Tag> tags;
private Integer partitionNum;
private Integer paidType;
private Integer diskSize;
private String ioMaxSpec;
private String diskType;
private Integer topicQuota;
private Integer deployType;
public CreatePrePayOrderRequest() {
super("alikafka", "2019-09-16", "CreatePrePayOrder", "alikafka");
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 Integer getIoMax() {
return this.ioMax;
}
public void setIoMax(Integer ioMax) {
this.ioMax = ioMax;
if(ioMax != null){
putQueryParameter("IoMax", ioMax.toString());
}
}
public Integer getEipMax() {
return this.eipMax;
}
public void setEipMax(Integer eipMax) {
this.eipMax = eipMax;
if(eipMax != null){
putQueryParameter("EipMax", eipMax.toString());
}
}
public Integer getDuration() {
return this.duration;
}
public void setDuration(Integer duration) {
this.duration = duration;
if(duration != null){
putQueryParameter("Duration", duration.toString());
}
}
public String getSpecType() {
return this.specType;
}
public void setSpecType(String specType) {
this.specType = specType;
if(specType != null){
putQueryParameter("SpecType", specType);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public ConfluentConfig getConfluentConfig() {
return this.confluentConfig;
}
public void setConfluentConfig(ConfluentConfig confluentConfig) {
this.confluentConfig = confluentConfig;
if (confluentConfig != null) {
putQueryParameter("ConfluentConfig" , new Gson().toJson(confluentConfig));
}
}
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 Integer getPartitionNum() {
return this.partitionNum;
}
public void setPartitionNum(Integer partitionNum) {
this.partitionNum = partitionNum;
if(partitionNum != null){
putQueryParameter("PartitionNum", partitionNum.toString());
}
}
public Integer getPaidType() {
return this.paidType;
}
public void setPaidType(Integer paidType) {
this.paidType = paidType;
if(paidType != null){
putQueryParameter("PaidType", paidType.toString());
}
}
public Integer getDiskSize() {
return this.diskSize;
}
public void setDiskSize(Integer diskSize) {
this.diskSize = diskSize;
if(diskSize != null){
putQueryParameter("DiskSize", diskSize.toString());
}
}
public String getIoMaxSpec() {
return this.ioMaxSpec;
}
public void setIoMaxSpec(String ioMaxSpec) {
this.ioMaxSpec = ioMaxSpec;
if(ioMaxSpec != null){
putQueryParameter("IoMaxSpec", ioMaxSpec);
}
}
public String getDiskType() {
return this.diskType;
}
public void setDiskType(String diskType) {
this.diskType = diskType;
if(diskType != null){
putQueryParameter("DiskType", diskType);
}
}
public Integer getTopicQuota() {
return this.topicQuota;
}
public void setTopicQuota(Integer topicQuota) {
this.topicQuota = topicQuota;
if(topicQuota != null){
putQueryParameter("TopicQuota", topicQuota.toString());
}
}
public Integer getDeployType() {
return this.deployType;
}
public void setDeployType(Integer deployType) {
this.deployType = deployType;
if(deployType != null){
putQueryParameter("DeployType", deployType.toString());
}
}
public static class ConfluentConfig {
@SerializedName("KsqlStorage")
private Integer ksqlStorage;
@SerializedName("ControlCenterStorage")
private Integer controlCenterStorage;
@SerializedName("KafkaRestProxyReplica")
private Integer kafkaRestProxyReplica;
@SerializedName("ZooKeeperReplica")
private Integer zooKeeperReplica;
@SerializedName("ConnectCU")
private Integer connectCU;
@SerializedName("KafkaReplica")
private Integer kafkaReplica;
@SerializedName("SchemaRegistryReplica")
private Integer schemaRegistryReplica;
@SerializedName("KafkaCU")
private Integer kafkaCU;
@SerializedName("ConnectReplica")
private Integer connectReplica;
@SerializedName("ControlCenterCU")
private Integer controlCenterCU;
@SerializedName("KsqlReplica")
private Integer ksqlReplica;
@SerializedName("ControlCenterReplica")
private Integer controlCenterReplica;
@SerializedName("KafkaStorage")
private Integer kafkaStorage;
@SerializedName("ZooKeeperStorage")
private Integer zooKeeperStorage;
@SerializedName("KsqlCU")
private Integer ksqlCU;
@SerializedName("SchemaRegistryCU")
private Integer schemaRegistryCU;
@SerializedName("ZooKeeperCU")
private Integer zooKeeperCU;
@SerializedName("KafkaRestProxyCU")
private Integer kafkaRestProxyCU;
public Integer getKsqlStorage() {
return this.ksqlStorage;
}
public void setKsqlStorage(Integer ksqlStorage) {
this.ksqlStorage = ksqlStorage;
}
public Integer getControlCenterStorage() {
return this.controlCenterStorage;
}
public void setControlCenterStorage(Integer controlCenterStorage) {
this.controlCenterStorage = controlCenterStorage;
}
public Integer getKafkaRestProxyReplica() {
return this.kafkaRestProxyReplica;
}
public void setKafkaRestProxyReplica(Integer kafkaRestProxyReplica) {
this.kafkaRestProxyReplica = kafkaRestProxyReplica;
}
public Integer getZooKeeperReplica() {
return this.zooKeeperReplica;
}
public void setZooKeeperReplica(Integer zooKeeperReplica) {
this.zooKeeperReplica = zooKeeperReplica;
}
public Integer getConnectCU() {
return this.connectCU;
}
public void setConnectCU(Integer connectCU) {
this.connectCU = connectCU;
}
public Integer getKafkaReplica() {
return this.kafkaReplica;
}
public void setKafkaReplica(Integer kafkaReplica) {
this.kafkaReplica = kafkaReplica;
}
public Integer getSchemaRegistryReplica() {
return this.schemaRegistryReplica;
}
public void setSchemaRegistryReplica(Integer schemaRegistryReplica) {
this.schemaRegistryReplica = schemaRegistryReplica;
}
public Integer getKafkaCU() {
return this.kafkaCU;
}
public void setKafkaCU(Integer kafkaCU) {
this.kafkaCU = kafkaCU;
}
public Integer getConnectReplica() {
return this.connectReplica;
}
public void setConnectReplica(Integer connectReplica) {
this.connectReplica = connectReplica;
}
public Integer getControlCenterCU() {
return this.controlCenterCU;
}
public void setControlCenterCU(Integer controlCenterCU) {
this.controlCenterCU = controlCenterCU;
}
public Integer getKsqlReplica() {
return this.ksqlReplica;
}
public void setKsqlReplica(Integer ksqlReplica) {
this.ksqlReplica = ksqlReplica;
}
public Integer getControlCenterReplica() {
return this.controlCenterReplica;
}
public void setControlCenterReplica(Integer controlCenterReplica) {
this.controlCenterReplica = controlCenterReplica;
}
public Integer getKafkaStorage() {
return this.kafkaStorage;
}
public void setKafkaStorage(Integer kafkaStorage) {
this.kafkaStorage = kafkaStorage;
}
public Integer getZooKeeperStorage() {
return this.zooKeeperStorage;
}
public void setZooKeeperStorage(Integer zooKeeperStorage) {
this.zooKeeperStorage = zooKeeperStorage;
}
public Integer getKsqlCU() {
return this.ksqlCU;
}
public void setKsqlCU(Integer ksqlCU) {
this.ksqlCU = ksqlCU;
}
public Integer getSchemaRegistryCU() {
return this.schemaRegistryCU;
}
public void setSchemaRegistryCU(Integer schemaRegistryCU) {
this.schemaRegistryCU = schemaRegistryCU;
}
public Integer getZooKeeperCU() {
return this.zooKeeperCU;
}
public void setZooKeeperCU(Integer zooKeeperCU) {
this.zooKeeperCU = zooKeeperCU;
}
public Integer getKafkaRestProxyCU() {
return this.kafkaRestProxyCU;
}
public void setKafkaRestProxyCU(Integer kafkaRestProxyCU) {
this.kafkaRestProxyCU = kafkaRestProxyCU;
}
}
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<CreatePrePayOrderResponse> getResponseClass() {
return CreatePrePayOrderResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreatePrePayOrderResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.CreatePrePayOrderResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreatePrePayOrderResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private String orderId;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getOrderId() {
return this.orderId;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
@Override
public CreatePrePayOrderResponse getInstance(UnmarshallerContext context) {
return CreatePrePayOrderResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreateSaslUserRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateSaslUserRequest extends RpcAcsRequest<CreateSaslUserResponse> {
private String type;
private String password;
private String mechanism;
private String instanceId;
private String username;
public CreateSaslUserRequest() {
super("alikafka", "2019-09-16", "CreateSaslUser", "alikafka");
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 getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putQueryParameter("Password", password);
}
}
public String getMechanism() {
return this.mechanism;
}
public void setMechanism(String mechanism) {
this.mechanism = mechanism;
if(mechanism != null){
putQueryParameter("Mechanism", mechanism);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
if(username != null){
putQueryParameter("Username", username);
}
}
@Override
public Class<CreateSaslUserResponse> getResponseClass() {
return CreateSaslUserResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreateSaslUserResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.CreateSaslUserResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateSaslUserResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public CreateSaslUserResponse getInstance(UnmarshallerContext context) {
return CreateSaslUserResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreateScheduledScalingRuleRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateScheduledScalingRuleRequest extends RpcAcsRequest<CreateScheduledScalingRuleResponse> {
private String scheduleType;
private String weeklyTypes;
private Integer reservedPubFlow;
private String timeZone;
private String ruleName;
private Long firstScheduledTime;
private Boolean enable;
private Integer durationMinutes;
private Integer reservedSubFlow;
private String instanceId;
private String repeatType;
public CreateScheduledScalingRuleRequest() {
super("alikafka", "2019-09-16", "CreateScheduledScalingRule", "alikafka");
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 getScheduleType() {
return this.scheduleType;
}
public void setScheduleType(String scheduleType) {
this.scheduleType = scheduleType;
if(scheduleType != null){
putQueryParameter("ScheduleType", scheduleType);
}
}
public String getWeeklyTypes() {
return this.weeklyTypes;
}
public void setWeeklyTypes(String weeklyTypes) {
this.weeklyTypes = weeklyTypes;
if(weeklyTypes != null){
putQueryParameter("WeeklyTypes", weeklyTypes);
}
}
public Integer getReservedPubFlow() {
return this.reservedPubFlow;
}
public void setReservedPubFlow(Integer reservedPubFlow) {
this.reservedPubFlow = reservedPubFlow;
if(reservedPubFlow != null){
putQueryParameter("ReservedPubFlow", reservedPubFlow.toString());
}
}
public String getTimeZone() {
return this.timeZone;
}
public void setTimeZone(String timeZone) {
this.timeZone = timeZone;
if(timeZone != null){
putQueryParameter("TimeZone", timeZone);
}
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
if(ruleName != null){
putQueryParameter("RuleName", ruleName);
}
}
public Long getFirstScheduledTime() {
return this.firstScheduledTime;
}
public void setFirstScheduledTime(Long firstScheduledTime) {
this.firstScheduledTime = firstScheduledTime;
if(firstScheduledTime != null){
putQueryParameter("FirstScheduledTime", firstScheduledTime.toString());
}
}
public Boolean getEnable() {
return this.enable;
}
public void setEnable(Boolean enable) {
this.enable = enable;
if(enable != null){
putQueryParameter("Enable", enable.toString());
}
}
public Integer getDurationMinutes() {
return this.durationMinutes;
}
public void setDurationMinutes(Integer durationMinutes) {
this.durationMinutes = durationMinutes;
if(durationMinutes != null){
putQueryParameter("DurationMinutes", durationMinutes.toString());
}
}
public Integer getReservedSubFlow() {
return this.reservedSubFlow;
}
public void setReservedSubFlow(Integer reservedSubFlow) {
this.reservedSubFlow = reservedSubFlow;
if(reservedSubFlow != null){
putQueryParameter("ReservedSubFlow", reservedSubFlow.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getRepeatType() {
return this.repeatType;
}
public void setRepeatType(String repeatType) {
this.repeatType = repeatType;
if(repeatType != null){
putQueryParameter("RepeatType", repeatType);
}
}
@Override
public Class<CreateScheduledScalingRuleResponse> getResponseClass() {
return CreateScheduledScalingRuleResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreateScheduledScalingRuleResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.CreateScheduledScalingRuleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateScheduledScalingRuleResponse extends AcsResponse {
private String requestId;
private Boolean success;
private Long code;
private String message;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Long getCode() {
return this.code;
}
public void setCode(Long code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public CreateScheduledScalingRuleResponse getInstance(UnmarshallerContext context) {
return CreateScheduledScalingRuleResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreateTopicRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateTopicRequest extends RpcAcsRequest<CreateTopicResponse> {
private String remark;
private Long replicationFactor;
private Boolean compactTopic;
private List<Tag> tags;
private String partitionNum;
private Long minInsyncReplicas;
private String instanceId;
private String topic;
private String config;
private Boolean localTopic;
public CreateTopicRequest() {
super("alikafka", "2019-09-16", "CreateTopic", "alikafka");
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 getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
public Long getReplicationFactor() {
return this.replicationFactor;
}
public void setReplicationFactor(Long replicationFactor) {
this.replicationFactor = replicationFactor;
if(replicationFactor != null){
putQueryParameter("ReplicationFactor", replicationFactor.toString());
}
}
public Boolean getCompactTopic() {
return this.compactTopic;
}
public void setCompactTopic(Boolean compactTopic) {
this.compactTopic = compactTopic;
if(compactTopic != null){
putQueryParameter("CompactTopic", compactTopic.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 String getPartitionNum() {
return this.partitionNum;
}
public void setPartitionNum(String partitionNum) {
this.partitionNum = partitionNum;
if(partitionNum != null){
putQueryParameter("PartitionNum", partitionNum);
}
}
public Long getMinInsyncReplicas() {
return this.minInsyncReplicas;
}
public void setMinInsyncReplicas(Long minInsyncReplicas) {
this.minInsyncReplicas = minInsyncReplicas;
if(minInsyncReplicas != null){
putQueryParameter("MinInsyncReplicas", minInsyncReplicas.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putQueryParameter("Topic", topic);
}
}
public String getConfig() {
return this.config;
}
public void setConfig(String config) {
this.config = config;
if(config != null){
putQueryParameter("Config", config);
}
}
public Boolean getLocalTopic() {
return this.localTopic;
}
public void setLocalTopic(Boolean localTopic) {
this.localTopic = localTopic;
if(localTopic != null){
putQueryParameter("LocalTopic", localTopic.toString());
}
}
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<CreateTopicResponse> getResponseClass() {
return CreateTopicResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/CreateTopicResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.CreateTopicResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateTopicResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public CreateTopicResponse getInstance(UnmarshallerContext context) {
return CreateTopicResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DeleteAclRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteAclRequest extends RpcAcsRequest<DeleteAclResponse> {
private String aclResourcePatternType;
private String aclResourceType;
private String host;
private String aclOperationTypes;
private String aclOperationType;
private String aclResourceName;
private String instanceId;
private String aclPermissionType;
private String username;
public DeleteAclRequest() {
super("alikafka", "2019-09-16", "DeleteAcl", "alikafka");
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 getAclResourcePatternType() {
return this.aclResourcePatternType;
}
public void setAclResourcePatternType(String aclResourcePatternType) {
this.aclResourcePatternType = aclResourcePatternType;
if(aclResourcePatternType != null){
putQueryParameter("AclResourcePatternType", aclResourcePatternType);
}
}
public String getAclResourceType() {
return this.aclResourceType;
}
public void setAclResourceType(String aclResourceType) {
this.aclResourceType = aclResourceType;
if(aclResourceType != null){
putQueryParameter("AclResourceType", aclResourceType);
}
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
if(host != null){
putQueryParameter("Host", host);
}
}
public String getAclOperationTypes() {
return this.aclOperationTypes;
}
public void setAclOperationTypes(String aclOperationTypes) {
this.aclOperationTypes = aclOperationTypes;
if(aclOperationTypes != null){
putQueryParameter("AclOperationTypes", aclOperationTypes);
}
}
public String getAclOperationType() {
return this.aclOperationType;
}
public void setAclOperationType(String aclOperationType) {
this.aclOperationType = aclOperationType;
if(aclOperationType != null){
putQueryParameter("AclOperationType", aclOperationType);
}
}
public String getAclResourceName() {
return this.aclResourceName;
}
public void setAclResourceName(String aclResourceName) {
this.aclResourceName = aclResourceName;
if(aclResourceName != null){
putQueryParameter("AclResourceName", aclResourceName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getAclPermissionType() {
return this.aclPermissionType;
}
public void setAclPermissionType(String aclPermissionType) {
this.aclPermissionType = aclPermissionType;
if(aclPermissionType != null){
putQueryParameter("AclPermissionType", aclPermissionType);
}
}
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
if(username != null){
putQueryParameter("Username", username);
}
}
@Override
public Class<DeleteAclResponse> getResponseClass() {
return DeleteAclResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DeleteAclResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.DeleteAclResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteAclResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public DeleteAclResponse getInstance(UnmarshallerContext context) {
return DeleteAclResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DeleteConsumerGroupRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteConsumerGroupRequest extends RpcAcsRequest<DeleteConsumerGroupResponse> {
private String consumerId;
private String instanceId;
public DeleteConsumerGroupRequest() {
super("alikafka", "2019-09-16", "DeleteConsumerGroup", "alikafka");
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 getConsumerId() {
return this.consumerId;
}
public void setConsumerId(String consumerId) {
this.consumerId = consumerId;
if(consumerId != null){
putQueryParameter("ConsumerId", consumerId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<DeleteConsumerGroupResponse> getResponseClass() {
return DeleteConsumerGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DeleteConsumerGroupResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.DeleteConsumerGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteConsumerGroupResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public DeleteConsumerGroupResponse getInstance(UnmarshallerContext context) {
return DeleteConsumerGroupResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DeleteInstanceRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteInstanceRequest extends RpcAcsRequest<DeleteInstanceResponse> {
private String instanceId;
public DeleteInstanceRequest() {
super("alikafka", "2019-09-16", "DeleteInstance", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<DeleteInstanceResponse> getResponseClass() {
return DeleteInstanceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DeleteInstanceResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.DeleteInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteInstanceResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public DeleteInstanceResponse getInstance(UnmarshallerContext context) {
return DeleteInstanceResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DeleteSaslUserRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteSaslUserRequest extends RpcAcsRequest<DeleteSaslUserResponse> {
private String type;
private String mechanism;
private String instanceId;
private String username;
public DeleteSaslUserRequest() {
super("alikafka", "2019-09-16", "DeleteSaslUser", "alikafka");
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 getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getMechanism() {
return this.mechanism;
}
public void setMechanism(String mechanism) {
this.mechanism = mechanism;
if(mechanism != null){
putQueryParameter("Mechanism", mechanism);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
if(username != null){
putQueryParameter("Username", username);
}
}
@Override
public Class<DeleteSaslUserResponse> getResponseClass() {
return DeleteSaslUserResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DeleteSaslUserResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.DeleteSaslUserResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteSaslUserResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public DeleteSaslUserResponse getInstance(UnmarshallerContext context) {
return DeleteSaslUserResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DeleteScheduledScalingRuleRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteScheduledScalingRuleRequest extends RpcAcsRequest<DeleteScheduledScalingRuleResponse> {
private String ruleName;
private String instanceId;
public DeleteScheduledScalingRuleRequest() {
super("alikafka", "2019-09-16", "DeleteScheduledScalingRule", "alikafka");
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 getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
if(ruleName != null){
putQueryParameter("RuleName", ruleName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<DeleteScheduledScalingRuleResponse> getResponseClass() {
return DeleteScheduledScalingRuleResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DeleteScheduledScalingRuleResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.DeleteScheduledScalingRuleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteScheduledScalingRuleResponse extends AcsResponse {
private String requestId;
private Boolean success;
private Long code;
private String message;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Long getCode() {
return this.code;
}
public void setCode(Long code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public DeleteScheduledScalingRuleResponse getInstance(UnmarshallerContext context) {
return DeleteScheduledScalingRuleResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DeleteTopicRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteTopicRequest extends RpcAcsRequest<DeleteTopicResponse> {
private String instanceId;
private String topic;
public DeleteTopicRequest() {
super("alikafka", "2019-09-16", "DeleteTopic", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putQueryParameter("Topic", topic);
}
}
@Override
public Class<DeleteTopicResponse> getResponseClass() {
return DeleteTopicResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DeleteTopicResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.DeleteTopicResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTopicResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public DeleteTopicResponse getInstance(UnmarshallerContext context) {
return DeleteTopicResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DescribeAclsRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeAclsRequest extends RpcAcsRequest<DescribeAclsResponse> {
private String aclResourcePatternType;
private String aclResourceType;
private String host;
private String aclOperationType;
private String aclResourceName;
private String instanceId;
private String aclPermissionType;
private String username;
public DescribeAclsRequest() {
super("alikafka", "2019-09-16", "DescribeAcls", "alikafka");
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 getAclResourcePatternType() {
return this.aclResourcePatternType;
}
public void setAclResourcePatternType(String aclResourcePatternType) {
this.aclResourcePatternType = aclResourcePatternType;
if(aclResourcePatternType != null){
putQueryParameter("AclResourcePatternType", aclResourcePatternType);
}
}
public String getAclResourceType() {
return this.aclResourceType;
}
public void setAclResourceType(String aclResourceType) {
this.aclResourceType = aclResourceType;
if(aclResourceType != null){
putQueryParameter("AclResourceType", aclResourceType);
}
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
if(host != null){
putQueryParameter("Host", host);
}
}
public String getAclOperationType() {
return this.aclOperationType;
}
public void setAclOperationType(String aclOperationType) {
this.aclOperationType = aclOperationType;
if(aclOperationType != null){
putQueryParameter("AclOperationType", aclOperationType);
}
}
public String getAclResourceName() {
return this.aclResourceName;
}
public void setAclResourceName(String aclResourceName) {
this.aclResourceName = aclResourceName;
if(aclResourceName != null){
putQueryParameter("AclResourceName", aclResourceName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getAclPermissionType() {
return this.aclPermissionType;
}
public void setAclPermissionType(String aclPermissionType) {
this.aclPermissionType = aclPermissionType;
if(aclPermissionType != null){
putQueryParameter("AclPermissionType", aclPermissionType);
}
}
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
if(username != null){
putQueryParameter("Username", username);
}
}
@Override
public Class<DescribeAclsResponse> getResponseClass() {
return DescribeAclsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DescribeAclsResponse.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.alikafka.model.v20190916;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.DescribeAclsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeAclsResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private List<KafkaAclVO> kafkaAclList;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<KafkaAclVO> getKafkaAclList() {
return this.kafkaAclList;
}
public void setKafkaAclList(List<KafkaAclVO> kafkaAclList) {
this.kafkaAclList = kafkaAclList;
}
public static class KafkaAclVO {
private String aclResourceType;
private String host;
private String aclOperationType;
private String aclResourceName;
private String aclResourcePatternType;
private String username;
private String aclPermissionType;
public String getAclResourceType() {
return this.aclResourceType;
}
public void setAclResourceType(String aclResourceType) {
this.aclResourceType = aclResourceType;
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
}
public String getAclOperationType() {
return this.aclOperationType;
}
public void setAclOperationType(String aclOperationType) {
this.aclOperationType = aclOperationType;
}
public String getAclResourceName() {
return this.aclResourceName;
}
public void setAclResourceName(String aclResourceName) {
this.aclResourceName = aclResourceName;
}
public String getAclResourcePatternType() {
return this.aclResourcePatternType;
}
public void setAclResourcePatternType(String aclResourcePatternType) {
this.aclResourcePatternType = aclResourcePatternType;
}
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
}
public String getAclPermissionType() {
return this.aclPermissionType;
}
public void setAclPermissionType(String aclPermissionType) {
this.aclPermissionType = aclPermissionType;
}
}
@Override
public DescribeAclsResponse getInstance(UnmarshallerContext context) {
return DescribeAclsResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DescribeSaslUsersRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeSaslUsersRequest extends RpcAcsRequest<DescribeSaslUsersResponse> {
private String instanceId;
public DescribeSaslUsersRequest() {
super("alikafka", "2019-09-16", "DescribeSaslUsers", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<DescribeSaslUsersResponse> getResponseClass() {
return DescribeSaslUsersResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/DescribeSaslUsersResponse.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.alikafka.model.v20190916;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.DescribeSaslUsersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSaslUsersResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private List<SaslUserVO> saslUserList;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<SaslUserVO> getSaslUserList() {
return this.saslUserList;
}
public void setSaslUserList(List<SaslUserVO> saslUserList) {
this.saslUserList = saslUserList;
}
public static class SaslUserVO {
private String type;
private String password;
private String username;
private String mechanism;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
}
public String getMechanism() {
return this.mechanism;
}
public void setMechanism(String mechanism) {
this.mechanism = mechanism;
}
}
@Override
public DescribeSaslUsersResponse getInstance(UnmarshallerContext context) {
return DescribeSaslUsersResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/EnableAutoGroupCreationRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class EnableAutoGroupCreationRequest extends RpcAcsRequest<EnableAutoGroupCreationResponse> {
private String instanceId;
private Boolean enable;
public EnableAutoGroupCreationRequest() {
super("alikafka", "2019-09-16", "EnableAutoGroupCreation", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Boolean getEnable() {
return this.enable;
}
public void setEnable(Boolean enable) {
this.enable = enable;
if(enable != null){
putQueryParameter("Enable", enable.toString());
}
}
@Override
public Class<EnableAutoGroupCreationResponse> getResponseClass() {
return EnableAutoGroupCreationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/EnableAutoGroupCreationResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.EnableAutoGroupCreationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EnableAutoGroupCreationResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public EnableAutoGroupCreationResponse getInstance(UnmarshallerContext context) {
return EnableAutoGroupCreationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/EnableAutoTopicCreationRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class EnableAutoTopicCreationRequest extends RpcAcsRequest<EnableAutoTopicCreationResponse> {
private Long partitionNum;
private Boolean updatePartition;
private String instanceId;
private String operate;
public EnableAutoTopicCreationRequest() {
super("alikafka", "2019-09-16", "EnableAutoTopicCreation", "alikafka");
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 getPartitionNum() {
return this.partitionNum;
}
public void setPartitionNum(Long partitionNum) {
this.partitionNum = partitionNum;
if(partitionNum != null){
putQueryParameter("PartitionNum", partitionNum.toString());
}
}
public Boolean getUpdatePartition() {
return this.updatePartition;
}
public void setUpdatePartition(Boolean updatePartition) {
this.updatePartition = updatePartition;
if(updatePartition != null){
putQueryParameter("UpdatePartition", updatePartition.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getOperate() {
return this.operate;
}
public void setOperate(String operate) {
this.operate = operate;
if(operate != null){
putQueryParameter("Operate", operate);
}
}
@Override
public Class<EnableAutoTopicCreationResponse> getResponseClass() {
return EnableAutoTopicCreationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/EnableAutoTopicCreationResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.EnableAutoTopicCreationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EnableAutoTopicCreationResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public EnableAutoTopicCreationResponse getInstance(UnmarshallerContext context) {
return EnableAutoTopicCreationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetAllInstanceIdListRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class GetAllInstanceIdListRequest extends RpcAcsRequest<GetAllInstanceIdListResponse> {
public GetAllInstanceIdListRequest() {
super("alikafka", "2019-09-16", "GetAllInstanceIdList", "alikafka");
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) {}
}
@Override
public Class<GetAllInstanceIdListResponse> getResponseClass() {
return GetAllInstanceIdListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetAllInstanceIdListResponse.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.alikafka.model.v20190916;
import java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.GetAllInstanceIdListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAllInstanceIdListResponse extends AcsResponse {
private Integer code;
private String message;
private Map<Object,Object> instanceIds;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Map<Object,Object> getInstanceIds() {
return this.instanceIds;
}
public void setInstanceIds(Map<Object,Object> instanceIds) {
this.instanceIds = instanceIds;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public GetAllInstanceIdListResponse getInstance(UnmarshallerContext context) {
return GetAllInstanceIdListResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetAllowedIpListRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class GetAllowedIpListRequest extends RpcAcsRequest<GetAllowedIpListResponse> {
private String instanceId;
public GetAllowedIpListRequest() {
super("alikafka", "2019-09-16", "GetAllowedIpList", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetAllowedIpListResponse> getResponseClass() {
return GetAllowedIpListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetAllowedIpListResponse.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.alikafka.model.v20190916;
import java.util.List;
import java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.GetAllowedIpListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAllowedIpListResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private AllowedList allowedList;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public AllowedList getAllowedList() {
return this.allowedList;
}
public void setAllowedList(AllowedList allowedList) {
this.allowedList = allowedList;
}
public static class AllowedList {
private Integer deployType;
private List<IPListVO> vpcList;
private List<IPListVO> internetList;
public Integer getDeployType() {
return this.deployType;
}
public void setDeployType(Integer deployType) {
this.deployType = deployType;
}
public List<IPListVO> getVpcList() {
return this.vpcList;
}
public void setVpcList(List<IPListVO> vpcList) {
this.vpcList = vpcList;
}
public List<IPListVO> getInternetList() {
return this.internetList;
}
public void setInternetList(List<IPListVO> internetList) {
this.internetList = internetList;
}
public static class IPListVO {
private String portRange;
private Map<Object,Object> allowedIpGroup;
private List<String> allowedIpList;
public String getPortRange() {
return this.portRange;
}
public void setPortRange(String portRange) {
this.portRange = portRange;
}
public Map<Object,Object> getAllowedIpGroup() {
return this.allowedIpGroup;
}
public void setAllowedIpGroup(Map<Object,Object> allowedIpGroup) {
this.allowedIpGroup = allowedIpGroup;
}
public List<String> getAllowedIpList() {
return this.allowedIpList;
}
public void setAllowedIpList(List<String> allowedIpList) {
this.allowedIpList = allowedIpList;
}
}
}
@Override
public GetAllowedIpListResponse getInstance(UnmarshallerContext context) {
return GetAllowedIpListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetAutoScalingConfigurationRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class GetAutoScalingConfigurationRequest extends RpcAcsRequest<GetAutoScalingConfigurationResponse> {
private String instanceId;
public GetAutoScalingConfigurationRequest() {
super("alikafka", "2019-09-16", "GetAutoScalingConfiguration", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetAutoScalingConfigurationResponse> getResponseClass() {
return GetAutoScalingConfigurationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetAutoScalingConfigurationResponse.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.alikafka.model.v20190916;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.GetAutoScalingConfigurationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAutoScalingConfigurationResponse extends AcsResponse {
private String requestId;
private Boolean success;
private Long code;
private String message;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Long getCode() {
return this.code;
}
public void setCode(Long code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private List<ScheduledScalingRulesItem> scheduledScalingRules;
public List<ScheduledScalingRulesItem> getScheduledScalingRules() {
return this.scheduledScalingRules;
}
public void setScheduledScalingRules(List<ScheduledScalingRulesItem> scheduledScalingRules) {
this.scheduledScalingRules = scheduledScalingRules;
}
public static class ScheduledScalingRulesItem {
private Long durationMinutes;
private Boolean enable;
private Long estimatedElasticScalingDownTimeSecs;
private Long estimatedElasticScalingUpTimeSecs;
private Long firstScheduledTime;
private String repeatType;
private Long reservedPubFlow;
private Long reservedSubFlow;
private Long ruleId;
private String ruleName;
private String scheduleType;
private String timeZone;
private List<String> weeklyTypes;
public Long getDurationMinutes() {
return this.durationMinutes;
}
public void setDurationMinutes(Long durationMinutes) {
this.durationMinutes = durationMinutes;
}
public Boolean getEnable() {
return this.enable;
}
public void setEnable(Boolean enable) {
this.enable = enable;
}
public Long getEstimatedElasticScalingDownTimeSecs() {
return this.estimatedElasticScalingDownTimeSecs;
}
public void setEstimatedElasticScalingDownTimeSecs(Long estimatedElasticScalingDownTimeSecs) {
this.estimatedElasticScalingDownTimeSecs = estimatedElasticScalingDownTimeSecs;
}
public Long getEstimatedElasticScalingUpTimeSecs() {
return this.estimatedElasticScalingUpTimeSecs;
}
public void setEstimatedElasticScalingUpTimeSecs(Long estimatedElasticScalingUpTimeSecs) {
this.estimatedElasticScalingUpTimeSecs = estimatedElasticScalingUpTimeSecs;
}
public Long getFirstScheduledTime() {
return this.firstScheduledTime;
}
public void setFirstScheduledTime(Long firstScheduledTime) {
this.firstScheduledTime = firstScheduledTime;
}
public String getRepeatType() {
return this.repeatType;
}
public void setRepeatType(String repeatType) {
this.repeatType = repeatType;
}
public Long getReservedPubFlow() {
return this.reservedPubFlow;
}
public void setReservedPubFlow(Long reservedPubFlow) {
this.reservedPubFlow = reservedPubFlow;
}
public Long getReservedSubFlow() {
return this.reservedSubFlow;
}
public void setReservedSubFlow(Long reservedSubFlow) {
this.reservedSubFlow = reservedSubFlow;
}
public Long getRuleId() {
return this.ruleId;
}
public void setRuleId(Long ruleId) {
this.ruleId = ruleId;
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
public String getScheduleType() {
return this.scheduleType;
}
public void setScheduleType(String scheduleType) {
this.scheduleType = scheduleType;
}
public String getTimeZone() {
return this.timeZone;
}
public void setTimeZone(String timeZone) {
this.timeZone = timeZone;
}
public List<String> getWeeklyTypes() {
return this.weeklyTypes;
}
public void setWeeklyTypes(List<String> weeklyTypes) {
this.weeklyTypes = weeklyTypes;
}
}
}
@Override
public GetAutoScalingConfigurationResponse getInstance(UnmarshallerContext context) {
return GetAutoScalingConfigurationResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetConsumerListRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class GetConsumerListRequest extends RpcAcsRequest<GetConsumerListResponse> {
private String consumerId;
private Integer pageSize;
private Integer currentPage;
private String instanceId;
public GetConsumerListRequest() {
super("alikafka", "2019-09-16", "GetConsumerList", "alikafka");
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 getConsumerId() {
return this.consumerId;
}
public void setConsumerId(String consumerId) {
this.consumerId = consumerId;
if(consumerId != null){
putQueryParameter("ConsumerId", consumerId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetConsumerListResponse> getResponseClass() {
return GetConsumerListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetConsumerListResponse.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.alikafka.model.v20190916;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.GetConsumerListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetConsumerListResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private Long total;
private Integer pageSize;
private Integer currentPage;
private List<ConsumerVO> consumerList;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Long getTotal() {
return this.total;
}
public void setTotal(Long total) {
this.total = total;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public List<ConsumerVO> getConsumerList() {
return this.consumerList;
}
public void setConsumerList(List<ConsumerVO> consumerList) {
this.consumerList = consumerList;
}
public static class ConsumerVO {
private String consumerId;
private String instanceId;
private String remark;
private String regionId;
private Boolean automaticallyCreatedGroup;
private Long createTime;
private List<TagVO> tags;
public String getConsumerId() {
return this.consumerId;
}
public void setConsumerId(String consumerId) {
this.consumerId = consumerId;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
public Boolean getAutomaticallyCreatedGroup() {
return this.automaticallyCreatedGroup;
}
public void setAutomaticallyCreatedGroup(Boolean automaticallyCreatedGroup) {
this.automaticallyCreatedGroup = automaticallyCreatedGroup;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public List<TagVO> getTags() {
return this.tags;
}
public void setTags(List<TagVO> tags) {
this.tags = tags;
}
public static class TagVO {
private String key;
private String value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
}
@Override
public GetConsumerListResponse getInstance(UnmarshallerContext context) {
return GetConsumerListResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetConsumerProgressRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class GetConsumerProgressRequest extends RpcAcsRequest<GetConsumerProgressResponse> {
private String consumerId;
private Boolean hideLastTimestamp;
private String instanceId;
public GetConsumerProgressRequest() {
super("alikafka", "2019-09-16", "GetConsumerProgress", "alikafka");
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 getConsumerId() {
return this.consumerId;
}
public void setConsumerId(String consumerId) {
this.consumerId = consumerId;
if(consumerId != null){
putQueryParameter("ConsumerId", consumerId);
}
}
public Boolean getHideLastTimestamp() {
return this.hideLastTimestamp;
}
public void setHideLastTimestamp(Boolean hideLastTimestamp) {
this.hideLastTimestamp = hideLastTimestamp;
if(hideLastTimestamp != null){
putQueryParameter("HideLastTimestamp", hideLastTimestamp.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetConsumerProgressResponse> getResponseClass() {
return GetConsumerProgressResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetConsumerProgressResponse.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.alikafka.model.v20190916;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.GetConsumerProgressResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetConsumerProgressResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private ConsumerProgress consumerProgress;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public ConsumerProgress getConsumerProgress() {
return this.consumerProgress;
}
public void setConsumerProgress(ConsumerProgress consumerProgress) {
this.consumerProgress = consumerProgress;
}
public static class ConsumerProgress {
private Long lastTimestamp;
private Long totalDiff;
private List<TopicListItem> topicList;
private List<RebalanceInfoListItem> rebalanceInfoList;
public Long getLastTimestamp() {
return this.lastTimestamp;
}
public void setLastTimestamp(Long lastTimestamp) {
this.lastTimestamp = lastTimestamp;
}
public Long getTotalDiff() {
return this.totalDiff;
}
public void setTotalDiff(Long totalDiff) {
this.totalDiff = totalDiff;
}
public List<TopicListItem> getTopicList() {
return this.topicList;
}
public void setTopicList(List<TopicListItem> topicList) {
this.topicList = topicList;
}
public List<RebalanceInfoListItem> getRebalanceInfoList() {
return this.rebalanceInfoList;
}
public void setRebalanceInfoList(List<RebalanceInfoListItem> rebalanceInfoList) {
this.rebalanceInfoList = rebalanceInfoList;
}
public static class TopicListItem {
private Long totalDiff;
private Long lastTimestamp;
private String topic;
private List<OffsetListItem> offsetList;
public Long getTotalDiff() {
return this.totalDiff;
}
public void setTotalDiff(Long totalDiff) {
this.totalDiff = totalDiff;
}
public Long getLastTimestamp() {
return this.lastTimestamp;
}
public void setLastTimestamp(Long lastTimestamp) {
this.lastTimestamp = lastTimestamp;
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public List<OffsetListItem> getOffsetList() {
return this.offsetList;
}
public void setOffsetList(List<OffsetListItem> offsetList) {
this.offsetList = offsetList;
}
public static class OffsetListItem {
private Integer partition;
private Long brokerOffset;
private Long consumerOffset;
private Long lastTimestamp;
private String clientIp;
private String clientId;
private String memberId;
public Integer getPartition() {
return this.partition;
}
public void setPartition(Integer partition) {
this.partition = partition;
}
public Long getBrokerOffset() {
return this.brokerOffset;
}
public void setBrokerOffset(Long brokerOffset) {
this.brokerOffset = brokerOffset;
}
public Long getConsumerOffset() {
return this.consumerOffset;
}
public void setConsumerOffset(Long consumerOffset) {
this.consumerOffset = consumerOffset;
}
public Long getLastTimestamp() {
return this.lastTimestamp;
}
public void setLastTimestamp(Long lastTimestamp) {
this.lastTimestamp = lastTimestamp;
}
public String getClientIp() {
return this.clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
public String getClientId() {
return this.clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getMemberId() {
return this.memberId;
}
public void setMemberId(String memberId) {
this.memberId = memberId;
}
}
}
public static class RebalanceInfoListItem {
private Long generation;
private Long lastRebalanceTimestamp;
private String reason;
private String groupId;
private Long rebalanceTimeConsuming;
private Boolean rebalanceSuccess;
public Long getGeneration() {
return this.generation;
}
public void setGeneration(Long generation) {
this.generation = generation;
}
public Long getLastRebalanceTimestamp() {
return this.lastRebalanceTimestamp;
}
public void setLastRebalanceTimestamp(Long lastRebalanceTimestamp) {
this.lastRebalanceTimestamp = lastRebalanceTimestamp;
}
public String getReason() {
return this.reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public Long getRebalanceTimeConsuming() {
return this.rebalanceTimeConsuming;
}
public void setRebalanceTimeConsuming(Long rebalanceTimeConsuming) {
this.rebalanceTimeConsuming = rebalanceTimeConsuming;
}
public Boolean getRebalanceSuccess() {
return this.rebalanceSuccess;
}
public void setRebalanceSuccess(Boolean rebalanceSuccess) {
this.rebalanceSuccess = rebalanceSuccess;
}
}
}
@Override
public GetConsumerProgressResponse getInstance(UnmarshallerContext context) {
return GetConsumerProgressResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetInstanceListRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class GetInstanceListRequest extends RpcAcsRequest<GetInstanceListResponse> {
private String resourceGroupId;
private List<Tag> tags;
private String orderId;
private List<String> instanceIds;
private String series;
public GetInstanceListRequest() {
super("alikafka", "2019-09-16", "GetInstanceList", "alikafka");
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 getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
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 String getOrderId() {
return this.orderId;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
if(orderId != null){
putQueryParameter("OrderId", orderId);
}
}
public List<String> getInstanceIds() {
return this.instanceIds;
}
public void setInstanceIds(List<String> instanceIds) {
this.instanceIds = instanceIds;
if (instanceIds != null) {
for (int i = 0; i < instanceIds.size(); i++) {
putQueryParameter("InstanceId." + (i + 1) , instanceIds.get(i));
}
}
}
public String getSeries() {
return this.series;
}
public void setSeries(String series) {
this.series = series;
if(series != null){
putQueryParameter("Series", series);
}
}
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<GetInstanceListResponse> getResponseClass() {
return GetInstanceListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetInstanceListResponse.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.alikafka.model.v20190916;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.GetInstanceListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetInstanceListResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private List<InstanceVO> instanceList;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<InstanceVO> getInstanceList() {
return this.instanceList;
}
public void setInstanceList(List<InstanceVO> instanceList) {
this.instanceList = instanceList;
}
public static class InstanceVO {
private String vpcId;
private String specType;
private Integer deployType;
private Long createTime;
private Integer diskSize;
private Integer diskType;
private String securityGroup;
private String sslEndPoint;
private String instanceId;
private String allConfig;
private Integer serviceStatus;
private Integer eipMax;
private String regionId;
private Integer msgRetain;
private String vSwitchId;
private Long expiredTime;
private Integer topicNumLimit;
private String zoneId;
private Integer ioMaxRead;
private Integer ioMaxWrite;
private Integer ioMax;
private Integer paidType;
private String name;
private String endPoint;
private String domainEndpoint;
private String vpcSaslEndPoint;
private String saslEndPoint;
private String sslDomainEndpoint;
private String saslDomainEndpoint;
private String vpcSaslDomainEndpoint;
private String resourceGroupId;
private Integer usedTopicCount;
private Integer usedGroupCount;
private Integer usedPartitionCount;
private String kmsKeyId;
private String standardZoneId;
private String ioMaxSpec;
private Integer reservedPublishCapacity;
private Integer reservedSubscribeCapacity;
private Integer viewInstanceStatusCode;
private String series;
private Boolean autoCreateGroupEnable;
private Boolean autoCreateTopicEnable;
private Integer defaultPartitionNum;
private Integer brokerCount;
private Integer recommendedPartitionCount;
private String backupZoneId;
private List<TagVO> tags;
private List<String> vSwitchIds;
private UpgradeServiceDetailInfo upgradeServiceDetailInfo;
private ConfluentConfig confluentConfig;
public String getVpcId() {
return this.vpcId;
}
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
}
public String getSpecType() {
return this.specType;
}
public void setSpecType(String specType) {
this.specType = specType;
}
public Integer getDeployType() {
return this.deployType;
}
public void setDeployType(Integer deployType) {
this.deployType = deployType;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public Integer getDiskSize() {
return this.diskSize;
}
public void setDiskSize(Integer diskSize) {
this.diskSize = diskSize;
}
public Integer getDiskType() {
return this.diskType;
}
public void setDiskType(Integer diskType) {
this.diskType = diskType;
}
public String getSecurityGroup() {
return this.securityGroup;
}
public void setSecurityGroup(String securityGroup) {
this.securityGroup = securityGroup;
}
public String getSslEndPoint() {
return this.sslEndPoint;
}
public void setSslEndPoint(String sslEndPoint) {
this.sslEndPoint = sslEndPoint;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getAllConfig() {
return this.allConfig;
}
public void setAllConfig(String allConfig) {
this.allConfig = allConfig;
}
public Integer getServiceStatus() {
return this.serviceStatus;
}
public void setServiceStatus(Integer serviceStatus) {
this.serviceStatus = serviceStatus;
}
public Integer getEipMax() {
return this.eipMax;
}
public void setEipMax(Integer eipMax) {
this.eipMax = eipMax;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
public Integer getMsgRetain() {
return this.msgRetain;
}
public void setMsgRetain(Integer msgRetain) {
this.msgRetain = msgRetain;
}
public String getVSwitchId() {
return this.vSwitchId;
}
public void setVSwitchId(String vSwitchId) {
this.vSwitchId = vSwitchId;
}
public Long getExpiredTime() {
return this.expiredTime;
}
public void setExpiredTime(Long expiredTime) {
this.expiredTime = expiredTime;
}
public Integer getTopicNumLimit() {
return this.topicNumLimit;
}
public void setTopicNumLimit(Integer topicNumLimit) {
this.topicNumLimit = topicNumLimit;
}
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
}
public Integer getIoMaxRead() {
return this.ioMaxRead;
}
public void setIoMaxRead(Integer ioMaxRead) {
this.ioMaxRead = ioMaxRead;
}
public Integer getIoMaxWrite() {
return this.ioMaxWrite;
}
public void setIoMaxWrite(Integer ioMaxWrite) {
this.ioMaxWrite = ioMaxWrite;
}
public Integer getIoMax() {
return this.ioMax;
}
public void setIoMax(Integer ioMax) {
this.ioMax = ioMax;
}
public Integer getPaidType() {
return this.paidType;
}
public void setPaidType(Integer paidType) {
this.paidType = paidType;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getEndPoint() {
return this.endPoint;
}
public void setEndPoint(String endPoint) {
this.endPoint = endPoint;
}
public String getDomainEndpoint() {
return this.domainEndpoint;
}
public void setDomainEndpoint(String domainEndpoint) {
this.domainEndpoint = domainEndpoint;
}
public String getVpcSaslEndPoint() {
return this.vpcSaslEndPoint;
}
public void setVpcSaslEndPoint(String vpcSaslEndPoint) {
this.vpcSaslEndPoint = vpcSaslEndPoint;
}
public String getSaslEndPoint() {
return this.saslEndPoint;
}
public void setSaslEndPoint(String saslEndPoint) {
this.saslEndPoint = saslEndPoint;
}
public String getSslDomainEndpoint() {
return this.sslDomainEndpoint;
}
public void setSslDomainEndpoint(String sslDomainEndpoint) {
this.sslDomainEndpoint = sslDomainEndpoint;
}
public String getSaslDomainEndpoint() {
return this.saslDomainEndpoint;
}
public void setSaslDomainEndpoint(String saslDomainEndpoint) {
this.saslDomainEndpoint = saslDomainEndpoint;
}
public String getVpcSaslDomainEndpoint() {
return this.vpcSaslDomainEndpoint;
}
public void setVpcSaslDomainEndpoint(String vpcSaslDomainEndpoint) {
this.vpcSaslDomainEndpoint = vpcSaslDomainEndpoint;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
public Integer getUsedTopicCount() {
return this.usedTopicCount;
}
public void setUsedTopicCount(Integer usedTopicCount) {
this.usedTopicCount = usedTopicCount;
}
public Integer getUsedGroupCount() {
return this.usedGroupCount;
}
public void setUsedGroupCount(Integer usedGroupCount) {
this.usedGroupCount = usedGroupCount;
}
public Integer getUsedPartitionCount() {
return this.usedPartitionCount;
}
public void setUsedPartitionCount(Integer usedPartitionCount) {
this.usedPartitionCount = usedPartitionCount;
}
public String getKmsKeyId() {
return this.kmsKeyId;
}
public void setKmsKeyId(String kmsKeyId) {
this.kmsKeyId = kmsKeyId;
}
public String getStandardZoneId() {
return this.standardZoneId;
}
public void setStandardZoneId(String standardZoneId) {
this.standardZoneId = standardZoneId;
}
public String getIoMaxSpec() {
return this.ioMaxSpec;
}
public void setIoMaxSpec(String ioMaxSpec) {
this.ioMaxSpec = ioMaxSpec;
}
public Integer getReservedPublishCapacity() {
return this.reservedPublishCapacity;
}
public void setReservedPublishCapacity(Integer reservedPublishCapacity) {
this.reservedPublishCapacity = reservedPublishCapacity;
}
public Integer getReservedSubscribeCapacity() {
return this.reservedSubscribeCapacity;
}
public void setReservedSubscribeCapacity(Integer reservedSubscribeCapacity) {
this.reservedSubscribeCapacity = reservedSubscribeCapacity;
}
public Integer getViewInstanceStatusCode() {
return this.viewInstanceStatusCode;
}
public void setViewInstanceStatusCode(Integer viewInstanceStatusCode) {
this.viewInstanceStatusCode = viewInstanceStatusCode;
}
public String getSeries() {
return this.series;
}
public void setSeries(String series) {
this.series = series;
}
public Boolean getAutoCreateGroupEnable() {
return this.autoCreateGroupEnable;
}
public void setAutoCreateGroupEnable(Boolean autoCreateGroupEnable) {
this.autoCreateGroupEnable = autoCreateGroupEnable;
}
public Boolean getAutoCreateTopicEnable() {
return this.autoCreateTopicEnable;
}
public void setAutoCreateTopicEnable(Boolean autoCreateTopicEnable) {
this.autoCreateTopicEnable = autoCreateTopicEnable;
}
public Integer getDefaultPartitionNum() {
return this.defaultPartitionNum;
}
public void setDefaultPartitionNum(Integer defaultPartitionNum) {
this.defaultPartitionNum = defaultPartitionNum;
}
public Integer getBrokerCount() {
return this.brokerCount;
}
public void setBrokerCount(Integer brokerCount) {
this.brokerCount = brokerCount;
}
public Integer getRecommendedPartitionCount() {
return this.recommendedPartitionCount;
}
public void setRecommendedPartitionCount(Integer recommendedPartitionCount) {
this.recommendedPartitionCount = recommendedPartitionCount;
}
public String getBackupZoneId() {
return this.backupZoneId;
}
public void setBackupZoneId(String backupZoneId) {
this.backupZoneId = backupZoneId;
}
public List<TagVO> getTags() {
return this.tags;
}
public void setTags(List<TagVO> tags) {
this.tags = tags;
}
public List<String> getVSwitchIds() {
return this.vSwitchIds;
}
public void setVSwitchIds(List<String> vSwitchIds) {
this.vSwitchIds = vSwitchIds;
}
public UpgradeServiceDetailInfo getUpgradeServiceDetailInfo() {
return this.upgradeServiceDetailInfo;
}
public void setUpgradeServiceDetailInfo(UpgradeServiceDetailInfo upgradeServiceDetailInfo) {
this.upgradeServiceDetailInfo = upgradeServiceDetailInfo;
}
public ConfluentConfig getConfluentConfig() {
return this.confluentConfig;
}
public void setConfluentConfig(ConfluentConfig confluentConfig) {
this.confluentConfig = confluentConfig;
}
public static class TagVO {
private String key;
private String value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
public static class UpgradeServiceDetailInfo {
private String current2OpenSourceVersion;
public String getCurrent2OpenSourceVersion() {
return this.current2OpenSourceVersion;
}
public void setCurrent2OpenSourceVersion(String current2OpenSourceVersion) {
this.current2OpenSourceVersion = current2OpenSourceVersion;
}
}
public static class ConfluentConfig {
private Integer kafkaCU;
private Integer kafkaStorage;
private Integer kafkaReplica;
private Integer zooKeeperCU;
private Integer zooKeeperStorage;
private Integer zooKeeperReplica;
private Integer controlCenterCU;
private Integer controlCenterStorage;
private Integer controlCenterReplica;
private Integer schemaRegistryCU;
private Integer schemaRegistryReplica;
private Integer connectCU;
private Integer connectReplica;
private Integer ksqlCU;
private Integer ksqlStorage;
private Integer ksqlReplica;
private Integer kafkaRestProxyCU;
private Integer kafkaRestProxyReplica;
public Integer getKafkaCU() {
return this.kafkaCU;
}
public void setKafkaCU(Integer kafkaCU) {
this.kafkaCU = kafkaCU;
}
public Integer getKafkaStorage() {
return this.kafkaStorage;
}
public void setKafkaStorage(Integer kafkaStorage) {
this.kafkaStorage = kafkaStorage;
}
public Integer getKafkaReplica() {
return this.kafkaReplica;
}
public void setKafkaReplica(Integer kafkaReplica) {
this.kafkaReplica = kafkaReplica;
}
public Integer getZooKeeperCU() {
return this.zooKeeperCU;
}
public void setZooKeeperCU(Integer zooKeeperCU) {
this.zooKeeperCU = zooKeeperCU;
}
public Integer getZooKeeperStorage() {
return this.zooKeeperStorage;
}
public void setZooKeeperStorage(Integer zooKeeperStorage) {
this.zooKeeperStorage = zooKeeperStorage;
}
public Integer getZooKeeperReplica() {
return this.zooKeeperReplica;
}
public void setZooKeeperReplica(Integer zooKeeperReplica) {
this.zooKeeperReplica = zooKeeperReplica;
}
public Integer getControlCenterCU() {
return this.controlCenterCU;
}
public void setControlCenterCU(Integer controlCenterCU) {
this.controlCenterCU = controlCenterCU;
}
public Integer getControlCenterStorage() {
return this.controlCenterStorage;
}
public void setControlCenterStorage(Integer controlCenterStorage) {
this.controlCenterStorage = controlCenterStorage;
}
public Integer getControlCenterReplica() {
return this.controlCenterReplica;
}
public void setControlCenterReplica(Integer controlCenterReplica) {
this.controlCenterReplica = controlCenterReplica;
}
public Integer getSchemaRegistryCU() {
return this.schemaRegistryCU;
}
public void setSchemaRegistryCU(Integer schemaRegistryCU) {
this.schemaRegistryCU = schemaRegistryCU;
}
public Integer getSchemaRegistryReplica() {
return this.schemaRegistryReplica;
}
public void setSchemaRegistryReplica(Integer schemaRegistryReplica) {
this.schemaRegistryReplica = schemaRegistryReplica;
}
public Integer getConnectCU() {
return this.connectCU;
}
public void setConnectCU(Integer connectCU) {
this.connectCU = connectCU;
}
public Integer getConnectReplica() {
return this.connectReplica;
}
public void setConnectReplica(Integer connectReplica) {
this.connectReplica = connectReplica;
}
public Integer getKsqlCU() {
return this.ksqlCU;
}
public void setKsqlCU(Integer ksqlCU) {
this.ksqlCU = ksqlCU;
}
public Integer getKsqlStorage() {
return this.ksqlStorage;
}
public void setKsqlStorage(Integer ksqlStorage) {
this.ksqlStorage = ksqlStorage;
}
public Integer getKsqlReplica() {
return this.ksqlReplica;
}
public void setKsqlReplica(Integer ksqlReplica) {
this.ksqlReplica = ksqlReplica;
}
public Integer getKafkaRestProxyCU() {
return this.kafkaRestProxyCU;
}
public void setKafkaRestProxyCU(Integer kafkaRestProxyCU) {
this.kafkaRestProxyCU = kafkaRestProxyCU;
}
public Integer getKafkaRestProxyReplica() {
return this.kafkaRestProxyReplica;
}
public void setKafkaRestProxyReplica(Integer kafkaRestProxyReplica) {
this.kafkaRestProxyReplica = kafkaRestProxyReplica;
}
}
}
@Override
public GetInstanceListResponse getInstance(UnmarshallerContext context) {
return GetInstanceListResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetKafkaClientIpRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class GetKafkaClientIpRequest extends RpcAcsRequest<GetKafkaClientIpResponse> {
private Long startTime;
private String type;
private String group;
private Long endTime;
private String instanceId;
private String topic;
public GetKafkaClientIpRequest() {
super("alikafka", "2019-09-16", "GetKafkaClientIp", "alikafka");
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 getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getGroup() {
return this.group;
}
public void setGroup(String group) {
this.group = group;
if(group != null){
putQueryParameter("Group", group);
}
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putQueryParameter("Topic", topic);
}
}
@Override
public Class<GetKafkaClientIpResponse> getResponseClass() {
return GetKafkaClientIpResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetKafkaClientIpResponse.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.alikafka.model.v20190916;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.GetKafkaClientIpResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetKafkaClientIpResponse extends AcsResponse {
private String requestId;
private Boolean success;
private Long code;
private String message;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Long getCode() {
return this.code;
}
public void setCode(Long code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer searchTimeRange;
private Boolean alert;
private Integer timeLimitDay;
private Long startDate;
private Long endDate;
private List<DataItem> data1;
public Integer getSearchTimeRange() {
return this.searchTimeRange;
}
public void setSearchTimeRange(Integer searchTimeRange) {
this.searchTimeRange = searchTimeRange;
}
public Boolean getAlert() {
return this.alert;
}
public void setAlert(Boolean alert) {
this.alert = alert;
}
public Integer getTimeLimitDay() {
return this.timeLimitDay;
}
public void setTimeLimitDay(Integer timeLimitDay) {
this.timeLimitDay = timeLimitDay;
}
public Long getStartDate() {
return this.startDate;
}
public void setStartDate(Long startDate) {
this.startDate = startDate;
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
}
public List<DataItem> getData1() {
return this.data1;
}
public void setData1(List<DataItem> data1) {
this.data1 = data1;
}
public static class DataItem {
private String name;
private List<DataItem3> data2;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public List<DataItem3> getData2() {
return this.data2;
}
public void setData2(List<DataItem3> data2) {
this.data2 = data2;
}
public static class DataItem3 {
private String ip;
private Long num;
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public Long getNum() {
return this.num;
}
public void setNum(Long num) {
this.num = num;
}
}
}
}
@Override
public GetKafkaClientIpResponse getInstance(UnmarshallerContext context) {
return GetKafkaClientIpResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetQuotaTipRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class GetQuotaTipRequest extends RpcAcsRequest<GetQuotaTipResponse> {
private String instanceId;
public GetQuotaTipRequest() {
super("alikafka", "2019-09-16", "GetQuotaTip", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetQuotaTipResponse> getResponseClass() {
return GetQuotaTipResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetQuotaTipResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.GetQuotaTipResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetQuotaTipResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private QuotaData quotaData;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public QuotaData getQuotaData() {
return this.quotaData;
}
public void setQuotaData(QuotaData quotaData) {
this.quotaData = quotaData;
}
public static class QuotaData {
private Integer topicNumOfBuy;
private Integer topicQuota;
private Integer topicLeft;
private Integer topicUsed;
private Integer partitionNumOfBuy;
private Integer partitionQuata;
private Integer partitionLeft;
private Integer partitionUsed;
private Integer groupLeft;
private Integer groupUsed;
private Integer isPartitionBuy;
private Integer partitionQuota;
public Integer getTopicNumOfBuy() {
return this.topicNumOfBuy;
}
public void setTopicNumOfBuy(Integer topicNumOfBuy) {
this.topicNumOfBuy = topicNumOfBuy;
}
public Integer getTopicQuota() {
return this.topicQuota;
}
public void setTopicQuota(Integer topicQuota) {
this.topicQuota = topicQuota;
}
public Integer getTopicLeft() {
return this.topicLeft;
}
public void setTopicLeft(Integer topicLeft) {
this.topicLeft = topicLeft;
}
public Integer getTopicUsed() {
return this.topicUsed;
}
public void setTopicUsed(Integer topicUsed) {
this.topicUsed = topicUsed;
}
public Integer getPartitionNumOfBuy() {
return this.partitionNumOfBuy;
}
public void setPartitionNumOfBuy(Integer partitionNumOfBuy) {
this.partitionNumOfBuy = partitionNumOfBuy;
}
public Integer getPartitionQuata() {
return this.partitionQuata;
}
public void setPartitionQuata(Integer partitionQuata) {
this.partitionQuata = partitionQuata;
}
public Integer getPartitionLeft() {
return this.partitionLeft;
}
public void setPartitionLeft(Integer partitionLeft) {
this.partitionLeft = partitionLeft;
}
public Integer getPartitionUsed() {
return this.partitionUsed;
}
public void setPartitionUsed(Integer partitionUsed) {
this.partitionUsed = partitionUsed;
}
public Integer getGroupLeft() {
return this.groupLeft;
}
public void setGroupLeft(Integer groupLeft) {
this.groupLeft = groupLeft;
}
public Integer getGroupUsed() {
return this.groupUsed;
}
public void setGroupUsed(Integer groupUsed) {
this.groupUsed = groupUsed;
}
public Integer getIsPartitionBuy() {
return this.isPartitionBuy;
}
public void setIsPartitionBuy(Integer isPartitionBuy) {
this.isPartitionBuy = isPartitionBuy;
}
public Integer getPartitionQuota() {
return this.partitionQuota;
}
public void setPartitionQuota(Integer partitionQuota) {
this.partitionQuota = partitionQuota;
}
}
@Override
public GetQuotaTipResponse getInstance(UnmarshallerContext context) {
return GetQuotaTipResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetTopicListRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class GetTopicListRequest extends RpcAcsRequest<GetTopicListResponse> {
private String pageSize;
private String currentPage;
private String instanceId;
private String topic;
public GetTopicListRequest() {
super("alikafka", "2019-09-16", "GetTopicList", "alikafka");
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 getPageSize() {
return this.pageSize;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize);
}
}
public String getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(String currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putQueryParameter("Topic", topic);
}
}
@Override
public Class<GetTopicListResponse> getResponseClass() {
return GetTopicListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetTopicListResponse.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.alikafka.model.v20190916;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.GetTopicListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetTopicListResponse extends AcsResponse {
private Integer currentPage;
private String requestId;
private Boolean success;
private Integer code;
private String message;
private Integer pageSize;
private Integer total;
private List<TopicVO> topicList;
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotal() {
return this.total;
}
public void setTotal(Integer total) {
this.total = total;
}
public List<TopicVO> getTopicList() {
return this.topicList;
}
public void setTopicList(List<TopicVO> topicList) {
this.topicList = topicList;
}
public static class TopicVO {
private Integer status;
private Integer partitionNum;
private String remark;
private Long createTime;
private String topic;
private String statusName;
private Boolean compactTopic;
private String instanceId;
private Boolean localTopic;
private String regionId;
private Boolean autoCreate;
private String topicConfig;
private List<TagVO> tags;
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Integer getPartitionNum() {
return this.partitionNum;
}
public void setPartitionNum(Integer partitionNum) {
this.partitionNum = partitionNum;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getStatusName() {
return this.statusName;
}
public void setStatusName(String statusName) {
this.statusName = statusName;
}
public Boolean getCompactTopic() {
return this.compactTopic;
}
public void setCompactTopic(Boolean compactTopic) {
this.compactTopic = compactTopic;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Boolean getLocalTopic() {
return this.localTopic;
}
public void setLocalTopic(Boolean localTopic) {
this.localTopic = localTopic;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
public Boolean getAutoCreate() {
return this.autoCreate;
}
public void setAutoCreate(Boolean autoCreate) {
this.autoCreate = autoCreate;
}
public String getTopicConfig() {
return this.topicConfig;
}
public void setTopicConfig(String topicConfig) {
this.topicConfig = topicConfig;
}
public List<TagVO> getTags() {
return this.tags;
}
public void setTags(List<TagVO> tags) {
this.tags = tags;
}
public static class TagVO {
private String key;
private String value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
}
@Override
public GetTopicListResponse getInstance(UnmarshallerContext context) {
return GetTopicListResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetTopicStatusRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class GetTopicStatusRequest extends RpcAcsRequest<GetTopicStatusResponse> {
private String instanceId;
private String topic;
public GetTopicStatusRequest() {
super("alikafka", "2019-09-16", "GetTopicStatus", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putQueryParameter("Topic", topic);
}
}
@Override
public Class<GetTopicStatusResponse> getResponseClass() {
return GetTopicStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetTopicStatusResponse.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.alikafka.model.v20190916;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.GetTopicStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetTopicStatusResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private TopicStatus topicStatus;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public TopicStatus getTopicStatus() {
return this.topicStatus;
}
public void setTopicStatus(TopicStatus topicStatus) {
this.topicStatus = topicStatus;
}
public static class TopicStatus {
private Long totalCount;
private Long lastTimeStamp;
private List<OffsetTableItem> offsetTable;
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Long getLastTimeStamp() {
return this.lastTimeStamp;
}
public void setLastTimeStamp(Long lastTimeStamp) {
this.lastTimeStamp = lastTimeStamp;
}
public List<OffsetTableItem> getOffsetTable() {
return this.offsetTable;
}
public void setOffsetTable(List<OffsetTableItem> offsetTable) {
this.offsetTable = offsetTable;
}
public static class OffsetTableItem {
private Integer partition;
private Long minOffset;
private Long lastUpdateTimestamp;
private Long maxOffset;
private String topic;
public Integer getPartition() {
return this.partition;
}
public void setPartition(Integer partition) {
this.partition = partition;
}
public Long getMinOffset() {
return this.minOffset;
}
public void setMinOffset(Long minOffset) {
this.minOffset = minOffset;
}
public Long getLastUpdateTimestamp() {
return this.lastUpdateTimestamp;
}
public void setLastUpdateTimestamp(Long lastUpdateTimestamp) {
this.lastUpdateTimestamp = lastUpdateTimestamp;
}
public Long getMaxOffset() {
return this.maxOffset;
}
public void setMaxOffset(Long maxOffset) {
this.maxOffset = maxOffset;
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
}
}
@Override
public GetTopicStatusResponse getInstance(UnmarshallerContext context) {
return GetTopicStatusResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetTopicSubscribeStatusRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class GetTopicSubscribeStatusRequest extends RpcAcsRequest<GetTopicSubscribeStatusResponse> {
private String instanceId;
private String topic;
public GetTopicSubscribeStatusRequest() {
super("alikafka", "2019-09-16", "GetTopicSubscribeStatus", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putQueryParameter("Topic", topic);
}
}
@Override
public Class<GetTopicSubscribeStatusResponse> getResponseClass() {
return GetTopicSubscribeStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/GetTopicSubscribeStatusResponse.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.alikafka.model.v20190916;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.GetTopicSubscribeStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetTopicSubscribeStatusResponse extends AcsResponse {
private String requestId;
private Integer code;
private Boolean success;
private String message;
private TopicSubscribeStatus topicSubscribeStatus;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public TopicSubscribeStatus getTopicSubscribeStatus() {
return this.topicSubscribeStatus;
}
public void setTopicSubscribeStatus(TopicSubscribeStatus topicSubscribeStatus) {
this.topicSubscribeStatus = topicSubscribeStatus;
}
public static class TopicSubscribeStatus {
private String topic;
private List<String> consumerGroups;
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public List<String> getConsumerGroups() {
return this.consumerGroups;
}
public void setConsumerGroups(List<String> consumerGroups) {
this.consumerGroups = consumerGroups;
}
}
@Override
public GetTopicSubscribeStatusResponse getInstance(UnmarshallerContext context) {
return GetTopicSubscribeStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class ListTagResourcesRequest extends RpcAcsRequest<ListTagResourcesResponse> {
private String nextToken;
private List<Tag> tags;
private List<String> resourceIds;
private String resourceType;
public ListTagResourcesRequest() {
super("alikafka", "2019-09-16", "ListTagResources", "alikafka");
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 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 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-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/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.alikafka.model.v20190916;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.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 tagValue;
private String resourceType;
private String resourceId;
private String tagKey;
public String getTagValue() {
return this.tagValue;
}
public void setTagValue(String tagValue) {
this.tagValue = tagValue;
}
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}
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-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/ModifyInstanceNameRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyInstanceNameRequest extends RpcAcsRequest<ModifyInstanceNameResponse> {
private String instanceId;
private String instanceName;
public ModifyInstanceNameRequest() {
super("alikafka", "2019-09-16", "ModifyInstanceName", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
if(instanceName != null){
putQueryParameter("InstanceName", instanceName);
}
}
@Override
public Class<ModifyInstanceNameResponse> getResponseClass() {
return ModifyInstanceNameResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/ModifyInstanceNameResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.ModifyInstanceNameResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyInstanceNameResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public ModifyInstanceNameResponse getInstance(UnmarshallerContext context) {
return ModifyInstanceNameResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/ModifyPartitionNumRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyPartitionNumRequest extends RpcAcsRequest<ModifyPartitionNumResponse> {
private Integer addPartitionNum;
private String instanceId;
private String topic;
public ModifyPartitionNumRequest() {
super("alikafka", "2019-09-16", "ModifyPartitionNum", "alikafka");
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 Integer getAddPartitionNum() {
return this.addPartitionNum;
}
public void setAddPartitionNum(Integer addPartitionNum) {
this.addPartitionNum = addPartitionNum;
if(addPartitionNum != null){
putQueryParameter("AddPartitionNum", addPartitionNum.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putQueryParameter("Topic", topic);
}
}
@Override
public Class<ModifyPartitionNumResponse> getResponseClass() {
return ModifyPartitionNumResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/ModifyPartitionNumResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.ModifyPartitionNumResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyPartitionNumResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public ModifyPartitionNumResponse getInstance(UnmarshallerContext context) {
return ModifyPartitionNumResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/ModifyScheduledScalingRuleRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyScheduledScalingRuleRequest extends RpcAcsRequest<ModifyScheduledScalingRuleResponse> {
private String ruleName;
private String instanceId;
private Boolean enable;
public ModifyScheduledScalingRuleRequest() {
super("alikafka", "2019-09-16", "ModifyScheduledScalingRule", "alikafka");
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 getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
if(ruleName != null){
putQueryParameter("RuleName", ruleName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Boolean getEnable() {
return this.enable;
}
public void setEnable(Boolean enable) {
this.enable = enable;
if(enable != null){
putQueryParameter("Enable", enable.toString());
}
}
@Override
public Class<ModifyScheduledScalingRuleResponse> getResponseClass() {
return ModifyScheduledScalingRuleResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/ModifyScheduledScalingRuleResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.ModifyScheduledScalingRuleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyScheduledScalingRuleResponse extends AcsResponse {
private String requestId;
private Boolean success;
private Long code;
private String message;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Long getCode() {
return this.code;
}
public void setCode(Long code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public ModifyScheduledScalingRuleResponse getInstance(UnmarshallerContext context) {
return ModifyScheduledScalingRuleResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/ModifyTopicRemarkRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyTopicRemarkRequest extends RpcAcsRequest<ModifyTopicRemarkResponse> {
private String remark;
private String instanceId;
private String topic;
public ModifyTopicRemarkRequest() {
super("alikafka", "2019-09-16", "ModifyTopicRemark", "alikafka");
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 getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putQueryParameter("Topic", topic);
}
}
@Override
public Class<ModifyTopicRemarkResponse> getResponseClass() {
return ModifyTopicRemarkResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/ModifyTopicRemarkResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.ModifyTopicRemarkResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyTopicRemarkResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public ModifyTopicRemarkResponse getInstance(UnmarshallerContext context) {
return ModifyTopicRemarkResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/QueryMessageRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryMessageRequest extends RpcAcsRequest<QueryMessageResponse> {
private String partition;
private String queryType;
private String offset;
private Long beginTime;
private String instanceId;
private String topic;
public QueryMessageRequest() {
super("alikafka", "2019-09-16", "QueryMessage", "alikafka");
setMethod(MethodType.GET);
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 getPartition() {
return this.partition;
}
public void setPartition(String partition) {
this.partition = partition;
if(partition != null){
putQueryParameter("Partition", partition);
}
}
public String getQueryType() {
return this.queryType;
}
public void setQueryType(String queryType) {
this.queryType = queryType;
if(queryType != null){
putQueryParameter("QueryType", queryType);
}
}
public String getOffset() {
return this.offset;
}
public void setOffset(String offset) {
this.offset = offset;
if(offset != null){
putQueryParameter("Offset", offset);
}
}
public Long getBeginTime() {
return this.beginTime;
}
public void setBeginTime(Long beginTime) {
this.beginTime = beginTime;
if(beginTime != null){
putQueryParameter("BeginTime", beginTime.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putQueryParameter("Topic", topic);
}
}
@Override
public Class<QueryMessageResponse> getResponseClass() {
return QueryMessageResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/QueryMessageResponse.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.alikafka.model.v20190916;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.QueryMessageResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryMessageResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private List<MessageVO> messageList;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<MessageVO> getMessageList() {
return this.messageList;
}
public void setMessageList(List<MessageVO> messageList) {
this.messageList = messageList;
}
public static class MessageVO {
private String topic;
private Long partition;
private Long offset;
private Long timestamp;
private String timestampType;
private Long checksum;
private Integer serializedKeySize;
private Integer serializedValueSize;
private String key;
private String value;
private Boolean keyTruncated;
private Boolean valueTruncated;
private Integer truncatedKeySize;
private Integer truncatedValueSize;
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public Long getPartition() {
return this.partition;
}
public void setPartition(Long partition) {
this.partition = partition;
}
public Long getOffset() {
return this.offset;
}
public void setOffset(Long offset) {
this.offset = offset;
}
public Long getTimestamp() {
return this.timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getTimestampType() {
return this.timestampType;
}
public void setTimestampType(String timestampType) {
this.timestampType = timestampType;
}
public Long getChecksum() {
return this.checksum;
}
public void setChecksum(Long checksum) {
this.checksum = checksum;
}
public Integer getSerializedKeySize() {
return this.serializedKeySize;
}
public void setSerializedKeySize(Integer serializedKeySize) {
this.serializedKeySize = serializedKeySize;
}
public Integer getSerializedValueSize() {
return this.serializedValueSize;
}
public void setSerializedValueSize(Integer serializedValueSize) {
this.serializedValueSize = serializedValueSize;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public Boolean getKeyTruncated() {
return this.keyTruncated;
}
public void setKeyTruncated(Boolean keyTruncated) {
this.keyTruncated = keyTruncated;
}
public Boolean getValueTruncated() {
return this.valueTruncated;
}
public void setValueTruncated(Boolean valueTruncated) {
this.valueTruncated = valueTruncated;
}
public Integer getTruncatedKeySize() {
return this.truncatedKeySize;
}
public void setTruncatedKeySize(Integer truncatedKeySize) {
this.truncatedKeySize = truncatedKeySize;
}
public Integer getTruncatedValueSize() {
return this.truncatedValueSize;
}
public void setTruncatedValueSize(Integer truncatedValueSize) {
this.truncatedValueSize = truncatedValueSize;
}
}
@Override
public QueryMessageResponse getInstance(UnmarshallerContext context) {
return QueryMessageResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/ReleaseInstanceRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class ReleaseInstanceRequest extends RpcAcsRequest<ReleaseInstanceResponse> {
private Boolean forceDeleteInstance;
private String instanceId;
public ReleaseInstanceRequest() {
super("alikafka", "2019-09-16", "ReleaseInstance", "alikafka");
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 Boolean getForceDeleteInstance() {
return this.forceDeleteInstance;
}
public void setForceDeleteInstance(Boolean forceDeleteInstance) {
this.forceDeleteInstance = forceDeleteInstance;
if(forceDeleteInstance != null){
putQueryParameter("ForceDeleteInstance", forceDeleteInstance.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ReleaseInstanceResponse> getResponseClass() {
return ReleaseInstanceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/ReleaseInstanceResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.ReleaseInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ReleaseInstanceResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public ReleaseInstanceResponse getInstance(UnmarshallerContext context) {
return ReleaseInstanceResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/ReopenInstanceRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class ReopenInstanceRequest extends RpcAcsRequest<ReopenInstanceResponse> {
private String instanceId;
public ReopenInstanceRequest() {
super("alikafka", "2019-09-16", "ReopenInstance", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ReopenInstanceResponse> getResponseClass() {
return ReopenInstanceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/ReopenInstanceResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.ReopenInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ReopenInstanceResponse extends AcsResponse {
private Integer code;
private Boolean success;
private String requestId;
private String message;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public ReopenInstanceResponse getInstance(UnmarshallerContext context) {
return ReopenInstanceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/StartInstanceRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class StartInstanceRequest extends RpcAcsRequest<StartInstanceResponse> {
private List<String> vSwitchIdss;
private String selectedZones;
private Boolean isEipInner;
private String securityGroup;
private String deployModule;
private Boolean isSetUserAndPassword;
private String password;
private String notifier;
private Boolean isForceSelectedZones;
private String vSwitchId;
private String userPhoneNum;
private String instanceId;
private String vpcId;
private Boolean crossZone;
private String name;
private String serviceVersion;
private String zoneId;
private String kMSKeyId;
private String config;
private String username;
public StartInstanceRequest() {
super("alikafka", "2019-09-16", "StartInstance", "alikafka");
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 List<String> getVSwitchIdss() {
return this.vSwitchIdss;
}
public void setVSwitchIdss(List<String> vSwitchIdss) {
this.vSwitchIdss = vSwitchIdss;
if (vSwitchIdss != null) {
for (int i = 0; i < vSwitchIdss.size(); i++) {
putQueryParameter("VSwitchIds." + (i + 1) , vSwitchIdss.get(i));
}
}
}
public String getSelectedZones() {
return this.selectedZones;
}
public void setSelectedZones(String selectedZones) {
this.selectedZones = selectedZones;
if(selectedZones != null){
putQueryParameter("SelectedZones", selectedZones);
}
}
public Boolean getIsEipInner() {
return this.isEipInner;
}
public void setIsEipInner(Boolean isEipInner) {
this.isEipInner = isEipInner;
if(isEipInner != null){
putQueryParameter("IsEipInner", isEipInner.toString());
}
}
public String getSecurityGroup() {
return this.securityGroup;
}
public void setSecurityGroup(String securityGroup) {
this.securityGroup = securityGroup;
if(securityGroup != null){
putQueryParameter("SecurityGroup", securityGroup);
}
}
public String getDeployModule() {
return this.deployModule;
}
public void setDeployModule(String deployModule) {
this.deployModule = deployModule;
if(deployModule != null){
putQueryParameter("DeployModule", deployModule);
}
}
public Boolean getIsSetUserAndPassword() {
return this.isSetUserAndPassword;
}
public void setIsSetUserAndPassword(Boolean isSetUserAndPassword) {
this.isSetUserAndPassword = isSetUserAndPassword;
if(isSetUserAndPassword != null){
putQueryParameter("IsSetUserAndPassword", isSetUserAndPassword.toString());
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putQueryParameter("Password", password);
}
}
public String getNotifier() {
return this.notifier;
}
public void setNotifier(String notifier) {
this.notifier = notifier;
if(notifier != null){
putQueryParameter("Notifier", notifier);
}
}
public Boolean getIsForceSelectedZones() {
return this.isForceSelectedZones;
}
public void setIsForceSelectedZones(Boolean isForceSelectedZones) {
this.isForceSelectedZones = isForceSelectedZones;
if(isForceSelectedZones != null){
putQueryParameter("IsForceSelectedZones", isForceSelectedZones.toString());
}
}
public String getVSwitchId() {
return this.vSwitchId;
}
public void setVSwitchId(String vSwitchId) {
this.vSwitchId = vSwitchId;
if(vSwitchId != null){
putQueryParameter("VSwitchId", vSwitchId);
}
}
public String getUserPhoneNum() {
return this.userPhoneNum;
}
public void setUserPhoneNum(String userPhoneNum) {
this.userPhoneNum = userPhoneNum;
if(userPhoneNum != null){
putQueryParameter("UserPhoneNum", userPhoneNum);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getVpcId() {
return this.vpcId;
}
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
if(vpcId != null){
putQueryParameter("VpcId", vpcId);
}
}
public Boolean getCrossZone() {
return this.crossZone;
}
public void setCrossZone(Boolean crossZone) {
this.crossZone = crossZone;
if(crossZone != null){
putQueryParameter("CrossZone", crossZone.toString());
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public String getServiceVersion() {
return this.serviceVersion;
}
public void setServiceVersion(String serviceVersion) {
this.serviceVersion = serviceVersion;
if(serviceVersion != null){
putQueryParameter("ServiceVersion", serviceVersion);
}
}
public String getZoneId() {
return this.zoneId;
}
public void setZoneId(String zoneId) {
this.zoneId = zoneId;
if(zoneId != null){
putQueryParameter("ZoneId", zoneId);
}
}
public String getKMSKeyId() {
return this.kMSKeyId;
}
public void setKMSKeyId(String kMSKeyId) {
this.kMSKeyId = kMSKeyId;
if(kMSKeyId != null){
putQueryParameter("KMSKeyId", kMSKeyId);
}
}
public String getConfig() {
return this.config;
}
public void setConfig(String config) {
this.config = config;
if(config != null){
putQueryParameter("Config", config);
}
}
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
if(username != null){
putQueryParameter("Username", username);
}
}
@Override
public Class<StartInstanceResponse> getResponseClass() {
return StartInstanceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/StartInstanceResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.StartInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class StartInstanceResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public StartInstanceResponse getInstance(UnmarshallerContext context) {
return StartInstanceResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/StopInstanceRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class StopInstanceRequest extends RpcAcsRequest<StopInstanceResponse> {
private String instanceId;
public StopInstanceRequest() {
super("alikafka", "2019-09-16", "StopInstance", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<StopInstanceResponse> getResponseClass() {
return StopInstanceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/StopInstanceResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.StopInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class StopInstanceResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public StopInstanceResponse getInstance(UnmarshallerContext context) {
return StopInstanceResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class TagResourcesRequest extends RpcAcsRequest<TagResourcesResponse> {
private List<Tag> tags;
private List<String> resourceIds;
private String resourceType;
private String instanceId;
public TagResourcesRequest() {
super("alikafka", "2019-09-16", "TagResources", "alikafka");
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 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 getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
if(resourceType != null){
putQueryParameter("ResourceType", resourceType);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
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-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.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-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class UntagResourcesRequest extends RpcAcsRequest<UntagResourcesResponse> {
private Boolean all;
private List<String> resourceIds;
private String resourceType;
private List<String> tagKeys;
public UntagResourcesRequest() {
super("alikafka", "2019-09-16", "UntagResources", "alikafka");
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 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 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-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.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-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpdateAllowedIpRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateAllowedIpRequest extends RpcAcsRequest<UpdateAllowedIpResponse> {
private String allowedListType;
private String description;
private String portRange;
private String allowedListIp;
private String updateType;
private String instanceId;
public UpdateAllowedIpRequest() {
super("alikafka", "2019-09-16", "UpdateAllowedIp", "alikafka");
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 getAllowedListType() {
return this.allowedListType;
}
public void setAllowedListType(String allowedListType) {
this.allowedListType = allowedListType;
if(allowedListType != null){
putQueryParameter("AllowedListType", allowedListType);
}
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putQueryParameter("Description", description);
}
}
public String getPortRange() {
return this.portRange;
}
public void setPortRange(String portRange) {
this.portRange = portRange;
if(portRange != null){
putQueryParameter("PortRange", portRange);
}
}
public String getAllowedListIp() {
return this.allowedListIp;
}
public void setAllowedListIp(String allowedListIp) {
this.allowedListIp = allowedListIp;
if(allowedListIp != null){
putQueryParameter("AllowedListIp", allowedListIp);
}
}
public String getUpdateType() {
return this.updateType;
}
public void setUpdateType(String updateType) {
this.updateType = updateType;
if(updateType != null){
putQueryParameter("UpdateType", updateType);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<UpdateAllowedIpResponse> getResponseClass() {
return UpdateAllowedIpResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpdateAllowedIpResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.UpdateAllowedIpResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateAllowedIpResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public UpdateAllowedIpResponse getInstance(UnmarshallerContext context) {
return UpdateAllowedIpResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpdateConsumerOffsetRequest.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.alikafka.model.v20190916;
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.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateConsumerOffsetRequest extends RpcAcsRequest<UpdateConsumerOffsetResponse> {
private String consumerId;
private String resetType;
private String instanceId;
@SerializedName("offsets")
private List<Offsets> offsets;
private String topic;
private String time;
public UpdateConsumerOffsetRequest() {
super("alikafka", "2019-09-16", "UpdateConsumerOffset", "alikafka");
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 getConsumerId() {
return this.consumerId;
}
public void setConsumerId(String consumerId) {
this.consumerId = consumerId;
if(consumerId != null){
putQueryParameter("ConsumerId", consumerId);
}
}
public String getResetType() {
return this.resetType;
}
public void setResetType(String resetType) {
this.resetType = resetType;
if(resetType != null){
putQueryParameter("ResetType", resetType);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public List<Offsets> getOffsets() {
return this.offsets;
}
public void setOffsets(List<Offsets> offsets) {
this.offsets = offsets;
if (offsets != null) {
putQueryParameter("Offsets" , new Gson().toJson(offsets));
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putQueryParameter("Topic", topic);
}
}
public String getTime() {
return this.time;
}
public void setTime(String time) {
this.time = time;
if(time != null){
putQueryParameter("Time", time);
}
}
public static class Offsets {
@SerializedName("Partition")
private Integer partition;
@SerializedName("Offset")
private Long offset;
public Integer getPartition() {
return this.partition;
}
public void setPartition(Integer partition) {
this.partition = partition;
}
public Long getOffset() {
return this.offset;
}
public void setOffset(Long offset) {
this.offset = offset;
}
}
@Override
public Class<UpdateConsumerOffsetResponse> getResponseClass() {
return UpdateConsumerOffsetResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpdateConsumerOffsetResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.UpdateConsumerOffsetResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateConsumerOffsetResponse extends AcsResponse {
private Boolean success;
private String requestId;
private Integer code;
private String message;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public UpdateConsumerOffsetResponse getInstance(UnmarshallerContext context) {
return UpdateConsumerOffsetResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpdateInstanceConfigRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateInstanceConfigRequest extends RpcAcsRequest<UpdateInstanceConfigResponse> {
private String instanceId;
private String config;
public UpdateInstanceConfigRequest() {
super("alikafka", "2019-09-16", "UpdateInstanceConfig", "alikafka");
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getConfig() {
return this.config;
}
public void setConfig(String config) {
this.config = config;
if(config != null){
putQueryParameter("Config", config);
}
}
@Override
public Class<UpdateInstanceConfigResponse> getResponseClass() {
return UpdateInstanceConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpdateInstanceConfigResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.UpdateInstanceConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateInstanceConfigResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public UpdateInstanceConfigResponse getInstance(UnmarshallerContext context) {
return UpdateInstanceConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpdateTopicConfigRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateTopicConfigRequest extends RpcAcsRequest<UpdateTopicConfigResponse> {
private String value;
private String instanceId;
private String topic;
private String config;
public UpdateTopicConfigRequest() {
super("alikafka", "2019-09-16", "UpdateTopicConfig", "alikafka");
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 getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
if(value != null){
putQueryParameter("Value", value);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
if(topic != null){
putQueryParameter("Topic", topic);
}
}
public String getConfig() {
return this.config;
}
public void setConfig(String config) {
this.config = config;
if(config != null){
putQueryParameter("Config", config);
}
}
@Override
public Class<UpdateTopicConfigResponse> getResponseClass() {
return UpdateTopicConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpdateTopicConfigResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.UpdateTopicConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateTopicConfigResponse extends AcsResponse {
private String requestId;
private Boolean success;
private Long code;
private String message;
private String data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Long getCode() {
return this.code;
}
public void setCode(Long code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public UpdateTopicConfigResponse getInstance(UnmarshallerContext context) {
return UpdateTopicConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpgradeInstanceVersionRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class UpgradeInstanceVersionRequest extends RpcAcsRequest<UpgradeInstanceVersionResponse> {
private String targetVersion;
private String instanceId;
public UpgradeInstanceVersionRequest() {
super("alikafka", "2019-09-16", "UpgradeInstanceVersion", "alikafka");
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 getTargetVersion() {
return this.targetVersion;
}
public void setTargetVersion(String targetVersion) {
this.targetVersion = targetVersion;
if(targetVersion != null){
putQueryParameter("TargetVersion", targetVersion);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<UpgradeInstanceVersionResponse> getResponseClass() {
return UpgradeInstanceVersionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpgradeInstanceVersionResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.UpgradeInstanceVersionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpgradeInstanceVersionResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public UpgradeInstanceVersionResponse getInstance(UnmarshallerContext context) {
return UpgradeInstanceVersionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpgradePostPayOrderRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class UpgradePostPayOrderRequest extends RpcAcsRequest<UpgradePostPayOrderResponse> {
private Integer ioMax;
private Boolean eipModel;
private Integer eipMax;
private String specType;
private Integer partitionNum;
@SerializedName("serverlessConfig")
private ServerlessConfig serverlessConfig;
private Integer diskSize;
private String ioMaxSpec;
private Integer topicQuota;
private String instanceId;
public UpgradePostPayOrderRequest() {
super("alikafka", "2019-09-16", "UpgradePostPayOrder", "alikafka");
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 Integer getIoMax() {
return this.ioMax;
}
public void setIoMax(Integer ioMax) {
this.ioMax = ioMax;
if(ioMax != null){
putQueryParameter("IoMax", ioMax.toString());
}
}
public Boolean getEipModel() {
return this.eipModel;
}
public void setEipModel(Boolean eipModel) {
this.eipModel = eipModel;
if(eipModel != null){
putQueryParameter("EipModel", eipModel.toString());
}
}
public Integer getEipMax() {
return this.eipMax;
}
public void setEipMax(Integer eipMax) {
this.eipMax = eipMax;
if(eipMax != null){
putQueryParameter("EipMax", eipMax.toString());
}
}
public String getSpecType() {
return this.specType;
}
public void setSpecType(String specType) {
this.specType = specType;
if(specType != null){
putQueryParameter("SpecType", specType);
}
}
public Integer getPartitionNum() {
return this.partitionNum;
}
public void setPartitionNum(Integer partitionNum) {
this.partitionNum = partitionNum;
if(partitionNum != null){
putQueryParameter("PartitionNum", partitionNum.toString());
}
}
public ServerlessConfig getServerlessConfig() {
return this.serverlessConfig;
}
public void setServerlessConfig(ServerlessConfig serverlessConfig) {
this.serverlessConfig = serverlessConfig;
if (serverlessConfig != null) {
putQueryParameter("ServerlessConfig" , new Gson().toJson(serverlessConfig));
}
}
public Integer getDiskSize() {
return this.diskSize;
}
public void setDiskSize(Integer diskSize) {
this.diskSize = diskSize;
if(diskSize != null){
putQueryParameter("DiskSize", diskSize.toString());
}
}
public String getIoMaxSpec() {
return this.ioMaxSpec;
}
public void setIoMaxSpec(String ioMaxSpec) {
this.ioMaxSpec = ioMaxSpec;
if(ioMaxSpec != null){
putQueryParameter("IoMaxSpec", ioMaxSpec);
}
}
public Integer getTopicQuota() {
return this.topicQuota;
}
public void setTopicQuota(Integer topicQuota) {
this.topicQuota = topicQuota;
if(topicQuota != null){
putQueryParameter("TopicQuota", topicQuota.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public static class ServerlessConfig {
@SerializedName("ReservedPublishCapacity")
private Long reservedPublishCapacity;
@SerializedName("ReservedSubscribeCapacity")
private Long reservedSubscribeCapacity;
public Long getReservedPublishCapacity() {
return this.reservedPublishCapacity;
}
public void setReservedPublishCapacity(Long reservedPublishCapacity) {
this.reservedPublishCapacity = reservedPublishCapacity;
}
public Long getReservedSubscribeCapacity() {
return this.reservedSubscribeCapacity;
}
public void setReservedSubscribeCapacity(Long reservedSubscribeCapacity) {
this.reservedSubscribeCapacity = reservedSubscribeCapacity;
}
}
@Override
public Class<UpgradePostPayOrderResponse> getResponseClass() {
return UpgradePostPayOrderResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpgradePostPayOrderResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.UpgradePostPayOrderResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpgradePostPayOrderResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public UpgradePostPayOrderResponse getInstance(UnmarshallerContext context) {
return UpgradePostPayOrderResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpgradePrePayOrderRequest.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.alikafka.model.v20190916;
import com.aliyuncs.RpcAcsRequest;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alikafka.Endpoint;
/**
* @author auto create
* @version
*/
public class UpgradePrePayOrderRequest extends RpcAcsRequest<UpgradePrePayOrderResponse> {
private Integer ioMax;
private Boolean eipModel;
private Integer eipMax;
private String specType;
@SerializedName("confluentConfig")
private ConfluentConfig confluentConfig;
private Integer partitionNum;
private Integer paidType;
private Integer diskSize;
private String ioMaxSpec;
private Integer topicQuota;
private String instanceId;
public UpgradePrePayOrderRequest() {
super("alikafka", "2019-09-16", "UpgradePrePayOrder", "alikafka");
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 Integer getIoMax() {
return this.ioMax;
}
public void setIoMax(Integer ioMax) {
this.ioMax = ioMax;
if(ioMax != null){
putQueryParameter("IoMax", ioMax.toString());
}
}
public Boolean getEipModel() {
return this.eipModel;
}
public void setEipModel(Boolean eipModel) {
this.eipModel = eipModel;
if(eipModel != null){
putQueryParameter("EipModel", eipModel.toString());
}
}
public Integer getEipMax() {
return this.eipMax;
}
public void setEipMax(Integer eipMax) {
this.eipMax = eipMax;
if(eipMax != null){
putQueryParameter("EipMax", eipMax.toString());
}
}
public String getSpecType() {
return this.specType;
}
public void setSpecType(String specType) {
this.specType = specType;
if(specType != null){
putQueryParameter("SpecType", specType);
}
}
public ConfluentConfig getConfluentConfig() {
return this.confluentConfig;
}
public void setConfluentConfig(ConfluentConfig confluentConfig) {
this.confluentConfig = confluentConfig;
if (confluentConfig != null) {
putQueryParameter("ConfluentConfig" , new Gson().toJson(confluentConfig));
}
}
public Integer getPartitionNum() {
return this.partitionNum;
}
public void setPartitionNum(Integer partitionNum) {
this.partitionNum = partitionNum;
if(partitionNum != null){
putQueryParameter("PartitionNum", partitionNum.toString());
}
}
public Integer getPaidType() {
return this.paidType;
}
public void setPaidType(Integer paidType) {
this.paidType = paidType;
if(paidType != null){
putQueryParameter("PaidType", paidType.toString());
}
}
public Integer getDiskSize() {
return this.diskSize;
}
public void setDiskSize(Integer diskSize) {
this.diskSize = diskSize;
if(diskSize != null){
putQueryParameter("DiskSize", diskSize.toString());
}
}
public String getIoMaxSpec() {
return this.ioMaxSpec;
}
public void setIoMaxSpec(String ioMaxSpec) {
this.ioMaxSpec = ioMaxSpec;
if(ioMaxSpec != null){
putQueryParameter("IoMaxSpec", ioMaxSpec);
}
}
public Integer getTopicQuota() {
return this.topicQuota;
}
public void setTopicQuota(Integer topicQuota) {
this.topicQuota = topicQuota;
if(topicQuota != null){
putQueryParameter("TopicQuota", topicQuota.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public static class ConfluentConfig {
@SerializedName("KsqlStorage")
private Integer ksqlStorage;
@SerializedName("ControlCenterStorage")
private Integer controlCenterStorage;
@SerializedName("KafkaRestProxyReplica")
private Integer kafkaRestProxyReplica;
@SerializedName("ZooKeeperReplica")
private Integer zooKeeperReplica;
@SerializedName("ConnectCU")
private Integer connectCU;
@SerializedName("KafkaReplica")
private Integer kafkaReplica;
@SerializedName("SchemaRegistryReplica")
private Integer schemaRegistryReplica;
@SerializedName("KafkaCU")
private Integer kafkaCU;
@SerializedName("ConnectReplica")
private Integer connectReplica;
@SerializedName("ControlCenterCU")
private Integer controlCenterCU;
@SerializedName("KsqlReplica")
private Integer ksqlReplica;
@SerializedName("ControlCenterReplica")
private Integer controlCenterReplica;
@SerializedName("KafkaStorage")
private Integer kafkaStorage;
@SerializedName("ZooKeeperStorage")
private Integer zooKeeperStorage;
@SerializedName("KsqlCU")
private Integer ksqlCU;
@SerializedName("SchemaRegistryCU")
private Integer schemaRegistryCU;
@SerializedName("ZooKeeperCU")
private Integer zooKeeperCU;
@SerializedName("KafkaRestProxyCU")
private Integer kafkaRestProxyCU;
public Integer getKsqlStorage() {
return this.ksqlStorage;
}
public void setKsqlStorage(Integer ksqlStorage) {
this.ksqlStorage = ksqlStorage;
}
public Integer getControlCenterStorage() {
return this.controlCenterStorage;
}
public void setControlCenterStorage(Integer controlCenterStorage) {
this.controlCenterStorage = controlCenterStorage;
}
public Integer getKafkaRestProxyReplica() {
return this.kafkaRestProxyReplica;
}
public void setKafkaRestProxyReplica(Integer kafkaRestProxyReplica) {
this.kafkaRestProxyReplica = kafkaRestProxyReplica;
}
public Integer getZooKeeperReplica() {
return this.zooKeeperReplica;
}
public void setZooKeeperReplica(Integer zooKeeperReplica) {
this.zooKeeperReplica = zooKeeperReplica;
}
public Integer getConnectCU() {
return this.connectCU;
}
public void setConnectCU(Integer connectCU) {
this.connectCU = connectCU;
}
public Integer getKafkaReplica() {
return this.kafkaReplica;
}
public void setKafkaReplica(Integer kafkaReplica) {
this.kafkaReplica = kafkaReplica;
}
public Integer getSchemaRegistryReplica() {
return this.schemaRegistryReplica;
}
public void setSchemaRegistryReplica(Integer schemaRegistryReplica) {
this.schemaRegistryReplica = schemaRegistryReplica;
}
public Integer getKafkaCU() {
return this.kafkaCU;
}
public void setKafkaCU(Integer kafkaCU) {
this.kafkaCU = kafkaCU;
}
public Integer getConnectReplica() {
return this.connectReplica;
}
public void setConnectReplica(Integer connectReplica) {
this.connectReplica = connectReplica;
}
public Integer getControlCenterCU() {
return this.controlCenterCU;
}
public void setControlCenterCU(Integer controlCenterCU) {
this.controlCenterCU = controlCenterCU;
}
public Integer getKsqlReplica() {
return this.ksqlReplica;
}
public void setKsqlReplica(Integer ksqlReplica) {
this.ksqlReplica = ksqlReplica;
}
public Integer getControlCenterReplica() {
return this.controlCenterReplica;
}
public void setControlCenterReplica(Integer controlCenterReplica) {
this.controlCenterReplica = controlCenterReplica;
}
public Integer getKafkaStorage() {
return this.kafkaStorage;
}
public void setKafkaStorage(Integer kafkaStorage) {
this.kafkaStorage = kafkaStorage;
}
public Integer getZooKeeperStorage() {
return this.zooKeeperStorage;
}
public void setZooKeeperStorage(Integer zooKeeperStorage) {
this.zooKeeperStorage = zooKeeperStorage;
}
public Integer getKsqlCU() {
return this.ksqlCU;
}
public void setKsqlCU(Integer ksqlCU) {
this.ksqlCU = ksqlCU;
}
public Integer getSchemaRegistryCU() {
return this.schemaRegistryCU;
}
public void setSchemaRegistryCU(Integer schemaRegistryCU) {
this.schemaRegistryCU = schemaRegistryCU;
}
public Integer getZooKeeperCU() {
return this.zooKeeperCU;
}
public void setZooKeeperCU(Integer zooKeeperCU) {
this.zooKeeperCU = zooKeeperCU;
}
public Integer getKafkaRestProxyCU() {
return this.kafkaRestProxyCU;
}
public void setKafkaRestProxyCU(Integer kafkaRestProxyCU) {
this.kafkaRestProxyCU = kafkaRestProxyCU;
}
}
@Override
public Class<UpgradePrePayOrderResponse> getResponseClass() {
return UpgradePrePayOrderResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/model/v20190916/UpgradePrePayOrderResponse.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.alikafka.model.v20190916;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alikafka.transform.v20190916.UpgradePrePayOrderResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpgradePrePayOrderResponse extends AcsResponse {
private Integer code;
private String message;
private String requestId;
private Boolean success;
private String orderId;
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getOrderId() {
return this.orderId;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
@Override
public UpgradePrePayOrderResponse getInstance(UnmarshallerContext context) {
return UpgradePrePayOrderResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/transform/v20190916/ChangeResourceGroupResponseUnmarshaller.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.alikafka.transform.v20190916;
import com.aliyuncs.alikafka.model.v20190916.ChangeResourceGroupResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ChangeResourceGroupResponseUnmarshaller {
public static ChangeResourceGroupResponse unmarshall(ChangeResourceGroupResponse changeResourceGroupResponse, UnmarshallerContext _ctx) {
changeResourceGroupResponse.setRequestId(_ctx.stringValue("ChangeResourceGroupResponse.RequestId"));
changeResourceGroupResponse.setCode(_ctx.integerValue("ChangeResourceGroupResponse.Code"));
changeResourceGroupResponse.setMessage(_ctx.stringValue("ChangeResourceGroupResponse.Message"));
changeResourceGroupResponse.setSuccess(_ctx.longValue("ChangeResourceGroupResponse.Success"));
changeResourceGroupResponse.setNewResourceGroupId(_ctx.stringValue("ChangeResourceGroupResponse.NewResourceGroupId"));
return changeResourceGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/transform/v20190916/ConvertPostPayOrderResponseUnmarshaller.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.alikafka.transform.v20190916;
import com.aliyuncs.alikafka.model.v20190916.ConvertPostPayOrderResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ConvertPostPayOrderResponseUnmarshaller {
public static ConvertPostPayOrderResponse unmarshall(ConvertPostPayOrderResponse convertPostPayOrderResponse, UnmarshallerContext _ctx) {
convertPostPayOrderResponse.setRequestId(_ctx.stringValue("ConvertPostPayOrderResponse.RequestId"));
convertPostPayOrderResponse.setCode(_ctx.integerValue("ConvertPostPayOrderResponse.Code"));
convertPostPayOrderResponse.setMessage(_ctx.stringValue("ConvertPostPayOrderResponse.Message"));
convertPostPayOrderResponse.setSuccess(_ctx.booleanValue("ConvertPostPayOrderResponse.Success"));
convertPostPayOrderResponse.setOrderId(_ctx.stringValue("ConvertPostPayOrderResponse.OrderId"));
return convertPostPayOrderResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alikafka/1.2.13/com/aliyuncs/alikafka/transform/v20190916/CreateAclResponseUnmarshaller.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.alikafka.transform.v20190916;
import com.aliyuncs.alikafka.model.v20190916.CreateAclResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateAclResponseUnmarshaller {
public static CreateAclResponse unmarshall(CreateAclResponse createAclResponse, UnmarshallerContext _ctx) {
createAclResponse.setRequestId(_ctx.stringValue("CreateAclResponse.RequestId"));
createAclResponse.setCode(_ctx.integerValue("CreateAclResponse.Code"));
createAclResponse.setMessage(_ctx.stringValue("CreateAclResponse.Message"));
createAclResponse.setSuccess(_ctx.booleanValue("CreateAclResponse.Success"));
return createAclResponse;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.