-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extending IsDisplayPool Filed For QueryBindingDetails.
- Loading branch information
Showing
61 changed files
with
3,677 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
173 changes: 173 additions & 0 deletions
173
...-sdk-dyplsapi/src/main/java/com/aliyuncs/dyplsapi/model/v20170525/BindAXBCallRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
/* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.aliyuncs.dyplsapi.model.v20170525; | ||
|
||
import com.aliyuncs.RpcAcsRequest; | ||
import com.aliyuncs.http.ProtocolType; | ||
import com.aliyuncs.http.MethodType; | ||
import com.aliyuncs.dyplsapi.Endpoint; | ||
|
||
/** | ||
* @author auto create | ||
* @version | ||
*/ | ||
public class BindAXBCallRequest extends RpcAcsRequest<BindAXBCallResponse> { | ||
|
||
|
||
private Long resourceOwnerId; | ||
|
||
private Long callerParentId; | ||
|
||
private String reqId; | ||
|
||
private String telA; | ||
|
||
private String userData; | ||
|
||
private String customerPoolKey; | ||
|
||
private String resourceOwnerAccount; | ||
|
||
private Long ownerId; | ||
|
||
private String authId; | ||
|
||
private Long expiration; | ||
public BindAXBCallRequest() { | ||
super("Dyplsapi", "2017-05-25", "BindAXBCall", "dypls"); | ||
setProtocol(ProtocolType.HTTPS); | ||
setMethod(MethodType.POST); | ||
try { | ||
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); | ||
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); | ||
} catch (Exception e) {} | ||
} | ||
|
||
public Long getResourceOwnerId() { | ||
return this.resourceOwnerId; | ||
} | ||
|
||
public void setResourceOwnerId(Long resourceOwnerId) { | ||
this.resourceOwnerId = resourceOwnerId; | ||
if(resourceOwnerId != null){ | ||
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString()); | ||
} | ||
} | ||
|
||
public Long getCallerParentId() { | ||
return this.callerParentId; | ||
} | ||
|
||
public void setCallerParentId(Long callerParentId) { | ||
this.callerParentId = callerParentId; | ||
if(callerParentId != null){ | ||
putQueryParameter("CallerParentId", callerParentId.toString()); | ||
} | ||
} | ||
|
||
public String getReqId() { | ||
return this.reqId; | ||
} | ||
|
||
public void setReqId(String reqId) { | ||
this.reqId = reqId; | ||
if(reqId != null){ | ||
putQueryParameter("ReqId", reqId); | ||
} | ||
} | ||
|
||
public String getTelA() { | ||
return this.telA; | ||
} | ||
|
||
public void setTelA(String telA) { | ||
this.telA = telA; | ||
if(telA != null){ | ||
putQueryParameter("TelA", telA); | ||
} | ||
} | ||
|
||
public String getUserData() { | ||
return this.userData; | ||
} | ||
|
||
public void setUserData(String userData) { | ||
this.userData = userData; | ||
if(userData != null){ | ||
putQueryParameter("UserData", userData); | ||
} | ||
} | ||
|
||
public String getCustomerPoolKey() { | ||
return this.customerPoolKey; | ||
} | ||
|
||
public void setCustomerPoolKey(String customerPoolKey) { | ||
this.customerPoolKey = customerPoolKey; | ||
if(customerPoolKey != null){ | ||
putQueryParameter("CustomerPoolKey", customerPoolKey); | ||
} | ||
} | ||
|
||
public String getResourceOwnerAccount() { | ||
return this.resourceOwnerAccount; | ||
} | ||
|
||
public void setResourceOwnerAccount(String resourceOwnerAccount) { | ||
this.resourceOwnerAccount = resourceOwnerAccount; | ||
if(resourceOwnerAccount != null){ | ||
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount); | ||
} | ||
} | ||
|
||
public Long getOwnerId() { | ||
return this.ownerId; | ||
} | ||
|
||
public void setOwnerId(Long ownerId) { | ||
this.ownerId = ownerId; | ||
if(ownerId != null){ | ||
putQueryParameter("OwnerId", ownerId.toString()); | ||
} | ||
} | ||
|
||
public String getAuthId() { | ||
return this.authId; | ||
} | ||
|
||
public void setAuthId(String authId) { | ||
this.authId = authId; | ||
if(authId != null){ | ||
putQueryParameter("AuthId", authId); | ||
} | ||
} | ||
|
||
public Long getExpiration() { | ||
return this.expiration; | ||
} | ||
|
||
public void setExpiration(Long expiration) { | ||
this.expiration = expiration; | ||
if(expiration != null){ | ||
putQueryParameter("Expiration", expiration.toString()); | ||
} | ||
} | ||
|
||
@Override | ||
public Class<BindAXBCallResponse> getResponseClass() { | ||
return BindAXBCallResponse.class; | ||
} | ||
|
||
} |
99 changes: 99 additions & 0 deletions
99
...sdk-dyplsapi/src/main/java/com/aliyuncs/dyplsapi/model/v20170525/BindAXBCallResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.aliyuncs.dyplsapi.model.v20170525; | ||
|
||
import com.aliyuncs.AcsResponse; | ||
import com.aliyuncs.dyplsapi.transform.v20170525.BindAXBCallResponseUnmarshaller; | ||
import com.aliyuncs.transform.UnmarshallerContext; | ||
|
||
/** | ||
* @author auto create | ||
* @version | ||
*/ | ||
public class BindAXBCallResponse extends AcsResponse { | ||
|
||
private String accessDeniedDetail; | ||
|
||
private String message; | ||
|
||
private String code; | ||
|
||
private Boolean success; | ||
|
||
private Data data; | ||
|
||
public String getAccessDeniedDetail() { | ||
return this.accessDeniedDetail; | ||
} | ||
|
||
public void setAccessDeniedDetail(String accessDeniedDetail) { | ||
this.accessDeniedDetail = accessDeniedDetail; | ||
} | ||
|
||
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 Boolean getSuccess() { | ||
return this.success; | ||
} | ||
|
||
public void setSuccess(Boolean success) { | ||
this.success = success; | ||
} | ||
|
||
public Data getData() { | ||
return this.data; | ||
} | ||
|
||
public void setData(Data data) { | ||
this.data = data; | ||
} | ||
|
||
public static class Data { | ||
|
||
private String bindId; | ||
|
||
public String getBindId() { | ||
return this.bindId; | ||
} | ||
|
||
public void setBindId(String bindId) { | ||
this.bindId = bindId; | ||
} | ||
} | ||
|
||
@Override | ||
public BindAXBCallResponse getInstance(UnmarshallerContext context) { | ||
return BindAXBCallResponseUnmarshaller.unmarshall(this, context); | ||
} | ||
|
||
@Override | ||
public boolean checkShowJsonItemName() { | ||
return false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.