-
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.
- Loading branch information
Showing
29 changed files
with
1,615 additions
and
25 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
51 changes: 51 additions & 0 deletions
51
.../java/com/aliyuncs/quickbi_public/model/v20220101/GetDataSourceConnectionInfoRequest.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,51 @@ | ||
/* | ||
* 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.quickbi_public.model.v20220101; | ||
|
||
import com.aliyuncs.RpcAcsRequest; | ||
import com.aliyuncs.http.ProtocolType; | ||
import com.aliyuncs.http.MethodType; | ||
|
||
/** | ||
* @author auto create | ||
* @version | ||
*/ | ||
public class GetDataSourceConnectionInfoRequest extends RpcAcsRequest<GetDataSourceConnectionInfoResponse> { | ||
|
||
|
||
private String dsId; | ||
public GetDataSourceConnectionInfoRequest() { | ||
super("quickbi-public", "2022-01-01", "GetDataSourceConnectionInfo", "2.2.0"); | ||
setProtocol(ProtocolType.HTTPS); | ||
setMethod(MethodType.POST); | ||
} | ||
|
||
public String getDsId() { | ||
return this.dsId; | ||
} | ||
|
||
public void setDsId(String dsId) { | ||
this.dsId = dsId; | ||
if(dsId != null){ | ||
putQueryParameter("DsId", dsId); | ||
} | ||
} | ||
|
||
@Override | ||
public Class<GetDataSourceConnectionInfoResponse> getResponseClass() { | ||
return GetDataSourceConnectionInfoResponse.class; | ||
} | ||
|
||
} |
229 changes: 229 additions & 0 deletions
229
...java/com/aliyuncs/quickbi_public/model/v20220101/GetDataSourceConnectionInfoResponse.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,229 @@ | ||
/* | ||
* 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.quickbi_public.model.v20220101; | ||
|
||
import com.aliyuncs.AcsResponse; | ||
import com.aliyuncs.quickbi_public.transform.v20220101.GetDataSourceConnectionInfoResponseUnmarshaller; | ||
import com.aliyuncs.transform.UnmarshallerContext; | ||
|
||
/** | ||
* @author auto create | ||
* @version | ||
*/ | ||
public class GetDataSourceConnectionInfoResponse extends AcsResponse { | ||
|
||
private String requestId; | ||
|
||
private Boolean success; | ||
|
||
private Result result; | ||
|
||
public String getRequestId() { | ||
return this.requestId; | ||
} | ||
|
||
public void setRequestId(String requestId) { | ||
this.requestId = requestId; | ||
} | ||
|
||
public Boolean getSuccess() { | ||
return this.success; | ||
} | ||
|
||
public void setSuccess(Boolean success) { | ||
this.success = success; | ||
} | ||
|
||
public Result getResult() { | ||
return this.result; | ||
} | ||
|
||
public void setResult(Result result) { | ||
this.result = result; | ||
} | ||
|
||
public static class Result { | ||
|
||
private String address; | ||
|
||
private String authLevel; | ||
|
||
private String creatorId; | ||
|
||
private String dsId; | ||
|
||
private String dsType; | ||
|
||
private String dsVersion; | ||
|
||
private String instance; | ||
|
||
private String instanceId; | ||
|
||
private String modifyUser; | ||
|
||
private Boolean noSasl; | ||
|
||
private String parentDsType; | ||
|
||
private String port; | ||
|
||
private String project; | ||
|
||
private String schema; | ||
|
||
private String showName; | ||
|
||
private String workspaceId; | ||
|
||
public String getAddress() { | ||
return this.address; | ||
} | ||
|
||
public void setAddress(String address) { | ||
this.address = address; | ||
} | ||
|
||
public String getAuthLevel() { | ||
return this.authLevel; | ||
} | ||
|
||
public void setAuthLevel(String authLevel) { | ||
this.authLevel = authLevel; | ||
} | ||
|
||
public String getCreatorId() { | ||
return this.creatorId; | ||
} | ||
|
||
public void setCreatorId(String creatorId) { | ||
this.creatorId = creatorId; | ||
} | ||
|
||
public String getDsId() { | ||
return this.dsId; | ||
} | ||
|
||
public void setDsId(String dsId) { | ||
this.dsId = dsId; | ||
} | ||
|
||
public String getDsType() { | ||
return this.dsType; | ||
} | ||
|
||
public void setDsType(String dsType) { | ||
this.dsType = dsType; | ||
} | ||
|
||
public String getDsVersion() { | ||
return this.dsVersion; | ||
} | ||
|
||
public void setDsVersion(String dsVersion) { | ||
this.dsVersion = dsVersion; | ||
} | ||
|
||
public String getInstance() { | ||
return this.instance; | ||
} | ||
|
||
public void setInstance(String instance) { | ||
this.instance = instance; | ||
} | ||
|
||
public String getInstanceId() { | ||
return this.instanceId; | ||
} | ||
|
||
public void setInstanceId(String instanceId) { | ||
this.instanceId = instanceId; | ||
} | ||
|
||
public String getModifyUser() { | ||
return this.modifyUser; | ||
} | ||
|
||
public void setModifyUser(String modifyUser) { | ||
this.modifyUser = modifyUser; | ||
} | ||
|
||
public Boolean getNoSasl() { | ||
return this.noSasl; | ||
} | ||
|
||
public void setNoSasl(Boolean noSasl) { | ||
this.noSasl = noSasl; | ||
} | ||
|
||
public String getParentDsType() { | ||
return this.parentDsType; | ||
} | ||
|
||
public void setParentDsType(String parentDsType) { | ||
this.parentDsType = parentDsType; | ||
} | ||
|
||
public String getPort() { | ||
return this.port; | ||
} | ||
|
||
public void setPort(String port) { | ||
this.port = port; | ||
} | ||
|
||
public String getProject() { | ||
return this.project; | ||
} | ||
|
||
public void setProject(String project) { | ||
this.project = project; | ||
} | ||
|
||
public String getSchema() { | ||
return this.schema; | ||
} | ||
|
||
public void setSchema(String schema) { | ||
this.schema = schema; | ||
} | ||
|
||
public String getShowName() { | ||
return this.showName; | ||
} | ||
|
||
public void setShowName(String showName) { | ||
this.showName = showName; | ||
} | ||
|
||
public String getWorkspaceId() { | ||
return this.workspaceId; | ||
} | ||
|
||
public void setWorkspaceId(String workspaceId) { | ||
this.workspaceId = workspaceId; | ||
} | ||
} | ||
|
||
@Override | ||
public GetDataSourceConnectionInfoResponse getInstance(UnmarshallerContext context) { | ||
return GetDataSourceConnectionInfoResponseUnmarshaller.unmarshall(this, context); | ||
} | ||
|
||
@Override | ||
public boolean checkShowJsonItemName() { | ||
return false; | ||
} | ||
} |
Oops, something went wrong.