Skip to content

Commit

Permalink
Extending IsDisplayPool Filed For QueryBindingDetails.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Nov 13, 2024
1 parent 5ca24de commit 31872ba
Show file tree
Hide file tree
Showing 61 changed files with 3,677 additions and 33 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-dyplsapi/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-11-13 Version: 1.3.6
- Extending IsDisplayPool Filed For QueryBindingDetails.

2023-05-04 Version: 1.3.5
- Add new API.

Expand Down
7 changes: 3 additions & 4 deletions aliyun-java-sdk-dyplsapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-dyplsapi</artifactId>
<packaging>jar</packaging>
<version>1.3.5</version>
<version>1.3.6</version>
<name>aliyun-java-sdk-dyplsapi</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand All @@ -27,7 +27,7 @@ http://www.aliyun.com</description>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-core</artifactId>
<optional>true</optional>
<version>[4.4.9,5.0.0)</version>
<version>[4.3.2,5.0.0)</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down Expand Up @@ -83,10 +83,9 @@ http://www.aliyun.com</description>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<version>2.8</version>
<configuration>
<encoding>UTF-8</encoding>
<doclint>none</doclint>
</configuration>
</plugin>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class AddAxnTrackNoRequest extends RpcAcsRequest<AddAxnTrackNoResponse> {

private String poolKey;
public AddAxnTrackNoRequest() {
super("Dyplsapi", "2017-05-25", "AddAxnTrackNo");
super("Dyplsapi", "2017-05-25", "AddAxnTrackNo", "dypls");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class AddSecretBlacklistRequest extends RpcAcsRequest<AddSecretBlacklistR

private String wayControl;
public AddSecretBlacklistRequest() {
super("Dyplsapi", "2017-05-25", "AddSecretBlacklist");
super("Dyplsapi", "2017-05-25", "AddSecretBlacklist", "dypls");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
Expand Down
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;
}

}
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;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class BindAxbRequest extends RpcAcsRequest<BindAxbResponse> {

private String callRestrict;
public BindAxbRequest() {
super("Dyplsapi", "2017-05-25", "BindAxb");
super("Dyplsapi", "2017-05-25", "BindAxb", "dypls");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class BindAxgRequest extends RpcAcsRequest<BindAxgResponse> {

private String callRestrict;
public BindAxgRequest() {
super("Dyplsapi", "2017-05-25", "BindAxg");
super("Dyplsapi", "2017-05-25", "BindAxg", "dypls");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ public class BindAxnExtensionRequest extends RpcAcsRequest<BindAxnExtensionRespo

private String outOrderId;

private String extend;

private String poolKey;

private String expiration;
Expand All @@ -61,7 +63,7 @@ public class BindAxnExtensionRequest extends RpcAcsRequest<BindAxnExtensionRespo

private String callRestrict;
public BindAxnExtensionRequest() {
super("Dyplsapi", "2017-05-25", "BindAxnExtension");
super("Dyplsapi", "2017-05-25", "BindAxnExtension", "dypls");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
Expand Down Expand Up @@ -201,6 +203,17 @@ public void setOutOrderId(String outOrderId) {
}
}

public String getExtend() {
return this.extend;
}

public void setExtend(String extend) {
this.extend = extend;
if(extend != null){
putQueryParameter("Extend", extend);
}
}

public String getPoolKey() {
return this.poolKey;
}
Expand Down
Loading

0 comments on commit 31872ba

Please sign in to comment.