Skip to content

Commit b11d08c

Browse files
committed
RabbitMQMetaSourceTask add InnerNameSuffix param.
1 parent ac6a21b commit b11d08c

File tree

38 files changed

+23201
-7935
lines changed

38 files changed

+23201
-7935
lines changed

aliyun-java-sdk-eventbridge/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-10-31 Version: 1.0.13
2+
- RabbitMQMetaSourceTask add InnerNameSuffix param.
3+
14
2024-03-14 Version: 1.0.12
25
- Fixed bugs for PauseEventStreaming and DeleteEventStreaming
36

aliyun-java-sdk-eventbridge/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-eventbridge</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.12</version>
7+
<version>1.0.13</version>
88
<name>aliyun-java-sdk-eventbridge</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -92,7 +92,7 @@ http://www.aliyun.com</description>
9292
<plugin>
9393
<groupId>org.apache.maven.plugins</groupId>
9494
<artifactId>maven-gpg-plugin</artifactId>
95-
<version>1.5</version>
95+
<version>3.1.0</version>
9696
<executions>
9797
<execution>
9898
<id>sign-artifacts</id>
@@ -104,14 +104,14 @@ http://www.aliyun.com</description>
104104
</executions>
105105
</plugin>
106106
<plugin>
107-
<groupId>org.sonatype.plugins</groupId>
108-
<artifactId>nexus-staging-maven-plugin</artifactId>
109-
<version>1.6.3</version>
107+
<groupId>org.sonatype.central</groupId>
108+
<artifactId>central-publishing-maven-plugin</artifactId>
109+
<version>0.8.0</version>
110110
<extensions>true</extensions>
111111
<configuration>
112-
<serverId>sonatype-nexus-staging</serverId>
113-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
114-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
112+
<publishingServerId>central</publishingServerId>
113+
<autoPublish>true</autoPublish>
114+
<waitUntil>published</waitUntil>
115115
</configuration>
116116
</plugin>
117117
</plugins>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.eventbridge.model.v20200401;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CheckServiceLinkedRoleForProductRequest extends RpcAcsRequest<CheckServiceLinkedRoleForProductResponse> {
26+
27+
28+
private String productName;
29+
public CheckServiceLinkedRoleForProductRequest() {
30+
super("eventbridge", "2020-04-01", "CheckServiceLinkedRoleForProduct");
31+
setProtocol(ProtocolType.HTTPS);
32+
setMethod(MethodType.POST);
33+
}
34+
35+
public String getProductName() {
36+
return this.productName;
37+
}
38+
39+
public void setProductName(String productName) {
40+
this.productName = productName;
41+
if(productName != null){
42+
putQueryParameter("ProductName", productName);
43+
}
44+
}
45+
46+
@Override
47+
public Class<CheckServiceLinkedRoleForProductResponse> getResponseClass() {
48+
return CheckServiceLinkedRoleForProductResponse.class;
49+
}
50+
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.eventbridge.model.v20200401;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.eventbridge.transform.v20200401.CheckServiceLinkedRoleForProductResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CheckServiceLinkedRoleForProductResponse extends AcsResponse {
26+
27+
private String message;
28+
29+
private String requestId;
30+
31+
private String code;
32+
33+
private Boolean success;
34+
35+
private Data data;
36+
37+
public String getMessage() {
38+
return this.message;
39+
}
40+
41+
public void setMessage(String message) {
42+
this.message = message;
43+
}
44+
45+
public String getRequestId() {
46+
return this.requestId;
47+
}
48+
49+
public void setRequestId(String requestId) {
50+
this.requestId = requestId;
51+
}
52+
53+
public String getCode() {
54+
return this.code;
55+
}
56+
57+
public void setCode(String code) {
58+
this.code = code;
59+
}
60+
61+
public Boolean getSuccess() {
62+
return this.success;
63+
}
64+
65+
public void setSuccess(Boolean success) {
66+
this.success = success;
67+
}
68+
69+
public Data getData() {
70+
return this.data;
71+
}
72+
73+
public void setData(Data data) {
74+
this.data = data;
75+
}
76+
77+
public static class Data {
78+
79+
private String stsRoleName;
80+
81+
private String stsRoleAuthURL;
82+
83+
private Boolean checkPass;
84+
85+
public String getStsRoleName() {
86+
return this.stsRoleName;
87+
}
88+
89+
public void setStsRoleName(String stsRoleName) {
90+
this.stsRoleName = stsRoleName;
91+
}
92+
93+
public String getStsRoleAuthURL() {
94+
return this.stsRoleAuthURL;
95+
}
96+
97+
public void setStsRoleAuthURL(String stsRoleAuthURL) {
98+
this.stsRoleAuthURL = stsRoleAuthURL;
99+
}
100+
101+
public Boolean getCheckPass() {
102+
return this.checkPass;
103+
}
104+
105+
public void setCheckPass(Boolean checkPass) {
106+
this.checkPass = checkPass;
107+
}
108+
}
109+
110+
@Override
111+
public CheckServiceLinkedRoleForProductResponse getInstance(UnmarshallerContext context) {
112+
return CheckServiceLinkedRoleForProductResponseUnmarshaller.unmarshall(this, context);
113+
}
114+
115+
@Override
116+
public boolean checkShowJsonItemName() {
117+
return false;
118+
}
119+
}

aliyun-java-sdk-eventbridge/src/main/java/com/aliyuncs/eventbridge/model/v20200401/CreateApiDestinationRequest.java

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -27,30 +27,19 @@
2727
public class CreateApiDestinationRequest extends RpcAcsRequest<CreateApiDestinationResponse> {
2828

2929

30-
private String connectionName;
31-
3230
private String description;
3331

34-
@SerializedName("httpApiParameters")
35-
private HttpApiParameters httpApiParameters;
32+
private String apiDestinationName;
3633

37-
private String apiDestinationName;
34+
private String connectionName;
35+
36+
@SerializedName("httpApiParameters")
37+
private HttpApiParameters httpApiParameters;
3838
public CreateApiDestinationRequest() {
3939
super("eventbridge", "2020-04-01", "CreateApiDestination");
4040
setMethod(MethodType.POST);
4141
}
4242

43-
public String getConnectionName() {
44-
return this.connectionName;
45-
}
46-
47-
public void setConnectionName(String connectionName) {
48-
this.connectionName = connectionName;
49-
if(connectionName != null){
50-
putQueryParameter("ConnectionName", connectionName);
51-
}
52-
}
53-
5443
public String getDescription() {
5544
return this.description;
5645
}
@@ -62,17 +51,6 @@ public void setDescription(String description) {
6251
}
6352
}
6453

65-
public HttpApiParameters getHttpApiParameters() {
66-
return this.httpApiParameters;
67-
}
68-
69-
public void setHttpApiParameters(HttpApiParameters httpApiParameters) {
70-
this.httpApiParameters = httpApiParameters;
71-
if (httpApiParameters != null) {
72-
putQueryParameter("HttpApiParameters" , new Gson().toJson(httpApiParameters));
73-
}
74-
}
75-
7654
public String getApiDestinationName() {
7755
return this.apiDestinationName;
7856
}
@@ -84,6 +62,28 @@ public void setApiDestinationName(String apiDestinationName) {
8462
}
8563
}
8664

65+
public String getConnectionName() {
66+
return this.connectionName;
67+
}
68+
69+
public void setConnectionName(String connectionName) {
70+
this.connectionName = connectionName;
71+
if(connectionName != null){
72+
putQueryParameter("ConnectionName", connectionName);
73+
}
74+
}
75+
76+
public HttpApiParameters getHttpApiParameters() {
77+
return this.httpApiParameters;
78+
}
79+
80+
public void setHttpApiParameters(HttpApiParameters httpApiParameters) {
81+
this.httpApiParameters = httpApiParameters;
82+
if (httpApiParameters != null) {
83+
putQueryParameter("HttpApiParameters" , new Gson().toJson(httpApiParameters));
84+
}
85+
}
86+
8787
public static class HttpApiParameters {
8888

8989
@SerializedName("Endpoint")

0 commit comments

Comments
 (0)