index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/model
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/model/v20160810/QueryAccessorDomainsStatusRequest.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.beian.model.v20160810;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class QueryAccessorDomainsStatusRequest extends RpcAcsRequest<QueryAccessorDomainsStatusResponse> {
private List<String> domainss;
private String caller;
public QueryAccessorDomainsStatusRequest() {
super("Beian", "2016-08-10", "QueryAccessorDomainsStatus");
setMethod(MethodType.POST);
}
public List<String> getDomainss() {
return this.domainss;
}
public void setDomainss(List<String> domainss) {
this.domainss = domainss;
if (domainss != null) {
for (int i = 0; i < domainss.size(); i++) {
putQueryParameter("Domains." + (i + 1) , domainss.get(i));
}
}
}
public String getCaller() {
return this.caller;
}
public void setCaller(String caller) {
this.caller = caller;
if(caller != null){
putQueryParameter("Caller", caller);
}
}
@Override
public Class<QueryAccessorDomainsStatusResponse> getResponseClass() {
return QueryAccessorDomainsStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/model
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/model/v20160810/QueryAccessorDomainsStatusResponse.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.beian.model.v20160810;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.beian.transform.v20160810.QueryAccessorDomainsStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryAccessorDomainsStatusResponse extends AcsResponse {
private String requestId;
private Integer code;
private String message;
private List<DataItem> data;
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;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String domain;
private String status;
private Integer reasonCode;
private String reason;
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Integer getReasonCode() {
return this.reasonCode;
}
public void setReasonCode(Integer reasonCode) {
this.reasonCode = reasonCode;
}
public String getReason() {
return this.reason;
}
public void setReason(String reason) {
this.reason = reason;
}
}
@Override
public QueryAccessorDomainsStatusResponse getInstance(UnmarshallerContext context) {
return QueryAccessorDomainsStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/model
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/model/v20160810/QueryAccessorIpRequest.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.beian.model.v20160810;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class QueryAccessorIpRequest extends RpcAcsRequest<QueryAccessorIpResponse> {
private String ip;
private String caller;
public QueryAccessorIpRequest() {
super("Beian", "2016-08-10", "QueryAccessorIp");
setMethod(MethodType.POST);
}
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
if(ip != null){
putQueryParameter("Ip", ip);
}
}
public String getCaller() {
return this.caller;
}
public void setCaller(String caller) {
this.caller = caller;
if(caller != null){
putQueryParameter("Caller", caller);
}
}
@Override
public Class<QueryAccessorIpResponse> getResponseClass() {
return QueryAccessorIpResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/model
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/model/v20160810/QueryAccessorIpResponse.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.beian.model.v20160810;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.beian.transform.v20160810.QueryAccessorIpResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryAccessorIpResponse extends AcsResponse {
private String requestId;
private String code;
private String message;
private Boolean data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getData() {
return this.data;
}
public void setData(Boolean data) {
this.data = data;
}
@Override
public QueryAccessorIpResponse getInstance(UnmarshallerContext context) {
return QueryAccessorIpResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/model
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/model/v20160810/SubmitAccessorFullDomainsOssListRequest.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.beian.model.v20160810;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class SubmitAccessorFullDomainsOssListRequest extends RpcAcsRequest<SubmitAccessorFullDomainsOssListResponse> {
private String caller;
private List<String> ossLists;
public SubmitAccessorFullDomainsOssListRequest() {
super("Beian", "2016-08-10", "SubmitAccessorFullDomainsOssList");
setMethod(MethodType.POST);
}
public String getCaller() {
return this.caller;
}
public void setCaller(String caller) {
this.caller = caller;
if(caller != null){
putQueryParameter("Caller", caller);
}
}
public List<String> getOssLists() {
return this.ossLists;
}
public void setOssLists(List<String> ossLists) {
this.ossLists = ossLists;
if (ossLists != null) {
for (int i = 0; i < ossLists.size(); i++) {
putQueryParameter("OssList." + (i + 1) , ossLists.get(i));
}
}
}
@Override
public Class<SubmitAccessorFullDomainsOssListResponse> getResponseClass() {
return SubmitAccessorFullDomainsOssListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/model
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/model/v20160810/SubmitAccessorFullDomainsOssListResponse.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.beian.model.v20160810;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.beian.transform.v20160810.SubmitAccessorFullDomainsOssListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SubmitAccessorFullDomainsOssListResponse extends AcsResponse {
private String requestId;
private Integer code;
private String message;
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 SubmitAccessorFullDomainsOssListResponse getInstance(UnmarshallerContext context) {
return SubmitAccessorFullDomainsOssListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/DeleteUnbeianIpCheckTypeResponseUnmarshaller.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.beian.transform.v20160810;
import com.aliyuncs.beian.model.v20160810.DeleteUnbeianIpCheckTypeResponse;
import com.aliyuncs.beian.model.v20160810.DeleteUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteUnbeianIpCheckTypeResponseUnmarshaller {
public static DeleteUnbeianIpCheckTypeResponse unmarshall(DeleteUnbeianIpCheckTypeResponse deleteUnbeianIpCheckTypeResponse, UnmarshallerContext _ctx) {
deleteUnbeianIpCheckTypeResponse.setRequestId(_ctx.stringValue("DeleteUnbeianIpCheckTypeResponse.RequestId"));
deleteUnbeianIpCheckTypeResponse.setErrorMessage(_ctx.stringValue("DeleteUnbeianIpCheckTypeResponse.ErrorMessage"));
deleteUnbeianIpCheckTypeResponse.setSuccess(_ctx.booleanValue("DeleteUnbeianIpCheckTypeResponse.Success"));
deleteUnbeianIpCheckTypeResponse.setErrorCode(_ctx.integerValue("DeleteUnbeianIpCheckTypeResponse.ErrorCode"));
HuntressIpCheckTypeResultDO huntressIpCheckTypeResultDO = new HuntressIpCheckTypeResultDO();
huntressIpCheckTypeResultDO.setMsg(_ctx.stringValue("DeleteUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.Msg"));
huntressIpCheckTypeResultDO.setSuccess(_ctx.booleanValue("DeleteUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.Success"));
deleteUnbeianIpCheckTypeResponse.setHuntressIpCheckTypeResultDO(huntressIpCheckTypeResultDO);
return deleteUnbeianIpCheckTypeResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/GetMainDomainResponseUnmarshaller.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.beian.transform.v20160810;
import com.aliyuncs.beian.model.v20160810.GetMainDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetMainDomainResponseUnmarshaller {
public static GetMainDomainResponse unmarshall(GetMainDomainResponse getMainDomainResponse, UnmarshallerContext _ctx) {
getMainDomainResponse.setRequestId(_ctx.stringValue("GetMainDomainResponse.RequestId"));
getMainDomainResponse.setCode(_ctx.stringValue("GetMainDomainResponse.Code"));
getMainDomainResponse.setMessage(_ctx.stringValue("GetMainDomainResponse.Message"));
getMainDomainResponse.setData(_ctx.stringValue("GetMainDomainResponse.Data"));
return getMainDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/InsertUnbeianIpCheckTypeResponseUnmarshaller.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.beian.transform.v20160810;
import com.aliyuncs.beian.model.v20160810.InsertUnbeianIpCheckTypeResponse;
import com.aliyuncs.beian.model.v20160810.InsertUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO;
import com.aliyuncs.transform.UnmarshallerContext;
public class InsertUnbeianIpCheckTypeResponseUnmarshaller {
public static InsertUnbeianIpCheckTypeResponse unmarshall(InsertUnbeianIpCheckTypeResponse insertUnbeianIpCheckTypeResponse, UnmarshallerContext _ctx) {
insertUnbeianIpCheckTypeResponse.setRequestId(_ctx.stringValue("InsertUnbeianIpCheckTypeResponse.RequestId"));
insertUnbeianIpCheckTypeResponse.setErrorMessage(_ctx.stringValue("InsertUnbeianIpCheckTypeResponse.ErrorMessage"));
insertUnbeianIpCheckTypeResponse.setSuccess(_ctx.booleanValue("InsertUnbeianIpCheckTypeResponse.Success"));
insertUnbeianIpCheckTypeResponse.setErrorCode(_ctx.integerValue("InsertUnbeianIpCheckTypeResponse.ErrorCode"));
HuntressIpCheckTypeResultDO huntressIpCheckTypeResultDO = new HuntressIpCheckTypeResultDO();
huntressIpCheckTypeResultDO.setMsg(_ctx.stringValue("InsertUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.Msg"));
huntressIpCheckTypeResultDO.setSuccess(_ctx.booleanValue("InsertUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.Success"));
insertUnbeianIpCheckTypeResponse.setHuntressIpCheckTypeResultDO(huntressIpCheckTypeResultDO);
return insertUnbeianIpCheckTypeResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/ListUnbeianIpCheckTypeResponseUnmarshaller.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.beian.transform.v20160810;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.beian.model.v20160810.ListUnbeianIpCheckTypeResponse;
import com.aliyuncs.beian.model.v20160810.ListUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO;
import com.aliyuncs.beian.model.v20160810.ListUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.ListItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class ListUnbeianIpCheckTypeResponseUnmarshaller {
public static ListUnbeianIpCheckTypeResponse unmarshall(ListUnbeianIpCheckTypeResponse listUnbeianIpCheckTypeResponse, UnmarshallerContext _ctx) {
listUnbeianIpCheckTypeResponse.setRequestId(_ctx.stringValue("ListUnbeianIpCheckTypeResponse.RequestId"));
listUnbeianIpCheckTypeResponse.setErrorMessage(_ctx.stringValue("ListUnbeianIpCheckTypeResponse.ErrorMessage"));
listUnbeianIpCheckTypeResponse.setSuccess(_ctx.booleanValue("ListUnbeianIpCheckTypeResponse.Success"));
listUnbeianIpCheckTypeResponse.setErrorCode(_ctx.integerValue("ListUnbeianIpCheckTypeResponse.ErrorCode"));
HuntressIpCheckTypeResultDO huntressIpCheckTypeResultDO = new HuntressIpCheckTypeResultDO();
huntressIpCheckTypeResultDO.setMsg(_ctx.stringValue("ListUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.Msg"));
huntressIpCheckTypeResultDO.setSuccess(_ctx.booleanValue("ListUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.Success"));
List<ListItem> list = new ArrayList<ListItem>();
for (int i = 0; i < _ctx.lengthValue("ListUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.List.Length"); i++) {
ListItem listItem = new ListItem();
listItem.setIp(_ctx.stringValue("ListUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.List["+ i +"].Ip"));
listItem.setAliuid(_ctx.longValue("ListUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.List["+ i +"].Aliuid"));
listItem.setCheckType(_ctx.integerValue("ListUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.List["+ i +"].CheckType"));
listItem.setCaller(_ctx.stringValue("ListUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.List["+ i +"].Caller"));
listItem.setRemark(_ctx.stringValue("ListUnbeianIpCheckTypeResponse.HuntressIpCheckTypeResultDO.List["+ i +"].Remark"));
list.add(listItem);
}
huntressIpCheckTypeResultDO.setList(list);
listUnbeianIpCheckTypeResponse.setHuntressIpCheckTypeResultDO(huntressIpCheckTypeResultDO);
return listUnbeianIpCheckTypeResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/ManageAccessorDomainResponseUnmarshaller.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.beian.transform.v20160810;
import com.aliyuncs.beian.model.v20160810.ManageAccessorDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ManageAccessorDomainResponseUnmarshaller {
public static ManageAccessorDomainResponse unmarshall(ManageAccessorDomainResponse manageAccessorDomainResponse, UnmarshallerContext _ctx) {
manageAccessorDomainResponse.setRequestId(_ctx.stringValue("ManageAccessorDomainResponse.RequestId"));
manageAccessorDomainResponse.setCode(_ctx.integerValue("ManageAccessorDomainResponse.Code"));
manageAccessorDomainResponse.setMessage(_ctx.stringValue("ManageAccessorDomainResponse.Message"));
return manageAccessorDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/ManageAccessorDomainWhiteListResponseUnmarshaller.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.beian.transform.v20160810;
import com.aliyuncs.beian.model.v20160810.ManageAccessorDomainWhiteListResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ManageAccessorDomainWhiteListResponseUnmarshaller {
public static ManageAccessorDomainWhiteListResponse unmarshall(ManageAccessorDomainWhiteListResponse manageAccessorDomainWhiteListResponse, UnmarshallerContext _ctx) {
manageAccessorDomainWhiteListResponse.setRequestId(_ctx.stringValue("ManageAccessorDomainWhiteListResponse.RequestId"));
manageAccessorDomainWhiteListResponse.setCode(_ctx.integerValue("ManageAccessorDomainWhiteListResponse.Code"));
manageAccessorDomainWhiteListResponse.setMessage(_ctx.stringValue("ManageAccessorDomainWhiteListResponse.Message"));
return manageAccessorDomainWhiteListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/ManageAccessorIpResponseUnmarshaller.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.beian.transform.v20160810;
import com.aliyuncs.beian.model.v20160810.ManageAccessorIpResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ManageAccessorIpResponseUnmarshaller {
public static ManageAccessorIpResponse unmarshall(ManageAccessorIpResponse manageAccessorIpResponse, UnmarshallerContext _ctx) {
manageAccessorIpResponse.setRequestId(_ctx.stringValue("ManageAccessorIpResponse.RequestId"));
manageAccessorIpResponse.setCode(_ctx.integerValue("ManageAccessorIpResponse.Code"));
manageAccessorIpResponse.setMessage(_ctx.stringValue("ManageAccessorIpResponse.Message"));
return manageAccessorIpResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/QueryAccessorDomainListResponseUnmarshaller.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.beian.transform.v20160810;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.beian.model.v20160810.QueryAccessorDomainListResponse;
import com.aliyuncs.beian.model.v20160810.QueryAccessorDomainListResponse.Data;
import com.aliyuncs.transform.UnmarshallerContext;
public class QueryAccessorDomainListResponseUnmarshaller {
public static QueryAccessorDomainListResponse unmarshall(QueryAccessorDomainListResponse queryAccessorDomainListResponse, UnmarshallerContext _ctx) {
queryAccessorDomainListResponse.setRequestId(_ctx.stringValue("QueryAccessorDomainListResponse.RequestId"));
queryAccessorDomainListResponse.setCode(_ctx.integerValue("QueryAccessorDomainListResponse.Code"));
queryAccessorDomainListResponse.setMessage(_ctx.stringValue("QueryAccessorDomainListResponse.Message"));
Data data = new Data();
List<String> domains = new ArrayList<String>();
for (int i = 0; i < _ctx.lengthValue("QueryAccessorDomainListResponse.Data.Domains.Length"); i++) {
domains.add(_ctx.stringValue("QueryAccessorDomainListResponse.Data.Domains["+ i +"]"));
}
data.setDomains(domains);
queryAccessorDomainListResponse.setData(data);
return queryAccessorDomainListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/QueryAccessorDomainResponseUnmarshaller.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.beian.transform.v20160810;
import com.aliyuncs.beian.model.v20160810.QueryAccessorDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class QueryAccessorDomainResponseUnmarshaller {
public static QueryAccessorDomainResponse unmarshall(QueryAccessorDomainResponse queryAccessorDomainResponse, UnmarshallerContext _ctx) {
queryAccessorDomainResponse.setRequestId(_ctx.stringValue("QueryAccessorDomainResponse.RequestId"));
queryAccessorDomainResponse.setCode(_ctx.integerValue("QueryAccessorDomainResponse.Code"));
queryAccessorDomainResponse.setMessage(_ctx.stringValue("QueryAccessorDomainResponse.Message"));
queryAccessorDomainResponse.setData(_ctx.booleanValue("QueryAccessorDomainResponse.Data"));
return queryAccessorDomainResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/QueryAccessorDomainStatusResponseUnmarshaller.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.beian.transform.v20160810;
import com.aliyuncs.beian.model.v20160810.QueryAccessorDomainStatusResponse;
import com.aliyuncs.beian.model.v20160810.QueryAccessorDomainStatusResponse.Data;
import com.aliyuncs.transform.UnmarshallerContext;
public class QueryAccessorDomainStatusResponseUnmarshaller {
public static QueryAccessorDomainStatusResponse unmarshall(QueryAccessorDomainStatusResponse queryAccessorDomainStatusResponse, UnmarshallerContext _ctx) {
queryAccessorDomainStatusResponse.setRequestId(_ctx.stringValue("QueryAccessorDomainStatusResponse.RequestId"));
queryAccessorDomainStatusResponse.setCode(_ctx.integerValue("QueryAccessorDomainStatusResponse.Code"));
queryAccessorDomainStatusResponse.setMessage(_ctx.stringValue("QueryAccessorDomainStatusResponse.Message"));
Data data = new Data();
data.setDomain(_ctx.stringValue("QueryAccessorDomainStatusResponse.Data.Domain"));
data.setStatus(_ctx.stringValue("QueryAccessorDomainStatusResponse.Data.Status"));
data.setReasonCode(_ctx.integerValue("QueryAccessorDomainStatusResponse.Data.ReasonCode"));
data.setReason(_ctx.stringValue("QueryAccessorDomainStatusResponse.Data.Reason"));
queryAccessorDomainStatusResponse.setData(data);
return queryAccessorDomainStatusResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/QueryAccessorDomainWhiteListResponseUnmarshaller.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.beian.transform.v20160810;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.beian.model.v20160810.QueryAccessorDomainWhiteListResponse;
import com.aliyuncs.beian.model.v20160810.QueryAccessorDomainWhiteListResponse.Data;
import com.aliyuncs.beian.model.v20160810.QueryAccessorDomainWhiteListResponse.Data.ItemsItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class QueryAccessorDomainWhiteListResponseUnmarshaller {
public static QueryAccessorDomainWhiteListResponse unmarshall(QueryAccessorDomainWhiteListResponse queryAccessorDomainWhiteListResponse, UnmarshallerContext _ctx) {
queryAccessorDomainWhiteListResponse.setRequestId(_ctx.stringValue("QueryAccessorDomainWhiteListResponse.RequestId"));
queryAccessorDomainWhiteListResponse.setCode(_ctx.integerValue("QueryAccessorDomainWhiteListResponse.Code"));
queryAccessorDomainWhiteListResponse.setMessage(_ctx.stringValue("QueryAccessorDomainWhiteListResponse.Message"));
Data data = new Data();
data.setWhite(_ctx.booleanValue("QueryAccessorDomainWhiteListResponse.Data.White"));
List<ItemsItem> items = new ArrayList<ItemsItem>();
for (int i = 0; i < _ctx.lengthValue("QueryAccessorDomainWhiteListResponse.Data.Items.Length"); i++) {
ItemsItem itemsItem = new ItemsItem();
itemsItem.setType(_ctx.stringValue("QueryAccessorDomainWhiteListResponse.Data.Items["+ i +"].Type"));
itemsItem.setCreateTime(_ctx.stringValue("QueryAccessorDomainWhiteListResponse.Data.Items["+ i +"].CreateTime"));
itemsItem.setStartTime(_ctx.stringValue("QueryAccessorDomainWhiteListResponse.Data.Items["+ i +"].StartTime"));
itemsItem.setEndTime(_ctx.stringValue("QueryAccessorDomainWhiteListResponse.Data.Items["+ i +"].EndTime"));
itemsItem.setValid(_ctx.booleanValue("QueryAccessorDomainWhiteListResponse.Data.Items["+ i +"].Valid"));
items.add(itemsItem);
}
data.setItems(items);
queryAccessorDomainWhiteListResponse.setData(data);
return queryAccessorDomainWhiteListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/QueryAccessorDomainsStatusResponseUnmarshaller.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.beian.transform.v20160810;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.beian.model.v20160810.QueryAccessorDomainsStatusResponse;
import com.aliyuncs.beian.model.v20160810.QueryAccessorDomainsStatusResponse.DataItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class QueryAccessorDomainsStatusResponseUnmarshaller {
public static QueryAccessorDomainsStatusResponse unmarshall(QueryAccessorDomainsStatusResponse queryAccessorDomainsStatusResponse, UnmarshallerContext _ctx) {
queryAccessorDomainsStatusResponse.setRequestId(_ctx.stringValue("QueryAccessorDomainsStatusResponse.RequestId"));
queryAccessorDomainsStatusResponse.setCode(_ctx.integerValue("QueryAccessorDomainsStatusResponse.Code"));
queryAccessorDomainsStatusResponse.setMessage(_ctx.stringValue("QueryAccessorDomainsStatusResponse.Message"));
List<DataItem> data = new ArrayList<DataItem>();
for (int i = 0; i < _ctx.lengthValue("QueryAccessorDomainsStatusResponse.Data.Length"); i++) {
DataItem dataItem = new DataItem();
dataItem.setDomain(_ctx.stringValue("QueryAccessorDomainsStatusResponse.Data["+ i +"].Domain"));
dataItem.setStatus(_ctx.stringValue("QueryAccessorDomainsStatusResponse.Data["+ i +"].Status"));
dataItem.setReasonCode(_ctx.integerValue("QueryAccessorDomainsStatusResponse.Data["+ i +"].ReasonCode"));
dataItem.setReason(_ctx.stringValue("QueryAccessorDomainsStatusResponse.Data["+ i +"].Reason"));
data.add(dataItem);
}
queryAccessorDomainsStatusResponse.setData(data);
return queryAccessorDomainsStatusResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/QueryAccessorIpResponseUnmarshaller.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.beian.transform.v20160810;
import com.aliyuncs.beian.model.v20160810.QueryAccessorIpResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class QueryAccessorIpResponseUnmarshaller {
public static QueryAccessorIpResponse unmarshall(QueryAccessorIpResponse queryAccessorIpResponse, UnmarshallerContext _ctx) {
queryAccessorIpResponse.setRequestId(_ctx.stringValue("QueryAccessorIpResponse.RequestId"));
queryAccessorIpResponse.setCode(_ctx.stringValue("QueryAccessorIpResponse.Code"));
queryAccessorIpResponse.setMessage(_ctx.stringValue("QueryAccessorIpResponse.Message"));
queryAccessorIpResponse.setData(_ctx.booleanValue("QueryAccessorIpResponse.Data"));
return queryAccessorIpResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform
|
java-sources/com/aliyun/aliyun-java-sdk-beian/2.0.16/com/aliyuncs/beian/transform/v20160810/SubmitAccessorFullDomainsOssListResponseUnmarshaller.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.beian.transform.v20160810;
import com.aliyuncs.beian.model.v20160810.SubmitAccessorFullDomainsOssListResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class SubmitAccessorFullDomainsOssListResponseUnmarshaller {
public static SubmitAccessorFullDomainsOssListResponse unmarshall(SubmitAccessorFullDomainsOssListResponse submitAccessorFullDomainsOssListResponse, UnmarshallerContext _ctx) {
submitAccessorFullDomainsOssListResponse.setRequestId(_ctx.stringValue("SubmitAccessorFullDomainsOssListResponse.RequestId"));
submitAccessorFullDomainsOssListResponse.setCode(_ctx.integerValue("SubmitAccessorFullDomainsOssListResponse.Code"));
submitAccessorFullDomainsOssListResponse.setMessage(_ctx.stringValue("SubmitAccessorFullDomainsOssListResponse.Message"));
return submitAccessorFullDomainsOssListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/model
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/model/v20160405/ListBillDetailsRequest.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.billing.model.v20160405;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class ListBillDetailsRequest extends RpcAcsRequest<ListBillDetailsResponse> {
public ListBillDetailsRequest() {
super("Billing", "2016-04-05", "ListBillDetails");
}
private String regionCode;
private Long billId;
public String getRegionCode() {
return this.regionCode;
}
public void setRegionCode(String regionCode) {
this.regionCode = regionCode;
putQueryParameter("RegionCode", regionCode);
}
public Long getBillId() {
return this.billId;
}
public void setBillId(Long billId) {
this.billId = billId;
putQueryParameter("BillId", billId);
}
@Override
public Class<ListBillDetailsResponse> getResponseClass() {
return ListBillDetailsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/model
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/model/v20160405/ListBillDetailsResponse.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.billing.model.v20160405;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.billing.transform.v20160405.ListBillDetailsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListBillDetailsResponse extends AcsResponse {
private String requestId;
private List<BillDetail> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<BillDetail> getData() {
return this.data;
}
public void setData(List<BillDetail> data) {
this.data = data;
}
public static class BillDetail {
private Long billDetailId;
private Long ownerId;
private Long buyerId;
private Long startTime;
private Long endTime;
private String instanceId;
private Boolean isFlowpackDeduct;
private String fee;
private String discountFee;
private String regionCode;
public Long getBillDetailId() {
return this.billDetailId;
}
public void setBillDetailId(Long billDetailId) {
this.billDetailId = billDetailId;
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
}
public Long getBuyerId() {
return this.buyerId;
}
public void setBuyerId(Long buyerId) {
this.buyerId = buyerId;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Boolean getIsFlowpackDeduct() {
return this.isFlowpackDeduct;
}
public void setIsFlowpackDeduct(Boolean isFlowpackDeduct) {
this.isFlowpackDeduct = isFlowpackDeduct;
}
public String getFee() {
return this.fee;
}
public void setFee(String fee) {
this.fee = fee;
}
public String getDiscountFee() {
return this.discountFee;
}
public void setDiscountFee(String discountFee) {
this.discountFee = discountFee;
}
public String getRegionCode() {
return this.regionCode;
}
public void setRegionCode(String regionCode) {
this.regionCode = regionCode;
}
}
@Override
public ListBillDetailsResponse getInstance(UnmarshallerContext context) {
return ListBillDetailsResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/model
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/model/v20160405/ListBillsRequest.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.billing.model.v20160405;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class ListBillsRequest extends RpcAcsRequest<ListBillsResponse> {
public ListBillsRequest() {
super("Billing", "2016-04-05", "ListBills");
}
private Integer pageSize;
private Integer pageNo;
private String commodityCode;
private Long billStartTime;
private Long billEndTime;
private String accountPeriod;
private String payStatus;
private Boolean needZeroBill;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
putQueryParameter("PageSize", pageSize);
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
putQueryParameter("PageNo", pageNo);
}
public String getCommodityCode() {
return this.commodityCode;
}
public void setCommodityCode(String commodityCode) {
this.commodityCode = commodityCode;
putQueryParameter("CommodityCode", commodityCode);
}
public Long getBillStartTime() {
return this.billStartTime;
}
public void setBillStartTime(Long billStartTime) {
this.billStartTime = billStartTime;
putQueryParameter("BillStartTime", billStartTime);
}
public Long getBillEndTime() {
return this.billEndTime;
}
public void setBillEndTime(Long billEndTime) {
this.billEndTime = billEndTime;
putQueryParameter("BillEndTime", billEndTime);
}
public String getAccountPeriod() {
return this.accountPeriod;
}
public void setAccountPeriod(String accountPeriod) {
this.accountPeriod = accountPeriod;
putQueryParameter("AccountPeriod", accountPeriod);
}
public String getPayStatus() {
return this.payStatus;
}
public void setPayStatus(String payStatus) {
this.payStatus = payStatus;
putQueryParameter("PayStatus", payStatus);
}
public Boolean getNeedZeroBill() {
return this.needZeroBill;
}
public void setNeedZeroBill(Boolean needZeroBill) {
this.needZeroBill = needZeroBill;
putQueryParameter("NeedZeroBill", needZeroBill);
}
@Override
public Class<ListBillsResponse> getResponseClass() {
return ListBillsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/model
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/model/v20160405/ListBillsResponse.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.billing.model.v20160405;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.billing.transform.v20160405.ListBillsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListBillsResponse extends AcsResponse {
private String requestId;
private Integer totalCount;
private Integer pageCount;
private Integer pageSize;
private Integer pageNo;
private List<Bill> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getPageCount() {
return this.pageCount;
}
public void setPageCount(Integer pageCount) {
this.pageCount = pageCount;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public List<Bill> getData() {
return this.data;
}
public void setData(List<Bill> data) {
this.data = data;
}
public static class Bill {
private Long billId;
private String prodName;
private String commodityCode;
private Long billStartTime;
private Long billEndTime;
private String requirePay;
private String discountPay;
private String unclearAmount;
private String cashAmount;
private String couponAmount;
private String creditPayAmount;
private String cashAmountNoCreditPay;
private String payStatus;
private String payType;
private String accountPeriod;
public Long getBillId() {
return this.billId;
}
public void setBillId(Long billId) {
this.billId = billId;
}
public String getProdName() {
return this.prodName;
}
public void setProdName(String prodName) {
this.prodName = prodName;
}
public String getCommodityCode() {
return this.commodityCode;
}
public void setCommodityCode(String commodityCode) {
this.commodityCode = commodityCode;
}
public Long getBillStartTime() {
return this.billStartTime;
}
public void setBillStartTime(Long billStartTime) {
this.billStartTime = billStartTime;
}
public Long getBillEndTime() {
return this.billEndTime;
}
public void setBillEndTime(Long billEndTime) {
this.billEndTime = billEndTime;
}
public String getRequirePay() {
return this.requirePay;
}
public void setRequirePay(String requirePay) {
this.requirePay = requirePay;
}
public String getDiscountPay() {
return this.discountPay;
}
public void setDiscountPay(String discountPay) {
this.discountPay = discountPay;
}
public String getUnclearAmount() {
return this.unclearAmount;
}
public void setUnclearAmount(String unclearAmount) {
this.unclearAmount = unclearAmount;
}
public String getCashAmount() {
return this.cashAmount;
}
public void setCashAmount(String cashAmount) {
this.cashAmount = cashAmount;
}
public String getCouponAmount() {
return this.couponAmount;
}
public void setCouponAmount(String couponAmount) {
this.couponAmount = couponAmount;
}
public String getCreditPayAmount() {
return this.creditPayAmount;
}
public void setCreditPayAmount(String creditPayAmount) {
this.creditPayAmount = creditPayAmount;
}
public String getCashAmountNoCreditPay() {
return this.cashAmountNoCreditPay;
}
public void setCashAmountNoCreditPay(String cashAmountNoCreditPay) {
this.cashAmountNoCreditPay = cashAmountNoCreditPay;
}
public String getPayStatus() {
return this.payStatus;
}
public void setPayStatus(String payStatus) {
this.payStatus = payStatus;
}
public String getPayType() {
return this.payType;
}
public void setPayType(String payType) {
this.payType = payType;
}
public String getAccountPeriod() {
return this.accountPeriod;
}
public void setAccountPeriod(String accountPeriod) {
this.accountPeriod = accountPeriod;
}
}
@Override
public ListBillsResponse getInstance(UnmarshallerContext context) {
return ListBillsResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/model
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/model/v20160405/ListResDetailsRequest.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.billing.model.v20160405;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class ListResDetailsRequest extends RpcAcsRequest<ListResDetailsResponse> {
public ListResDetailsRequest() {
super("Billing", "2016-04-05", "ListResDetails");
}
private Long billDetailId;
public Long getBillDetailId() {
return this.billDetailId;
}
public void setBillDetailId(Long billDetailId) {
this.billDetailId = billDetailId;
putQueryParameter("BillDetailId", billDetailId);
}
@Override
public Class<ListResDetailsResponse> getResponseClass() {
return ListResDetailsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/model
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/model/v20160405/ListResDetailsResponse.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.billing.model.v20160405;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.billing.transform.v20160405.ListResDetailsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListResDetailsResponse extends AcsResponse {
private String requestId;
private List<ResDetail> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<ResDetail> getData() {
return this.data;
}
public void setData(List<ResDetail> data) {
this.data = data;
}
public static class ResDetail {
private Long billDetailId;
private Long buyerId;
private Long startTime;
private Long endTime;
private String resCode;
private String resQuantity;
private String total;
private String resourceAmount;
private String discountAmount;
private String requireAmount;
private String unit;
private String remark;
private String flowPackageDebt;
private String flowPackageDetailInfo;
private String flowPackageDebtUnit;
private String extendInfo;
public Long getBillDetailId() {
return this.billDetailId;
}
public void setBillDetailId(Long billDetailId) {
this.billDetailId = billDetailId;
}
public Long getBuyerId() {
return this.buyerId;
}
public void setBuyerId(Long buyerId) {
this.buyerId = buyerId;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public String getResCode() {
return this.resCode;
}
public void setResCode(String resCode) {
this.resCode = resCode;
}
public String getResQuantity() {
return this.resQuantity;
}
public void setResQuantity(String resQuantity) {
this.resQuantity = resQuantity;
}
public String getTotal() {
return this.total;
}
public void setTotal(String total) {
this.total = total;
}
public String getResourceAmount() {
return this.resourceAmount;
}
public void setResourceAmount(String resourceAmount) {
this.resourceAmount = resourceAmount;
}
public String getDiscountAmount() {
return this.discountAmount;
}
public void setDiscountAmount(String discountAmount) {
this.discountAmount = discountAmount;
}
public String getRequireAmount() {
return this.requireAmount;
}
public void setRequireAmount(String requireAmount) {
this.requireAmount = requireAmount;
}
public String getUnit() {
return this.unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getFlowPackageDebt() {
return this.flowPackageDebt;
}
public void setFlowPackageDebt(String flowPackageDebt) {
this.flowPackageDebt = flowPackageDebt;
}
public String getFlowPackageDetailInfo() {
return this.flowPackageDetailInfo;
}
public void setFlowPackageDetailInfo(String flowPackageDetailInfo) {
this.flowPackageDetailInfo = flowPackageDetailInfo;
}
public String getFlowPackageDebtUnit() {
return this.flowPackageDebtUnit;
}
public void setFlowPackageDebtUnit(String flowPackageDebtUnit) {
this.flowPackageDebtUnit = flowPackageDebtUnit;
}
public String getExtendInfo() {
return this.extendInfo;
}
public void setExtendInfo(String extendInfo) {
this.extendInfo = extendInfo;
}
}
@Override
public ListResDetailsResponse getInstance(UnmarshallerContext context) {
return ListResDetailsResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/transform
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/transform/v20160405/ListBillDetailsResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.billing.transform.v20160405;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.billing.model.v20160405.ListBillDetailsResponse;
import com.aliyuncs.billing.model.v20160405.ListBillDetailsResponse.BillDetail;
import com.aliyuncs.transform.UnmarshallerContext;
public class ListBillDetailsResponseUnmarshaller {
public static ListBillDetailsResponse unmarshall(ListBillDetailsResponse listBillDetailsResponse, UnmarshallerContext context) {
listBillDetailsResponse.setRequestId(context.stringValue("ListBillDetailsResponse.RequestId"));
List<BillDetail> data = new ArrayList<BillDetail>();
for (int i = 0; i < context.lengthValue("ListBillDetailsResponse.Data.Length"); i++) {
BillDetail billDetail = new BillDetail();
billDetail.setBillDetailId(context.longValue("ListBillDetailsResponse.Data["+ i +"].BillDetailId"));
billDetail.setOwnerId(context.longValue("ListBillDetailsResponse.Data["+ i +"].OwnerId"));
billDetail.setBuyerId(context.longValue("ListBillDetailsResponse.Data["+ i +"].BuyerId"));
billDetail.setStartTime(context.longValue("ListBillDetailsResponse.Data["+ i +"].StartTime"));
billDetail.setEndTime(context.longValue("ListBillDetailsResponse.Data["+ i +"].EndTime"));
billDetail.setInstanceId(context.stringValue("ListBillDetailsResponse.Data["+ i +"].InstanceId"));
billDetail.setIsFlowpackDeduct(context.booleanValue("ListBillDetailsResponse.Data["+ i +"].IsFlowpackDeduct"));
billDetail.setFee(context.stringValue("ListBillDetailsResponse.Data["+ i +"].Fee"));
billDetail.setDiscountFee(context.stringValue("ListBillDetailsResponse.Data["+ i +"].DiscountFee"));
billDetail.setRegionCode(context.stringValue("ListBillDetailsResponse.Data["+ i +"].RegionCode"));
data.add(billDetail);
}
listBillDetailsResponse.setData(data);
return listBillDetailsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/transform
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/transform/v20160405/ListBillsResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.billing.transform.v20160405;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.billing.model.v20160405.ListBillsResponse;
import com.aliyuncs.billing.model.v20160405.ListBillsResponse.Bill;
import com.aliyuncs.transform.UnmarshallerContext;
public class ListBillsResponseUnmarshaller {
public static ListBillsResponse unmarshall(ListBillsResponse listBillsResponse, UnmarshallerContext context) {
listBillsResponse.setRequestId(context.stringValue("ListBillsResponse.RequestId"));
listBillsResponse.setTotalCount(context.integerValue("ListBillsResponse.TotalCount"));
listBillsResponse.setPageCount(context.integerValue("ListBillsResponse.PageCount"));
listBillsResponse.setPageSize(context.integerValue("ListBillsResponse.PageSize"));
listBillsResponse.setPageNo(context.integerValue("ListBillsResponse.PageNo"));
List<Bill> data = new ArrayList<Bill>();
for (int i = 0; i < context.lengthValue("ListBillsResponse.Data.Length"); i++) {
Bill bill = new Bill();
bill.setBillId(context.longValue("ListBillsResponse.Data["+ i +"].BillId"));
bill.setProdName(context.stringValue("ListBillsResponse.Data["+ i +"].ProdName"));
bill.setCommodityCode(context.stringValue("ListBillsResponse.Data["+ i +"].CommodityCode"));
bill.setBillStartTime(context.longValue("ListBillsResponse.Data["+ i +"].BillStartTime"));
bill.setBillEndTime(context.longValue("ListBillsResponse.Data["+ i +"].BillEndTime"));
bill.setRequirePay(context.stringValue("ListBillsResponse.Data["+ i +"].RequirePay"));
bill.setDiscountPay(context.stringValue("ListBillsResponse.Data["+ i +"].DiscountPay"));
bill.setUnclearAmount(context.stringValue("ListBillsResponse.Data["+ i +"].UnclearAmount"));
bill.setCashAmount(context.stringValue("ListBillsResponse.Data["+ i +"].CashAmount"));
bill.setCouponAmount(context.stringValue("ListBillsResponse.Data["+ i +"].CouponAmount"));
bill.setCreditPayAmount(context.stringValue("ListBillsResponse.Data["+ i +"].CreditPayAmount"));
bill.setCashAmountNoCreditPay(context.stringValue("ListBillsResponse.Data["+ i +"].CashAmountNoCreditPay"));
bill.setPayStatus(context.stringValue("ListBillsResponse.Data["+ i +"].PayStatus"));
bill.setPayType(context.stringValue("ListBillsResponse.Data["+ i +"].PayType"));
bill.setAccountPeriod(context.stringValue("ListBillsResponse.Data["+ i +"].AccountPeriod"));
data.add(bill);
}
listBillsResponse.setData(data);
return listBillsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/transform
|
java-sources/com/aliyun/aliyun-java-sdk-billing/1.0.0/com/aliyuncs/billing/transform/v20160405/ListResDetailsResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.billing.transform.v20160405;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.billing.model.v20160405.ListResDetailsResponse;
import com.aliyuncs.billing.model.v20160405.ListResDetailsResponse.ResDetail;
import com.aliyuncs.transform.UnmarshallerContext;
public class ListResDetailsResponseUnmarshaller {
public static ListResDetailsResponse unmarshall(ListResDetailsResponse listResDetailsResponse, UnmarshallerContext context) {
listResDetailsResponse.setRequestId(context.stringValue("ListResDetailsResponse.RequestId"));
List<ResDetail> data = new ArrayList<ResDetail>();
for (int i = 0; i < context.lengthValue("ListResDetailsResponse.Data.Length"); i++) {
ResDetail resDetail = new ResDetail();
resDetail.setBillDetailId(context.longValue("ListResDetailsResponse.Data["+ i +"].BillDetailId"));
resDetail.setBuyerId(context.longValue("ListResDetailsResponse.Data["+ i +"].BuyerId"));
resDetail.setStartTime(context.longValue("ListResDetailsResponse.Data["+ i +"].StartTime"));
resDetail.setEndTime(context.longValue("ListResDetailsResponse.Data["+ i +"].EndTime"));
resDetail.setResCode(context.stringValue("ListResDetailsResponse.Data["+ i +"].ResCode"));
resDetail.setResQuantity(context.stringValue("ListResDetailsResponse.Data["+ i +"].ResQuantity"));
resDetail.setTotal(context.stringValue("ListResDetailsResponse.Data["+ i +"].Total"));
resDetail.setResourceAmount(context.stringValue("ListResDetailsResponse.Data["+ i +"].ResourceAmount"));
resDetail.setDiscountAmount(context.stringValue("ListResDetailsResponse.Data["+ i +"].DiscountAmount"));
resDetail.setRequireAmount(context.stringValue("ListResDetailsResponse.Data["+ i +"].RequireAmount"));
resDetail.setUnit(context.stringValue("ListResDetailsResponse.Data["+ i +"].Unit"));
resDetail.setRemark(context.stringValue("ListResDetailsResponse.Data["+ i +"].Remark"));
resDetail.setFlowPackageDebt(context.stringValue("ListResDetailsResponse.Data["+ i +"].FlowPackageDebt"));
resDetail.setFlowPackageDetailInfo(context.stringValue("ListResDetailsResponse.Data["+ i +"].FlowPackageDetailInfo"));
resDetail.setFlowPackageDebtUnit(context.stringValue("ListResDetailsResponse.Data["+ i +"].FlowPackageDebtUnit"));
resDetail.setExtendInfo(context.stringValue("ListResDetailsResponse.Data["+ i +"].ExtendInfo"));
data.add(resDetail);
}
listResDetailsResponse.setData(data);
return listResDetailsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/AppFailBackRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class AppFailBackRequest extends RpcAcsRequest<AppFailBackResponse> {
private String applicationId;
public AppFailBackRequest() {
super("BPStudio", "2021-09-31", "AppFailBack", "bpstudio");
setMethod(MethodType.POST);
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
@Override
public Class<AppFailBackResponse> getResponseClass() {
return AppFailBackResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/AppFailBackResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.AppFailBackResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AppFailBackResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Integer data;
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;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getData() {
return this.data;
}
public void setData(Integer data) {
this.data = data;
}
@Override
public AppFailBackResponse getInstance(UnmarshallerContext context) {
return AppFailBackResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/AppFailOverRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class AppFailOverRequest extends RpcAcsRequest<AppFailOverResponse> {
private String failZone;
private String applicationId;
public AppFailOverRequest() {
super("BPStudio", "2021-09-31", "AppFailOver", "bpstudio");
setMethod(MethodType.POST);
}
public String getFailZone() {
return this.failZone;
}
public void setFailZone(String failZone) {
this.failZone = failZone;
if(failZone != null){
putBodyParameter("FailZone", failZone);
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
@Override
public Class<AppFailOverResponse> getResponseClass() {
return AppFailOverResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/AppFailOverResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.AppFailOverResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AppFailOverResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Integer data;
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;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getData() {
return this.data;
}
public void setData(Integer data) {
this.data = data;
}
@Override
public AppFailOverResponse getInstance(UnmarshallerContext context) {
return AppFailOverResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ChangeResourceGroupRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ChangeResourceGroupRequest extends RpcAcsRequest<ChangeResourceGroupResponse> {
private String resourceId;
private String resourceType;
private String newResourceGroupId;
public ChangeResourceGroupRequest() {
super("BPStudio", "2021-09-31", "ChangeResourceGroup", "bpstudio");
setMethod(MethodType.POST);
}
public String getResourceId() {
return this.resourceId;
}
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
if(resourceId != null){
putBodyParameter("ResourceId", resourceId);
}
}
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
if(resourceType != null){
putBodyParameter("ResourceType", resourceType);
}
}
public String getNewResourceGroupId() {
return this.newResourceGroupId;
}
public void setNewResourceGroupId(String newResourceGroupId) {
this.newResourceGroupId = newResourceGroupId;
if(newResourceGroupId != null){
putBodyParameter("NewResourceGroupId", newResourceGroupId);
}
}
@Override
public Class<ChangeResourceGroupResponse> getResponseClass() {
return ChangeResourceGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ChangeResourceGroupResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ChangeResourceGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ChangeResourceGroupResponse extends AcsResponse {
private String requestId;
private String data;
private String message;
private Long code;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Long getCode() {
return this.code;
}
public void setCode(Long code) {
this.code = code;
}
@Override
public ChangeResourceGroupResponse getInstance(UnmarshallerContext context) {
return ChangeResourceGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/CreateApplicationRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import java.util.Map;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class CreateApplicationRequest extends RpcAcsRequest<CreateApplicationResponse> {
private String clientToken;
@SerializedName("instances")
private List<Instances> instances;
@SerializedName("configuration")
private Map<String,String> configuration;
private String resourceGroupId;
private String areaId;
@SerializedName("variables")
private Map<String,Object> variables;
@SerializedName("processVariables")
private Map<String,Object> processVariables;
private String templateId;
private String name;
public CreateApplicationRequest() {
super("BPStudio", "2021-09-31", "CreateApplication", "bpstudio");
setMethod(MethodType.POST);
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public List<Instances> getInstances() {
return this.instances;
}
public void setInstances(List<Instances> instances) {
this.instances = instances;
if (instances != null) {
putBodyParameter("Instances" , new Gson().toJson(instances));
}
}
public Map<String,String> getConfiguration() {
return this.configuration;
}
public void setConfiguration(Map<String,String> configuration) {
this.configuration = configuration;
if (configuration != null) {
putBodyParameter("Configuration" , new Gson().toJson(configuration));
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
if(areaId != null){
putBodyParameter("AreaId", areaId);
}
}
public Map<String,Object> getVariables() {
return this.variables;
}
public void setVariables(Map<String,Object> variables) {
this.variables = variables;
if (variables != null) {
putBodyParameter("Variables" , new Gson().toJson(variables));
}
}
public Map<String,Object> getProcessVariables() {
return this.processVariables;
}
public void setProcessVariables(Map<String,Object> processVariables) {
this.processVariables = processVariables;
if (processVariables != null) {
putBodyParameter("ProcessVariables" , new Gson().toJson(processVariables));
}
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
if(templateId != null){
putBodyParameter("TemplateId", templateId);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putBodyParameter("Name", name);
}
}
public static class Instances {
@SerializedName("NodeName")
private String nodeName;
@SerializedName("NodeType")
private String nodeType;
@SerializedName("Id")
private String id;
public String getNodeName() {
return this.nodeName;
}
public void setNodeName(String nodeName) {
this.nodeName = nodeName;
}
public String getNodeType() {
return this.nodeType;
}
public void setNodeType(String nodeType) {
this.nodeType = nodeType;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
}
@Override
public Class<CreateApplicationResponse> getResponseClass() {
return CreateApplicationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/CreateApplicationResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.CreateApplicationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateApplicationResponse extends AcsResponse {
private String message;
private String requestId;
private String data;
private Integer 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 String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
@Override
public CreateApplicationResponse getInstance(UnmarshallerContext context) {
return CreateApplicationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/DeleteApplicationRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class DeleteApplicationRequest extends RpcAcsRequest<DeleteApplicationResponse> {
private String resourceGroupId;
private String applicationId;
public DeleteApplicationRequest() {
super("BPStudio", "2021-09-31", "DeleteApplication", "bpstudio");
setMethod(MethodType.POST);
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
@Override
public Class<DeleteApplicationResponse> getResponseClass() {
return DeleteApplicationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/DeleteApplicationResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.DeleteApplicationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteApplicationResponse extends AcsResponse {
private String message;
private String requestId;
private Integer 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 Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
@Override
public DeleteApplicationResponse getInstance(UnmarshallerContext context) {
return DeleteApplicationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/DeployApplicationRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class DeployApplicationRequest extends RpcAcsRequest<DeployApplicationResponse> {
private String clientToken;
private String resourceGroupId;
private String applicationId;
public DeployApplicationRequest() {
super("BPStudio", "2021-09-31", "DeployApplication", "bpstudio");
setMethod(MethodType.POST);
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putQueryParameter("ApplicationId", applicationId);
}
}
@Override
public Class<DeployApplicationResponse> getResponseClass() {
return DeployApplicationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/DeployApplicationResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.DeployApplicationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeployApplicationResponse extends AcsResponse {
private String message;
private String requestId;
private Long data;
private Integer 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 Long getData() {
return this.data;
}
public void setData(Long data) {
this.data = data;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
@Override
public DeployApplicationResponse getInstance(UnmarshallerContext context) {
return DeployApplicationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ExecuteOperationASyncRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ExecuteOperationASyncRequest extends RpcAcsRequest<ExecuteOperationASyncResponse> {
private String clientToken;
private String resourceGroupId;
private String serviceType;
private String attributes;
private String applicationId;
private String operation;
public ExecuteOperationASyncRequest() {
super("BPStudio", "2021-09-31", "ExecuteOperationASync", "bpstudio");
setMethod(MethodType.POST);
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public String getServiceType() {
return this.serviceType;
}
public void setServiceType(String serviceType) {
this.serviceType = serviceType;
if(serviceType != null){
putBodyParameter("ServiceType", serviceType);
}
}
public String getAttributes() {
return this.attributes;
}
public void setAttributes(String attributes) {
this.attributes = attributes;
if(attributes != null){
putBodyParameter("Attributes", attributes);
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
public String getOperation() {
return this.operation;
}
public void setOperation(String operation) {
this.operation = operation;
if(operation != null){
putBodyParameter("Operation", operation);
}
}
@Override
public Class<ExecuteOperationASyncResponse> getResponseClass() {
return ExecuteOperationASyncResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ExecuteOperationASyncResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ExecuteOperationASyncResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ExecuteOperationASyncResponse extends AcsResponse {
private String message;
private String requestId;
private String data;
private Integer 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 String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
@Override
public ExecuteOperationASyncResponse getInstance(UnmarshallerContext context) {
return ExecuteOperationASyncResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ExecuteOperationSyncRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ExecuteOperationSyncRequest extends RpcAcsRequest<ExecuteOperationSyncResponse> {
private String clientToken;
private String resourceGroupId;
private String serviceType;
private String attributes;
private String applicationId;
private String operation;
public ExecuteOperationSyncRequest() {
super("BPStudio", "2021-09-31", "ExecuteOperationSync", "bpstudio");
setMethod(MethodType.POST);
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public String getServiceType() {
return this.serviceType;
}
public void setServiceType(String serviceType) {
this.serviceType = serviceType;
if(serviceType != null){
putBodyParameter("ServiceType", serviceType);
}
}
public String getAttributes() {
return this.attributes;
}
public void setAttributes(String attributes) {
this.attributes = attributes;
if(attributes != null){
putBodyParameter("Attributes", attributes);
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
public String getOperation() {
return this.operation;
}
public void setOperation(String operation) {
this.operation = operation;
if(operation != null){
putBodyParameter("Operation", operation);
}
}
@Override
public Class<ExecuteOperationSyncResponse> getResponseClass() {
return ExecuteOperationSyncResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ExecuteOperationSyncResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ExecuteOperationSyncResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ExecuteOperationSyncResponse extends AcsResponse {
private String message;
private String requestId;
private Integer code;
private Data data;
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 Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String operationId;
private String status;
private String message;
private String arguments;
public String getOperationId() {
return this.operationId;
}
public void setOperationId(String operationId) {
this.operationId = operationId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getArguments() {
return this.arguments;
}
public void setArguments(String arguments) {
this.arguments = arguments;
}
}
@Override
public ExecuteOperationSyncResponse getInstance(UnmarshallerContext context) {
return ExecuteOperationSyncResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetApplicationRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetApplicationRequest extends RpcAcsRequest<GetApplicationResponse> {
private String resourceGroupId;
private String applicationId;
public GetApplicationRequest() {
super("BPStudio", "2021-09-31", "GetApplication", "bpstudio");
setMethod(MethodType.POST);
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
@Override
public Class<GetApplicationResponse> getResponseClass() {
return GetApplicationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetApplicationResponse.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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.GetApplicationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetApplicationResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private Data data;
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 String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String description;
private String imageURL;
private String applicationId;
private String name;
private String templateId;
private String createTime;
private String resourceGroupId;
private String status;
private String error;
private Double deployPercent;
private List<Item> priceList;
private List<Item1> checklist;
private List<Item2> resourceList;
private List<Item3> complianceList;
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getImageURL() {
return this.imageURL;
}
public void setImageURL(String imageURL) {
this.imageURL = imageURL;
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getError() {
return this.error;
}
public void setError(String error) {
this.error = error;
}
public Double getDeployPercent() {
return this.deployPercent;
}
public void setDeployPercent(Double deployPercent) {
this.deployPercent = deployPercent;
}
public List<Item> getPriceList() {
return this.priceList;
}
public void setPriceList(List<Item> priceList) {
this.priceList = priceList;
}
public List<Item1> getChecklist() {
return this.checklist;
}
public void setChecklist(List<Item1> checklist) {
this.checklist = checklist;
}
public List<Item2> getResourceList() {
return this.resourceList;
}
public void setResourceList(List<Item2> resourceList) {
this.resourceList = resourceList;
}
public List<Item3> getComplianceList() {
return this.complianceList;
}
public void setComplianceList(List<Item3> complianceList) {
this.complianceList = complianceList;
}
public static class Item {
private String resourceCode;
private String instanceName;
private Double originalPrice;
private Double onePrice;
private Integer period;
private Integer count;
private String priceUnit;
private Double price;
private String chargeType;
private String region;
private String specification;
private String lifecycle;
private String remark;
private String type;
public String getResourceCode() {
return this.resourceCode;
}
public void setResourceCode(String resourceCode) {
this.resourceCode = resourceCode;
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public Double getOriginalPrice() {
return this.originalPrice;
}
public void setOriginalPrice(Double originalPrice) {
this.originalPrice = originalPrice;
}
public Double getOnePrice() {
return this.onePrice;
}
public void setOnePrice(Double onePrice) {
this.onePrice = onePrice;
}
public Integer getPeriod() {
return this.period;
}
public void setPeriod(Integer period) {
this.period = period;
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public String getPriceUnit() {
return this.priceUnit;
}
public void setPriceUnit(String priceUnit) {
this.priceUnit = priceUnit;
}
public Double getPrice() {
return this.price;
}
public void setPrice(Double price) {
this.price = price;
}
public String getChargeType() {
return this.chargeType;
}
public void setChargeType(String chargeType) {
this.chargeType = chargeType;
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
}
public String getSpecification() {
return this.specification;
}
public void setSpecification(String specification) {
this.specification = specification;
}
public String getLifecycle() {
return this.lifecycle;
}
public void setLifecycle(String lifecycle) {
this.lifecycle = lifecycle;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
public static class Item1 {
private String resourceCode;
private String resourceName;
private String region;
private String result;
private String remark;
private String specification;
private String lifecycle;
public String getResourceCode() {
return this.resourceCode;
}
public void setResourceCode(String resourceCode) {
this.resourceCode = resourceCode;
}
public String getResourceName() {
return this.resourceName;
}
public void setResourceName(String resourceName) {
this.resourceName = resourceName;
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
}
public String getResult() {
return this.result;
}
public void setResult(String result) {
this.result = result;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getSpecification() {
return this.specification;
}
public void setSpecification(String specification) {
this.specification = specification;
}
public String getLifecycle() {
return this.lifecycle;
}
public void setLifecycle(String lifecycle) {
this.lifecycle = lifecycle;
}
}
public static class Item2 {
private String status;
private String resourceCode;
private String resourceName;
private String resourceId;
private String chargeType;
private String resourceType;
private String remark;
private String lifecycle;
private String nodeLabel;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getResourceCode() {
return this.resourceCode;
}
public void setResourceCode(String resourceCode) {
this.resourceCode = resourceCode;
}
public String getResourceName() {
return this.resourceName;
}
public void setResourceName(String resourceName) {
this.resourceName = resourceName;
}
public String getResourceId() {
return this.resourceId;
}
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}
public String getChargeType() {
return this.chargeType;
}
public void setChargeType(String chargeType) {
this.chargeType = chargeType;
}
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getLifecycle() {
return this.lifecycle;
}
public void setLifecycle(String lifecycle) {
this.lifecycle = lifecycle;
}
public String getNodeLabel() {
return this.nodeLabel;
}
public void setNodeLabel(String nodeLabel) {
this.nodeLabel = nodeLabel;
}
}
public static class Item3 {
private String resourceName;
private String resourceCode;
private List<Item4> rules;
public String getResourceName() {
return this.resourceName;
}
public void setResourceName(String resourceName) {
this.resourceName = resourceName;
}
public String getResourceCode() {
return this.resourceCode;
}
public void setResourceCode(String resourceCode) {
this.resourceCode = resourceCode;
}
public List<Item4> getRules() {
return this.rules;
}
public void setRules(List<Item4> rules) {
this.rules = rules;
}
public static class Item4 {
private String ruleId;
private String ruleDetail;
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
}
public String getRuleDetail() {
return this.ruleDetail;
}
public void setRuleDetail(String ruleDetail) {
this.ruleDetail = ruleDetail;
}
}
}
}
@Override
public GetApplicationResponse getInstance(UnmarshallerContext context) {
return GetApplicationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetApplicationVariables4FailRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetApplicationVariables4FailRequest extends RpcAcsRequest<GetApplicationVariables4FailResponse> {
private String appId;
public GetApplicationVariables4FailRequest() {
super("BPStudio", "2021-09-31", "GetApplicationVariables4Fail", "bpstudio");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
}
public String getAppId() {
return this.appId;
}
public void setAppId(String appId) {
this.appId = appId;
if(appId != null){
putQueryParameter("AppId", appId);
}
}
@Override
public Class<GetApplicationVariables4FailResponse> getResponseClass() {
return GetApplicationVariables4FailResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetApplicationVariables4FailResponse.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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.GetApplicationVariables4FailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetApplicationVariables4FailResponse extends AcsResponse {
private String requestId;
private String message;
private Integer code;
private List<Items> data;
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;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public List<Items> getData() {
return this.data;
}
public void setData(List<Items> data) {
this.data = data;
}
public static class Items {
private String region;
private String attribute;
private String variable;
private String placeHolder;
private String value;
private String defaultValue;
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
}
public String getAttribute() {
return this.attribute;
}
public void setAttribute(String attribute) {
this.attribute = attribute;
}
public String getVariable() {
return this.variable;
}
public void setVariable(String variable) {
this.variable = variable;
}
public String getPlaceHolder() {
return this.placeHolder;
}
public void setPlaceHolder(String placeHolder) {
this.placeHolder = placeHolder;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getDefaultValue() {
return this.defaultValue;
}
public void setDefaultValue(String defaultValue) {
this.defaultValue = defaultValue;
}
}
@Override
public GetApplicationVariables4FailResponse getInstance(UnmarshallerContext context) {
return GetApplicationVariables4FailResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetApplicationVariablesRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetApplicationVariablesRequest extends RpcAcsRequest<GetApplicationVariablesResponse> {
private String appId;
public GetApplicationVariablesRequest() {
super("BPStudio", "2021-09-31", "GetApplicationVariables", "bpstudio");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
}
public String getAppId() {
return this.appId;
}
public void setAppId(String appId) {
this.appId = appId;
if(appId != null){
putBodyParameter("AppId", appId);
}
}
@Override
public Class<GetApplicationVariablesResponse> getResponseClass() {
return GetApplicationVariablesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetApplicationVariablesResponse.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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.GetApplicationVariablesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetApplicationVariablesResponse extends AcsResponse {
private String requestId;
private String message;
private Integer code;
private List<Items> data;
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;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public List<Items> getData() {
return this.data;
}
public void setData(List<Items> data) {
this.data = data;
}
public static class Items {
private String instanceId;
private List<Variables> variableList;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public List<Variables> getVariableList() {
return this.variableList;
}
public void setVariableList(List<Variables> variableList) {
this.variableList = variableList;
}
public static class Variables {
private String variable;
private String value;
public String getVariable() {
return this.variable;
}
public void setVariable(String variable) {
this.variable = variable;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
}
@Override
public GetApplicationVariablesResponse getInstance(UnmarshallerContext context) {
return GetApplicationVariablesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetExecuteOperationResultRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetExecuteOperationResultRequest extends RpcAcsRequest<GetExecuteOperationResultResponse> {
private String resourceGroupId;
private String operationId;
public GetExecuteOperationResultRequest() {
super("BPStudio", "2021-09-31", "GetExecuteOperationResult", "bpstudio");
setMethod(MethodType.POST);
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public String getOperationId() {
return this.operationId;
}
public void setOperationId(String operationId) {
this.operationId = operationId;
if(operationId != null){
putBodyParameter("OperationId", operationId);
}
}
@Override
public Class<GetExecuteOperationResultResponse> getResponseClass() {
return GetExecuteOperationResultResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetExecuteOperationResultResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.GetExecuteOperationResultResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetExecuteOperationResultResponse extends AcsResponse {
private String message;
private String requestId;
private Integer code;
private Data data;
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 Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String operationId;
private String status;
private String message;
private String arguments;
public String getOperationId() {
return this.operationId;
}
public void setOperationId(String operationId) {
this.operationId = operationId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getArguments() {
return this.arguments;
}
public void setArguments(String arguments) {
this.arguments = arguments;
}
}
@Override
public GetExecuteOperationResultResponse getInstance(UnmarshallerContext context) {
return GetExecuteOperationResultResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetFoTaskStatusRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetFoTaskStatusRequest extends RpcAcsRequest<GetFoTaskStatusResponse> {
private Integer taskId;
public GetFoTaskStatusRequest() {
super("BPStudio", "2021-09-31", "GetFoTaskStatus", "bpstudio");
setMethod(MethodType.POST);
}
public Integer getTaskId() {
return this.taskId;
}
public void setTaskId(Integer taskId) {
this.taskId = taskId;
if(taskId != null){
putBodyParameter("TaskId", taskId.toString());
}
}
@Override
public Class<GetFoTaskStatusResponse> getResponseClass() {
return GetFoTaskStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetFoTaskStatusResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.GetFoTaskStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetFoTaskStatusResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private String data;
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;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public GetFoTaskStatusResponse getInstance(UnmarshallerContext context) {
return GetFoTaskStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetPotentialFailZonesRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetPotentialFailZonesRequest extends RpcAcsRequest<GetPotentialFailZonesResponse> {
private Boolean isPlanId;
private String objectId;
public GetPotentialFailZonesRequest() {
super("BPStudio", "2021-09-31", "GetPotentialFailZones", "bpstudio");
setMethod(MethodType.POST);
}
public Boolean getIsPlanId() {
return this.isPlanId;
}
public void setIsPlanId(Boolean isPlanId) {
this.isPlanId = isPlanId;
if(isPlanId != null){
putBodyParameter("IsPlanId", isPlanId.toString());
}
}
public String getObjectId() {
return this.objectId;
}
public void setObjectId(String objectId) {
this.objectId = objectId;
if(objectId != null){
putBodyParameter("ObjectId", objectId);
}
}
@Override
public Class<GetPotentialFailZonesResponse> getResponseClass() {
return GetPotentialFailZonesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetPotentialFailZonesResponse.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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.GetPotentialFailZonesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetPotentialFailZonesResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private List<String> data;
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;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public List<String> getData() {
return this.data;
}
public void setData(List<String> data) {
this.data = data;
}
@Override
public GetPotentialFailZonesResponse getInstance(UnmarshallerContext context) {
return GetPotentialFailZonesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetResource4ModifyRecordRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetResource4ModifyRecordRequest extends RpcAcsRequest<GetResource4ModifyRecordResponse> {
private Long nextToken;
private Long maxResults;
private String applicationId;
public GetResource4ModifyRecordRequest() {
super("BPStudio", "2021-09-31", "GetResource4ModifyRecord", "bpstudio");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
}
public Long getNextToken() {
return this.nextToken;
}
public void setNextToken(Long nextToken) {
this.nextToken = nextToken;
if(nextToken != null){
putBodyParameter("NextToken", nextToken.toString());
}
}
public Long getMaxResults() {
return this.maxResults;
}
public void setMaxResults(Long maxResults) {
this.maxResults = maxResults;
if(maxResults != null){
putBodyParameter("MaxResults", maxResults.toString());
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
@Override
public Class<GetResource4ModifyRecordResponse> getResponseClass() {
return GetResource4ModifyRecordResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetResource4ModifyRecordResponse.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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.GetResource4ModifyRecordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetResource4ModifyRecordResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private String totalCount;
private String nextToken;
private String accessDeniedDetail;
private List<Item> data;
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;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getTotalCount() {
return this.totalCount;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
public String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}
public void setAccessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
}
public List<Item> getData() {
return this.data;
}
public void setData(List<Item> data) {
this.data = data;
}
public static class Item {
private String resourceId;
private String type;
private String status;
private String modifyTime;
private String attribute;
private String error;
public String getResourceId() {
return this.resourceId;
}
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(String modifyTime) {
this.modifyTime = modifyTime;
}
public String getAttribute() {
return this.attribute;
}
public void setAttribute(String attribute) {
this.attribute = attribute;
}
public String getError() {
return this.error;
}
public void setError(String error) {
this.error = error;
}
}
@Override
public GetResource4ModifyRecordResponse getInstance(UnmarshallerContext context) {
return GetResource4ModifyRecordResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetResult4QueryInstancePrice4ModifyRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetResult4QueryInstancePrice4ModifyRequest extends RpcAcsRequest<GetResult4QueryInstancePrice4ModifyResponse> {
private String applicationId;
private String taskId;
public GetResult4QueryInstancePrice4ModifyRequest() {
super("BPStudio", "2021-09-31", "GetResult4QueryInstancePrice4Modify", "bpstudio");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
if(taskId != null){
putBodyParameter("TaskId", taskId);
}
}
@Override
public Class<GetResult4QueryInstancePrice4ModifyResponse> getResponseClass() {
return GetResult4QueryInstancePrice4ModifyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetResult4QueryInstancePrice4ModifyResponse.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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.GetResult4QueryInstancePrice4ModifyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetResult4QueryInstancePrice4ModifyResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private String accessDeniedDetail;
private Data data;
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;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}
public void setAccessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String taskId;
private String status;
private List<Item> priceList;
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public List<Item> getPriceList() {
return this.priceList;
}
public void setPriceList(List<Item> priceList) {
this.priceList = priceList;
}
public static class Item {
private String nodeType;
private Double tradeAmount;
private Double discountAmount;
private Double originalAmount;
private String priceUnit;
private String promotionName;
private String error;
public String getNodeType() {
return this.nodeType;
}
public void setNodeType(String nodeType) {
this.nodeType = nodeType;
}
public Double getTradeAmount() {
return this.tradeAmount;
}
public void setTradeAmount(Double tradeAmount) {
this.tradeAmount = tradeAmount;
}
public Double getDiscountAmount() {
return this.discountAmount;
}
public void setDiscountAmount(Double discountAmount) {
this.discountAmount = discountAmount;
}
public Double getOriginalAmount() {
return this.originalAmount;
}
public void setOriginalAmount(Double originalAmount) {
this.originalAmount = originalAmount;
}
public String getPriceUnit() {
return this.priceUnit;
}
public void setPriceUnit(String priceUnit) {
this.priceUnit = priceUnit;
}
public String getPromotionName() {
return this.promotionName;
}
public void setPromotionName(String promotionName) {
this.promotionName = promotionName;
}
public String getError() {
return this.error;
}
public void setError(String error) {
this.error = error;
}
}
}
@Override
public GetResult4QueryInstancePrice4ModifyResponse getInstance(UnmarshallerContext context) {
return GetResult4QueryInstancePrice4ModifyResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetTemplateRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetTemplateRequest extends RpcAcsRequest<GetTemplateResponse> {
private String templateId;
private String resourceGroupId;
private String region;
public GetTemplateRequest() {
super("BPStudio", "2021-09-31", "GetTemplate", "bpstudio");
setMethod(MethodType.POST);
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
if(templateId != null){
putBodyParameter("TemplateId", templateId);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public String getRegion() {
return this.region;
}
public void setRegion(String region) {
this.region = region;
if(region != null){
putBodyParameter("Region", region);
}
}
@Override
public Class<GetTemplateResponse> getResponseClass() {
return GetTemplateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetTemplateResponse.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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.GetTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetTemplateResponse extends AcsResponse {
private String message;
private String requestId;
private Integer code;
private Data data;
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 Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String description;
private String imageURL;
private String name;
private String templateId;
private String createTime;
private String resourceGroupId;
private List<Item> variables;
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getImageURL() {
return this.imageURL;
}
public void setImageURL(String imageURL) {
this.imageURL = imageURL;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
public List<Item> getVariables() {
return this.variables;
}
public void setVariables(List<Item> variables) {
this.variables = variables;
}
public static class Item {
private String attribute;
private String dataType;
private String defaultValue;
private String variable;
private String options;
public String getAttribute() {
return this.attribute;
}
public void setAttribute(String attribute) {
this.attribute = attribute;
}
public String getDataType() {
return this.dataType;
}
public void setDataType(String dataType) {
this.dataType = dataType;
}
public String getDefaultValue() {
return this.defaultValue;
}
public void setDefaultValue(String defaultValue) {
this.defaultValue = defaultValue;
}
public String getVariable() {
return this.variable;
}
public void setVariable(String variable) {
this.variable = variable;
}
public String getOptions() {
return this.options;
}
public void setOptions(String options) {
this.options = options;
}
}
}
@Override
public GetTemplateResponse getInstance(UnmarshallerContext context) {
return GetTemplateResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetTokenRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class GetTokenRequest extends RpcAcsRequest<GetTokenResponse> {
private String resourceGroupId;
public GetTokenRequest() {
super("BPStudio", "2021-09-31", "GetToken", "bpstudio");
setMethod(MethodType.POST);
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
@Override
public Class<GetTokenResponse> getResponseClass() {
return GetTokenResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/GetTokenResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.GetTokenResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetTokenResponse extends AcsResponse {
private String message;
private String requestId;
private Integer code;
private Data data;
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 Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String securityToken;
private String endpoint;
private String accessKeySecret;
private String accessKeyId;
private String bucket;
private String snapshotBucket;
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
}
public String getEndpoint() {
return this.endpoint;
}
public void setEndpoint(String endpoint) {
this.endpoint = endpoint;
}
public String getAccessKeySecret() {
return this.accessKeySecret;
}
public void setAccessKeySecret(String accessKeySecret) {
this.accessKeySecret = accessKeySecret;
}
public String getAccessKeyId() {
return this.accessKeyId;
}
public void setAccessKeyId(String accessKeyId) {
this.accessKeyId = accessKeyId;
}
public String getBucket() {
return this.bucket;
}
public void setBucket(String bucket) {
this.bucket = bucket;
}
public String getSnapshotBucket() {
return this.snapshotBucket;
}
public void setSnapshotBucket(String snapshotBucket) {
this.snapshotBucket = snapshotBucket;
}
}
@Override
public GetTokenResponse getInstance(UnmarshallerContext context) {
return GetTokenResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/InitAppFailOverRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class InitAppFailOverRequest extends RpcAcsRequest<InitAppFailOverResponse> {
private String applicationId;
public InitAppFailOverRequest() {
super("BPStudio", "2021-09-31", "InitAppFailOver", "bpstudio");
setMethod(MethodType.POST);
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
@Override
public Class<InitAppFailOverResponse> getResponseClass() {
return InitAppFailOverResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/InitAppFailOverResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.InitAppFailOverResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class InitAppFailOverResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Integer data;
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;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getData() {
return this.data;
}
public void setData(Integer data) {
this.data = data;
}
@Override
public InitAppFailOverResponse getInstance(UnmarshallerContext context) {
return InitAppFailOverResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ListApplicationRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ListApplicationRequest extends RpcAcsRequest<ListApplicationResponse> {
private String resourceGroupId;
private Integer nextToken;
private String keyword;
private String resourceId;
private Boolean showHide;
private String templateId;
private Integer maxResults;
private Long orderType;
private String status;
public ListApplicationRequest() {
super("BPStudio", "2021-09-31", "ListApplication", "bpstudio");
setMethod(MethodType.POST);
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public Integer getNextToken() {
return this.nextToken;
}
public void setNextToken(Integer nextToken) {
this.nextToken = nextToken;
if(nextToken != null){
putBodyParameter("NextToken", nextToken.toString());
}
}
public String getKeyword() {
return this.keyword;
}
public void setKeyword(String keyword) {
this.keyword = keyword;
if(keyword != null){
putBodyParameter("Keyword", keyword);
}
}
public String getResourceId() {
return this.resourceId;
}
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
if(resourceId != null){
putBodyParameter("ResourceId", resourceId);
}
}
public Boolean getShowHide() {
return this.showHide;
}
public void setShowHide(Boolean showHide) {
this.showHide = showHide;
if(showHide != null){
putBodyParameter("ShowHide", showHide.toString());
}
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
if(templateId != null){
putBodyParameter("TemplateId", templateId);
}
}
public Integer getMaxResults() {
return this.maxResults;
}
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
if(maxResults != null){
putBodyParameter("MaxResults", maxResults.toString());
}
}
public Long getOrderType() {
return this.orderType;
}
public void setOrderType(Long orderType) {
this.orderType = orderType;
if(orderType != null){
putBodyParameter("OrderType", orderType.toString());
}
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putBodyParameter("Status", status);
}
}
@Override
public Class<ListApplicationResponse> getResponseClass() {
return ListApplicationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ListApplicationResponse.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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ListApplicationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListApplicationResponse extends AcsResponse {
private Integer totalCount;
private String message;
private Integer nextToken;
private String requestId;
private Integer code;
private List<Item> data;
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Integer getNextToken() {
return this.nextToken;
}
public void setNextToken(Integer nextToken) {
this.nextToken = nextToken;
}
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 List<Item> getData() {
return this.data;
}
public void setData(List<Item> data) {
this.data = data;
}
public static class Item {
private String imageURL;
private String status;
private String applicationId;
private String name;
private String createTime;
private String resourceGroupId;
public String getImageURL() {
return this.imageURL;
}
public void setImageURL(String imageURL) {
this.imageURL = imageURL;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
}
@Override
public ListApplicationResponse getInstance(UnmarshallerContext context) {
return ListApplicationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ListFoCreatedAppsRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ListFoCreatedAppsRequest extends RpcAcsRequest<ListFoCreatedAppsResponse> {
public ListFoCreatedAppsRequest() {
super("BPStudio", "2021-09-31", "ListFoCreatedApps", "bpstudio");
setMethod(MethodType.POST);
}
@Override
public Class<ListFoCreatedAppsResponse> getResponseClass() {
return ListFoCreatedAppsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ListFoCreatedAppsResponse.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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ListFoCreatedAppsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListFoCreatedAppsResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private List<Items> data;
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;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public List<Items> getData() {
return this.data;
}
public void setData(List<Items> data) {
this.data = data;
}
public static class Items {
private String applicationId;
private String title;
private String reportUrl;
private String status;
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getReportUrl() {
return this.reportUrl;
}
public void setReportUrl(String reportUrl) {
this.reportUrl = reportUrl;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
}
@Override
public ListFoCreatedAppsResponse getInstance(UnmarshallerContext context) {
return ListFoCreatedAppsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ListTagResourcesRequest extends RpcAcsRequest<ListTagResourcesResponse> {
private List<String> resourceId;
private String clientToken;
private String resourceType;
private String nextToken;
private List<Tag> tag;
public ListTagResourcesRequest() {
super("BPStudio", "2021-09-31", "ListTagResources", "bpstudio");
setMethod(MethodType.POST);
}
public List<String> getResourceId() {
return this.resourceId;
}
public void setResourceId(List<String> resourceId) {
this.resourceId = resourceId;
if (resourceId != null) {
for (int depth1 = 0; depth1 < resourceId.size(); depth1++) {
putBodyParameter("ResourceId." + (depth1 + 1) , resourceId.get(depth1));
}
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
if(resourceType != null){
putBodyParameter("ResourceType", resourceType);
}
}
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
if(nextToken != null){
putBodyParameter("NextToken", nextToken);
}
}
public List<Tag> getTag() {
return this.tag;
}
public void setTag(List<Tag> tag) {
this.tag = tag;
if (tag != null) {
for (int depth1 = 0; depth1 < tag.size(); depth1++) {
if (tag.get(depth1) != null) {
putBodyParameter("Tag." + (depth1 + 1) + ".Value" , tag.get(depth1).getValue());
putBodyParameter("Tag." + (depth1 + 1) + ".Key" , tag.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<ListTagResourcesResponse> getResponseClass() {
return ListTagResourcesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ListTagResourcesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListTagResourcesResponse extends AcsResponse {
private String nextToken;
private String requestId;
private String code;
private String message;
private List<Item> 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 String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<Item> getTagResources() {
return this.tagResources;
}
public void setTagResources(List<Item> tagResources) {
this.tagResources = tagResources;
}
public static class Item {
private String resourceType;
private String tagValue;
private String resourceId;
private String tagKey;
public String getResourceType() {
return this.resourceType;
}
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}
public String getTagValue() {
return this.tagValue;
}
public void setTagValue(String tagValue) {
this.tagValue = tagValue;
}
public String getResourceId() {
return this.resourceId;
}
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}
public String getTagKey() {
return this.tagKey;
}
public void setTagKey(String tagKey) {
this.tagKey = tagKey;
}
}
@Override
public ListTagResourcesResponse getInstance(UnmarshallerContext context) {
return ListTagResourcesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ListTemplateRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ListTemplateRequest extends RpcAcsRequest<ListTemplateResponse> {
private String type;
private Integer tagList;
private String resourceGroupId;
private Integer nextToken;
private Integer maxResults;
private String keyword;
private Long orderType;
public ListTemplateRequest() {
super("BPStudio", "2021-09-31", "ListTemplate", "bpstudio");
setMethod(MethodType.POST);
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putBodyParameter("Type", type);
}
}
public Integer getTagList() {
return this.tagList;
}
public void setTagList(Integer tagList) {
this.tagList = tagList;
if(tagList != null){
putBodyParameter("TagList", tagList.toString());
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public Integer getNextToken() {
return this.nextToken;
}
public void setNextToken(Integer nextToken) {
this.nextToken = nextToken;
if(nextToken != null){
putBodyParameter("NextToken", nextToken.toString());
}
}
public Integer getMaxResults() {
return this.maxResults;
}
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
if(maxResults != null){
putBodyParameter("MaxResults", maxResults.toString());
}
}
public String getKeyword() {
return this.keyword;
}
public void setKeyword(String keyword) {
this.keyword = keyword;
if(keyword != null){
putBodyParameter("Keyword", keyword);
}
}
public Long getOrderType() {
return this.orderType;
}
public void setOrderType(Long orderType) {
this.orderType = orderType;
if(orderType != null){
putBodyParameter("OrderType", orderType.toString());
}
}
@Override
public Class<ListTemplateResponse> getResponseClass() {
return ListTemplateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ListTemplateResponse.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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ListTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListTemplateResponse extends AcsResponse {
private Integer totalCount;
private String message;
private Integer nextToken;
private String requestId;
private Integer code;
private List<Item> data;
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Integer getNextToken() {
return this.nextToken;
}
public void setNextToken(Integer nextToken) {
this.nextToken = nextToken;
}
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 List<Item> getData() {
return this.data;
}
public void setData(List<Item> data) {
this.data = data;
}
public static class Item {
private String imageURL;
private Integer tagId;
private String tagName;
private String name;
private String templateId;
private String createTime;
private String resourceGroupId;
public String getImageURL() {
return this.imageURL;
}
public void setImageURL(String imageURL) {
this.imageURL = imageURL;
}
public Integer getTagId() {
return this.tagId;
}
public void setTagId(Integer tagId) {
this.tagId = tagId;
}
public String getTagName() {
return this.tagName;
}
public void setTagName(String tagName) {
this.tagName = tagName;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
}
@Override
public ListTemplateResponse getInstance(UnmarshallerContext context) {
return ListTemplateResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ModifyApplicationSpecRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import java.util.Map;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ModifyApplicationSpecRequest extends RpcAcsRequest<ModifyApplicationSpecResponse> {
@SerializedName("instanceSpec")
private List<InstanceSpec> instanceSpec;
private String applicationId;
public ModifyApplicationSpecRequest() {
super("BPStudio", "2021-09-31", "ModifyApplicationSpec", "bpstudio");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
}
public List<InstanceSpec> getInstanceSpec() {
return this.instanceSpec;
}
public void setInstanceSpec(List<InstanceSpec> instanceSpec) {
this.instanceSpec = instanceSpec;
if (instanceSpec != null) {
putBodyParameter("InstanceSpec" , new Gson().toJson(instanceSpec));
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
public static class InstanceSpec {
@SerializedName("InstanceId")
private String instanceId;
@SerializedName("Configuration")
private Map<String,Object> configuration;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Map<String,Object> getConfiguration() {
return this.configuration;
}
public void setConfiguration(Map<String,Object> configuration) {
this.configuration = configuration;
}
}
@Override
public Class<ModifyApplicationSpecResponse> getResponseClass() {
return ModifyApplicationSpecResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ModifyApplicationSpecResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ModifyApplicationSpecResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyApplicationSpecResponse extends AcsResponse {
private String success;
private String code;
private String message;
private String data;
private String requestId;
private String accessDeniedDetail;
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public String getCode() {
return this.code;
}
public void setCode(String 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;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}
public void setAccessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
}
@Override
public ModifyApplicationSpecResponse getInstance(UnmarshallerContext context) {
return ModifyApplicationSpecResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/QueryInstancePrice4ModifyRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import java.util.Map;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class QueryInstancePrice4ModifyRequest extends RpcAcsRequest<QueryInstancePrice4ModifyResponse> {
@SerializedName("configuration")
private Map<String,Object> configuration;
private String instanceId;
private String applicationId;
public QueryInstancePrice4ModifyRequest() {
super("BPStudio", "2021-09-31", "QueryInstancePrice4Modify", "bpstudio");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
}
public Map<String,Object> getConfiguration() {
return this.configuration;
}
public void setConfiguration(Map<String,Object> configuration) {
this.configuration = configuration;
if (configuration != null) {
putBodyParameter("Configuration" , new Gson().toJson(configuration));
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
@Override
public Class<QueryInstancePrice4ModifyResponse> getResponseClass() {
return QueryInstancePrice4ModifyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/QueryInstancePrice4ModifyResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.QueryInstancePrice4ModifyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryInstancePrice4ModifyResponse extends AcsResponse {
private String requestId;
private String success;
private String code;
private String message;
private String data;
private String accessDeniedDetail;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public String getCode() {
return this.code;
}
public void setCode(String 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;
}
public String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}
public void setAccessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
}
@Override
public QueryInstancePrice4ModifyResponse getInstance(UnmarshallerContext context) {
return QueryInstancePrice4ModifyResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/QueryInstanceSpec4ModifyRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import java.util.Map;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class QueryInstanceSpec4ModifyRequest extends RpcAcsRequest<QueryInstanceSpec4ModifyResponse> {
private String instanceId;
private String applicationId;
@SerializedName("parameters")
private Map<String,Object> parameters;
private String methodName;
public QueryInstanceSpec4ModifyRequest() {
super("BPStudio", "2021-09-31", "QueryInstanceSpec4Modify", "bpstudio");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
public Map<String,Object> getParameters() {
return this.parameters;
}
public void setParameters(Map<String,Object> parameters) {
this.parameters = parameters;
if (parameters != null) {
putBodyParameter("Parameters" , new Gson().toJson(parameters));
}
}
public String getMethodName() {
return this.methodName;
}
public void setMethodName(String methodName) {
this.methodName = methodName;
if(methodName != null){
putBodyParameter("MethodName", methodName);
}
}
@Override
public Class<QueryInstanceSpec4ModifyResponse> getResponseClass() {
return QueryInstanceSpec4ModifyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/QueryInstanceSpec4ModifyResponse.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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.QueryInstanceSpec4ModifyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryInstanceSpec4ModifyResponse extends AcsResponse {
private Boolean success;
private String code;
private String message;
private String requestId;
private String accessDeniedDetail;
private Data data;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getCode() {
return this.code;
}
public void setCode(String 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 String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}
public void setAccessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private List<Item> optionalValues;
public List<Item> getOptionalValues() {
return this.optionalValues;
}
public void setOptionalValues(List<Item> optionalValues) {
this.optionalValues = optionalValues;
}
public static class Item {
private String label;
private String value;
private Double min;
private Double max;
private Double step;
public String getLabel() {
return this.label;
}
public void setLabel(String label) {
this.label = label;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public Double getMin() {
return this.min;
}
public void setMin(Double min) {
this.min = min;
}
public Double getMax() {
return this.max;
}
public void setMax(Double max) {
this.max = max;
}
public Double getStep() {
return this.step;
}
public void setStep(Double step) {
this.step = step;
}
}
}
@Override
public QueryInstanceSpec4ModifyResponse getInstance(UnmarshallerContext context) {
return QueryInstanceSpec4ModifyResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ReConfigApplicationRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ReConfigApplicationRequest extends RpcAcsRequest<ReConfigApplicationResponse> {
private String variables;
private String appId;
public ReConfigApplicationRequest() {
super("BPStudio", "2021-09-31", "ReConfigApplication", "bpstudio");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
}
public String getVariables() {
return this.variables;
}
public void setVariables(String variables) {
this.variables = variables;
if(variables != null){
putBodyParameter("Variables", variables);
}
}
public String getAppId() {
return this.appId;
}
public void setAppId(String appId) {
this.appId = appId;
if(appId != null){
putBodyParameter("AppId", appId);
}
}
@Override
public Class<ReConfigApplicationResponse> getResponseClass() {
return ReConfigApplicationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ReConfigApplicationResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ReConfigApplicationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ReConfigApplicationResponse extends AcsResponse {
private String requestId;
private String message;
private Integer code;
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;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
@Override
public ReConfigApplicationResponse getInstance(UnmarshallerContext context) {
return ReConfigApplicationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ReleaseApplicationRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ReleaseApplicationRequest extends RpcAcsRequest<ReleaseApplicationResponse> {
private String clientToken;
private String resourceGroupId;
private String applicationId;
public ReleaseApplicationRequest() {
super("BPStudio", "2021-09-31", "ReleaseApplication", "bpstudio");
setMethod(MethodType.POST);
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
@Override
public Class<ReleaseApplicationResponse> getResponseClass() {
return ReleaseApplicationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ReleaseApplicationResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ReleaseApplicationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ReleaseApplicationResponse extends AcsResponse {
private String message;
private String requestId;
private Long data;
private Integer 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 Long getData() {
return this.data;
}
public void setData(Long data) {
this.data = data;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
@Override
public ReleaseApplicationResponse getInstance(UnmarshallerContext context) {
return ReleaseApplicationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ValidateApplicationRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ValidateApplicationRequest extends RpcAcsRequest<ValidateApplicationResponse> {
private String clientToken;
private String resourceGroupId;
private String applicationId;
public ValidateApplicationRequest() {
super("BPStudio", "2021-09-31", "ValidateApplication", "bpstudio");
setMethod(MethodType.POST);
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putQueryParameter("ApplicationId", applicationId);
}
}
@Override
public Class<ValidateApplicationResponse> getResponseClass() {
return ValidateApplicationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ValidateApplicationResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ValidateApplicationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ValidateApplicationResponse extends AcsResponse {
private String message;
private String requestId;
private String data;
private Integer 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 String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
@Override
public ValidateApplicationResponse getInstance(UnmarshallerContext context) {
return ValidateApplicationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ValuateApplicationRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ValuateApplicationRequest extends RpcAcsRequest<ValuateApplicationResponse> {
private String clientToken;
private String resourceGroupId;
private String applicationId;
public ValuateApplicationRequest() {
super("BPStudio", "2021-09-31", "ValuateApplication", "bpstudio");
setMethod(MethodType.POST);
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putBodyParameter("ApplicationId", applicationId);
}
}
@Override
public Class<ValuateApplicationResponse> getResponseClass() {
return ValuateApplicationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ValuateApplicationResponse.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.bpstudio.model.v20210931;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ValuateApplicationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ValuateApplicationResponse extends AcsResponse {
private String message;
private String requestId;
private Long data;
private Integer 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 Long getData() {
return this.data;
}
public void setData(Long data) {
this.data = data;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
@Override
public ValuateApplicationResponse getInstance(UnmarshallerContext context) {
return ValuateApplicationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ValuateTemplateRequest.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.bpstudio.model.v20210931;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import java.util.Map;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ValuateTemplateRequest extends RpcAcsRequest<ValuateTemplateResponse> {
@SerializedName("variables")
private Map<String,Object> variables;
private String clientToken;
@SerializedName("instances")
private List<Instances> instances;
private String templateId;
private String resourceGroupId;
private String areaId;
public ValuateTemplateRequest() {
super("BPStudio", "2021-09-31", "ValuateTemplate", "bpstudio");
setMethod(MethodType.POST);
}
public Map<String,Object> getVariables() {
return this.variables;
}
public void setVariables(Map<String,Object> variables) {
this.variables = variables;
if (variables != null) {
putBodyParameter("Variables" , new Gson().toJson(variables));
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public List<Instances> getInstances() {
return this.instances;
}
public void setInstances(List<Instances> instances) {
this.instances = instances;
if (instances != null) {
putBodyParameter("Instances" , new Gson().toJson(instances));
}
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
if(templateId != null){
putBodyParameter("TemplateId", templateId);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
if(areaId != null){
putBodyParameter("AreaId", areaId);
}
}
public static class Instances {
@SerializedName("NodeName")
private String nodeName;
@SerializedName("NodeType")
private String nodeType;
@SerializedName("Id")
private String id;
public String getNodeName() {
return this.nodeName;
}
public void setNodeName(String nodeName) {
this.nodeName = nodeName;
}
public String getNodeType() {
return this.nodeType;
}
public void setNodeType(String nodeType) {
this.nodeType = nodeType;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
}
@Override
public Class<ValuateTemplateResponse> getResponseClass() {
return ValuateTemplateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/model/v20210931/ValuateTemplateResponse.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.bpstudio.model.v20210931;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.bpstudio.transform.v20210931.ValuateTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ValuateTemplateResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private Data data;
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 String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private List<Item> resourceList;
public List<Item> getResourceList() {
return this.resourceList;
}
public void setResourceList(List<Item> resourceList) {
this.resourceList = resourceList;
}
public static class Item {
private String nodeType;
private String error;
private Double tradePrice;
private Double discountAmount;
private Double originalPrice;
private String promotionName;
private String priceUnit;
private List<Item1> priceList;
public String getNodeType() {
return this.nodeType;
}
public void setNodeType(String nodeType) {
this.nodeType = nodeType;
}
public String getError() {
return this.error;
}
public void setError(String error) {
this.error = error;
}
public Double getTradePrice() {
return this.tradePrice;
}
public void setTradePrice(Double tradePrice) {
this.tradePrice = tradePrice;
}
public Double getDiscountAmount() {
return this.discountAmount;
}
public void setDiscountAmount(Double discountAmount) {
this.discountAmount = discountAmount;
}
public Double getOriginalPrice() {
return this.originalPrice;
}
public void setOriginalPrice(Double originalPrice) {
this.originalPrice = originalPrice;
}
public String getPromotionName() {
return this.promotionName;
}
public void setPromotionName(String promotionName) {
this.promotionName = promotionName;
}
public String getPriceUnit() {
return this.priceUnit;
}
public void setPriceUnit(String priceUnit) {
this.priceUnit = priceUnit;
}
public List<Item1> getPriceList() {
return this.priceList;
}
public void setPriceList(List<Item1> priceList) {
this.priceList = priceList;
}
public static class Item1 {
private String nodeType;
private String resourceId;
private String error;
private Float tradePrice;
private Float discountAmount;
private Float originalPrice;
private String promotionName;
private String priceUnit;
private String type;
public String getNodeType() {
return this.nodeType;
}
public void setNodeType(String nodeType) {
this.nodeType = nodeType;
}
public String getResourceId() {
return this.resourceId;
}
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}
public String getError() {
return this.error;
}
public void setError(String error) {
this.error = error;
}
public Float getTradePrice() {
return this.tradePrice;
}
public void setTradePrice(Float tradePrice) {
this.tradePrice = tradePrice;
}
public Float getDiscountAmount() {
return this.discountAmount;
}
public void setDiscountAmount(Float discountAmount) {
this.discountAmount = discountAmount;
}
public Float getOriginalPrice() {
return this.originalPrice;
}
public void setOriginalPrice(Float originalPrice) {
this.originalPrice = originalPrice;
}
public String getPromotionName() {
return this.promotionName;
}
public void setPromotionName(String promotionName) {
this.promotionName = promotionName;
}
public String getPriceUnit() {
return this.priceUnit;
}
public void setPriceUnit(String priceUnit) {
this.priceUnit = priceUnit;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
}
}
@Override
public ValuateTemplateResponse getInstance(UnmarshallerContext context) {
return ValuateTemplateResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform/v20210931/AppFailBackResponseUnmarshaller.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.bpstudio.transform.v20210931;
import com.aliyuncs.bpstudio.model.v20210931.AppFailBackResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AppFailBackResponseUnmarshaller {
public static AppFailBackResponse unmarshall(AppFailBackResponse appFailBackResponse, UnmarshallerContext _ctx) {
appFailBackResponse.setRequestId(_ctx.stringValue("AppFailBackResponse.RequestId"));
appFailBackResponse.setMessage(_ctx.stringValue("AppFailBackResponse.Message"));
appFailBackResponse.setCode(_ctx.stringValue("AppFailBackResponse.Code"));
appFailBackResponse.setData(_ctx.integerValue("AppFailBackResponse.Data"));
return appFailBackResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform/v20210931/AppFailOverResponseUnmarshaller.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.bpstudio.transform.v20210931;
import com.aliyuncs.bpstudio.model.v20210931.AppFailOverResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AppFailOverResponseUnmarshaller {
public static AppFailOverResponse unmarshall(AppFailOverResponse appFailOverResponse, UnmarshallerContext _ctx) {
appFailOverResponse.setRequestId(_ctx.stringValue("AppFailOverResponse.RequestId"));
appFailOverResponse.setMessage(_ctx.stringValue("AppFailOverResponse.Message"));
appFailOverResponse.setCode(_ctx.stringValue("AppFailOverResponse.Code"));
appFailOverResponse.setData(_ctx.integerValue("AppFailOverResponse.Data"));
return appFailOverResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform/v20210931/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.bpstudio.transform.v20210931;
import com.aliyuncs.bpstudio.model.v20210931.ChangeResourceGroupResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ChangeResourceGroupResponseUnmarshaller {
public static ChangeResourceGroupResponse unmarshall(ChangeResourceGroupResponse changeResourceGroupResponse, UnmarshallerContext _ctx) {
changeResourceGroupResponse.setRequestId(_ctx.stringValue("ChangeResourceGroupResponse.RequestId"));
changeResourceGroupResponse.setData(_ctx.stringValue("ChangeResourceGroupResponse.Data"));
changeResourceGroupResponse.setMessage(_ctx.stringValue("ChangeResourceGroupResponse.Message"));
changeResourceGroupResponse.setCode(_ctx.longValue("ChangeResourceGroupResponse.Code"));
return changeResourceGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform/v20210931/CreateApplicationResponseUnmarshaller.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.bpstudio.transform.v20210931;
import com.aliyuncs.bpstudio.model.v20210931.CreateApplicationResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateApplicationResponseUnmarshaller {
public static CreateApplicationResponse unmarshall(CreateApplicationResponse createApplicationResponse, UnmarshallerContext _ctx) {
createApplicationResponse.setRequestId(_ctx.stringValue("CreateApplicationResponse.RequestId"));
createApplicationResponse.setMessage(_ctx.stringValue("CreateApplicationResponse.Message"));
createApplicationResponse.setData(_ctx.stringValue("CreateApplicationResponse.Data"));
createApplicationResponse.setCode(_ctx.integerValue("CreateApplicationResponse.Code"));
return createApplicationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform/v20210931/DeleteApplicationResponseUnmarshaller.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.bpstudio.transform.v20210931;
import com.aliyuncs.bpstudio.model.v20210931.DeleteApplicationResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteApplicationResponseUnmarshaller {
public static DeleteApplicationResponse unmarshall(DeleteApplicationResponse deleteApplicationResponse, UnmarshallerContext _ctx) {
deleteApplicationResponse.setRequestId(_ctx.stringValue("DeleteApplicationResponse.RequestId"));
deleteApplicationResponse.setMessage(_ctx.stringValue("DeleteApplicationResponse.Message"));
deleteApplicationResponse.setCode(_ctx.integerValue("DeleteApplicationResponse.Code"));
return deleteApplicationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform/v20210931/DeployApplicationResponseUnmarshaller.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.bpstudio.transform.v20210931;
import com.aliyuncs.bpstudio.model.v20210931.DeployApplicationResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeployApplicationResponseUnmarshaller {
public static DeployApplicationResponse unmarshall(DeployApplicationResponse deployApplicationResponse, UnmarshallerContext _ctx) {
deployApplicationResponse.setRequestId(_ctx.stringValue("DeployApplicationResponse.RequestId"));
deployApplicationResponse.setMessage(_ctx.stringValue("DeployApplicationResponse.Message"));
deployApplicationResponse.setData(_ctx.longValue("DeployApplicationResponse.Data"));
deployApplicationResponse.setCode(_ctx.integerValue("DeployApplicationResponse.Code"));
return deployApplicationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform/v20210931/ExecuteOperationASyncResponseUnmarshaller.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.bpstudio.transform.v20210931;
import com.aliyuncs.bpstudio.model.v20210931.ExecuteOperationASyncResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ExecuteOperationASyncResponseUnmarshaller {
public static ExecuteOperationASyncResponse unmarshall(ExecuteOperationASyncResponse executeOperationASyncResponse, UnmarshallerContext _ctx) {
executeOperationASyncResponse.setRequestId(_ctx.stringValue("ExecuteOperationASyncResponse.RequestId"));
executeOperationASyncResponse.setMessage(_ctx.stringValue("ExecuteOperationASyncResponse.Message"));
executeOperationASyncResponse.setData(_ctx.stringValue("ExecuteOperationASyncResponse.Data"));
executeOperationASyncResponse.setCode(_ctx.integerValue("ExecuteOperationASyncResponse.Code"));
return executeOperationASyncResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform/v20210931/ExecuteOperationSyncResponseUnmarshaller.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.bpstudio.transform.v20210931;
import com.aliyuncs.bpstudio.model.v20210931.ExecuteOperationSyncResponse;
import com.aliyuncs.bpstudio.model.v20210931.ExecuteOperationSyncResponse.Data;
import com.aliyuncs.transform.UnmarshallerContext;
public class ExecuteOperationSyncResponseUnmarshaller {
public static ExecuteOperationSyncResponse unmarshall(ExecuteOperationSyncResponse executeOperationSyncResponse, UnmarshallerContext _ctx) {
executeOperationSyncResponse.setRequestId(_ctx.stringValue("ExecuteOperationSyncResponse.RequestId"));
executeOperationSyncResponse.setMessage(_ctx.stringValue("ExecuteOperationSyncResponse.Message"));
executeOperationSyncResponse.setCode(_ctx.integerValue("ExecuteOperationSyncResponse.Code"));
Data data = new Data();
data.setOperationId(_ctx.stringValue("ExecuteOperationSyncResponse.Data.OperationId"));
data.setStatus(_ctx.stringValue("ExecuteOperationSyncResponse.Data.Status"));
data.setMessage(_ctx.stringValue("ExecuteOperationSyncResponse.Data.Message"));
data.setArguments(_ctx.stringValue("ExecuteOperationSyncResponse.Data.Arguments"));
executeOperationSyncResponse.setData(data);
return executeOperationSyncResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform
|
java-sources/com/aliyun/aliyun-java-sdk-bpstudio/2.0.17/com/aliyuncs/bpstudio/transform/v20210931/GetApplicationResponseUnmarshaller.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.bpstudio.transform.v20210931;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.bpstudio.model.v20210931.GetApplicationResponse;
import com.aliyuncs.bpstudio.model.v20210931.GetApplicationResponse.Data;
import com.aliyuncs.bpstudio.model.v20210931.GetApplicationResponse.Data.Item;
import com.aliyuncs.bpstudio.model.v20210931.GetApplicationResponse.Data.Item1;
import com.aliyuncs.bpstudio.model.v20210931.GetApplicationResponse.Data.Item2;
import com.aliyuncs.bpstudio.model.v20210931.GetApplicationResponse.Data.Item3;
import com.aliyuncs.bpstudio.model.v20210931.GetApplicationResponse.Data.Item3.Item4;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetApplicationResponseUnmarshaller {
public static GetApplicationResponse unmarshall(GetApplicationResponse getApplicationResponse, UnmarshallerContext _ctx) {
getApplicationResponse.setRequestId(_ctx.stringValue("GetApplicationResponse.RequestId"));
getApplicationResponse.setMessage(_ctx.stringValue("GetApplicationResponse.Message"));
getApplicationResponse.setCode(_ctx.stringValue("GetApplicationResponse.Code"));
Data data = new Data();
data.setDescription(_ctx.stringValue("GetApplicationResponse.Data.Description"));
data.setImageURL(_ctx.stringValue("GetApplicationResponse.Data.ImageURL"));
data.setApplicationId(_ctx.stringValue("GetApplicationResponse.Data.ApplicationId"));
data.setName(_ctx.stringValue("GetApplicationResponse.Data.Name"));
data.setTemplateId(_ctx.stringValue("GetApplicationResponse.Data.TemplateId"));
data.setCreateTime(_ctx.stringValue("GetApplicationResponse.Data.CreateTime"));
data.setResourceGroupId(_ctx.stringValue("GetApplicationResponse.Data.ResourceGroupId"));
data.setStatus(_ctx.stringValue("GetApplicationResponse.Data.Status"));
data.setError(_ctx.stringValue("GetApplicationResponse.Data.Error"));
data.setDeployPercent(_ctx.doubleValue("GetApplicationResponse.Data.DeployPercent"));
List<Item> priceList = new ArrayList<Item>();
for (int i = 0; i < _ctx.lengthValue("GetApplicationResponse.Data.PriceList.Length"); i++) {
Item item = new Item();
item.setResourceCode(_ctx.stringValue("GetApplicationResponse.Data.PriceList["+ i +"].ResourceCode"));
item.setInstanceName(_ctx.stringValue("GetApplicationResponse.Data.PriceList["+ i +"].InstanceName"));
item.setOriginalPrice(_ctx.doubleValue("GetApplicationResponse.Data.PriceList["+ i +"].OriginalPrice"));
item.setOnePrice(_ctx.doubleValue("GetApplicationResponse.Data.PriceList["+ i +"].OnePrice"));
item.setPeriod(_ctx.integerValue("GetApplicationResponse.Data.PriceList["+ i +"].Period"));
item.setCount(_ctx.integerValue("GetApplicationResponse.Data.PriceList["+ i +"].Count"));
item.setPriceUnit(_ctx.stringValue("GetApplicationResponse.Data.PriceList["+ i +"].PriceUnit"));
item.setPrice(_ctx.doubleValue("GetApplicationResponse.Data.PriceList["+ i +"].Price"));
item.setChargeType(_ctx.stringValue("GetApplicationResponse.Data.PriceList["+ i +"].ChargeType"));
item.setRegion(_ctx.stringValue("GetApplicationResponse.Data.PriceList["+ i +"].Region"));
item.setSpecification(_ctx.stringValue("GetApplicationResponse.Data.PriceList["+ i +"].Specification"));
item.setLifecycle(_ctx.stringValue("GetApplicationResponse.Data.PriceList["+ i +"].Lifecycle"));
item.setRemark(_ctx.stringValue("GetApplicationResponse.Data.PriceList["+ i +"].Remark"));
item.setType(_ctx.stringValue("GetApplicationResponse.Data.PriceList["+ i +"].type"));
priceList.add(item);
}
data.setPriceList(priceList);
List<Item1> checklist = new ArrayList<Item1>();
for (int i = 0; i < _ctx.lengthValue("GetApplicationResponse.Data.Checklist.Length"); i++) {
Item1 item1 = new Item1();
item1.setResourceCode(_ctx.stringValue("GetApplicationResponse.Data.Checklist["+ i +"].ResourceCode"));
item1.setResourceName(_ctx.stringValue("GetApplicationResponse.Data.Checklist["+ i +"].ResourceName"));
item1.setRegion(_ctx.stringValue("GetApplicationResponse.Data.Checklist["+ i +"].Region"));
item1.setResult(_ctx.stringValue("GetApplicationResponse.Data.Checklist["+ i +"].Result"));
item1.setRemark(_ctx.stringValue("GetApplicationResponse.Data.Checklist["+ i +"].Remark"));
item1.setSpecification(_ctx.stringValue("GetApplicationResponse.Data.Checklist["+ i +"].Specification"));
item1.setLifecycle(_ctx.stringValue("GetApplicationResponse.Data.Checklist["+ i +"].Lifecycle"));
checklist.add(item1);
}
data.setChecklist(checklist);
List<Item2> resourceList = new ArrayList<Item2>();
for (int i = 0; i < _ctx.lengthValue("GetApplicationResponse.Data.ResourceList.Length"); i++) {
Item2 item2 = new Item2();
item2.setStatus(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].Status"));
item2.setResourceCode(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].ResourceCode"));
item2.setResourceName(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].ResourceName"));
item2.setResourceId(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].ResourceId"));
item2.setChargeType(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].ChargeType"));
item2.setResourceType(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].ResourceType"));
item2.setRemark(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].Remark"));
item2.setLifecycle(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].Lifecycle"));
item2.setNodeLabel(_ctx.stringValue("GetApplicationResponse.Data.ResourceList["+ i +"].NodeLabel"));
resourceList.add(item2);
}
data.setResourceList(resourceList);
List<Item3> complianceList = new ArrayList<Item3>();
for (int i = 0; i < _ctx.lengthValue("GetApplicationResponse.Data.ComplianceList.Length"); i++) {
Item3 item3 = new Item3();
item3.setResourceName(_ctx.stringValue("GetApplicationResponse.Data.ComplianceList["+ i +"].ResourceName"));
item3.setResourceCode(_ctx.stringValue("GetApplicationResponse.Data.ComplianceList["+ i +"].ResourceCode"));
List<Item4> rules = new ArrayList<Item4>();
for (int j = 0; j < _ctx.lengthValue("GetApplicationResponse.Data.ComplianceList["+ i +"].Rules.Length"); j++) {
Item4 item4 = new Item4();
item4.setRuleId(_ctx.stringValue("GetApplicationResponse.Data.ComplianceList["+ i +"].Rules["+ j +"].ruleId"));
item4.setRuleDetail(_ctx.stringValue("GetApplicationResponse.Data.ComplianceList["+ i +"].Rules["+ j +"].ruleDetail"));
rules.add(item4);
}
item3.setRules(rules);
complianceList.add(item3);
}
data.setComplianceList(complianceList);
getApplicationResponse.setData(data);
return getApplicationResponse;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.