index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateFileResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.CreateFileResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateFileResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String branchName; private String filePath; public String getBranchName() { return this.branchName; } public void setBranchName(String branchName) { this.branchName = branchName; } public String getFilePath() { return this.filePath; } public void setFilePath(String filePath) { this.filePath = filePath; } } @Override public CreateFileResponse getInstance(UnmarshallerContext context) { return CreateFileResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateMergeRequestCommentRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateMergeRequestCommentRequest extends RoaAcsRequest<CreateMergeRequestCommentResponse> { private String organizationId; private Long mergeRequestId; private String accessToken; private Long projectId; public CreateMergeRequestCommentRequest() { super("codeup", "2020-04-14", "CreateMergeRequestComment"); setUriPattern("/api/v4/projects/[ProjectId]/merge_request/[MergeRequestId]/comments"); setMethod(MethodType.POST); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public Long getMergeRequestId() { return this.mergeRequestId; } public void setMergeRequestId(Long mergeRequestId) { this.mergeRequestId = mergeRequestId; if(mergeRequestId != null){ putPathParameter("MergeRequestId", mergeRequestId.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<CreateMergeRequestCommentResponse> getResponseClass() { return CreateMergeRequestCommentResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateMergeRequestCommentResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.CreateMergeRequestCommentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateMergeRequestCommentResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Long id; private String note; private String createdAt; private String updatedAt; private Long projectId; private Boolean isDraft; private Long parentNoteId; private Long line; private String side; private String path; private String rangeContext; private Boolean outDated; private Integer closed; private Author author; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getNote() { return this.note; } public void setNote(String note) { this.note = note; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; } public Boolean getIsDraft() { return this.isDraft; } public void setIsDraft(Boolean isDraft) { this.isDraft = isDraft; } public Long getParentNoteId() { return this.parentNoteId; } public void setParentNoteId(Long parentNoteId) { this.parentNoteId = parentNoteId; } public Long getLine() { return this.line; } public void setLine(Long line) { this.line = line; } public String getSide() { return this.side; } public void setSide(String side) { this.side = side; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public String getRangeContext() { return this.rangeContext; } public void setRangeContext(String rangeContext) { this.rangeContext = rangeContext; } public Boolean getOutDated() { return this.outDated; } public void setOutDated(Boolean outDated) { this.outDated = outDated; } public Integer getClosed() { return this.closed; } public void setClosed(Integer closed) { this.closed = closed; } public Author getAuthor() { return this.author; } public void setAuthor(Author author) { this.author = author; } public static class Author { private Long id; private String avatarUrl; private String externUserId; private String name; private String email; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } } } @Override public CreateMergeRequestCommentResponse getInstance(UnmarshallerContext context) { return CreateMergeRequestCommentResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateMergeRequestRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateMergeRequestRequest extends RoaAcsRequest<CreateMergeRequestResponse> { private String organizationId; private String subUserId; private String accessToken; private Long projectId; public CreateMergeRequestRequest() { super("codeup", "2020-04-14", "CreateMergeRequest"); setUriPattern("/api/v4/projects/[ProjectId]/merge_requests"); setMethod(MethodType.POST); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<CreateMergeRequestResponse> getResponseClass() { return CreateMergeRequestResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateMergeRequestResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.CreateMergeRequestResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateMergeRequestResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Long id; private Long projectId; private String title; private String description; private String state; private String mergeStatus; private String createdAt; private String updatedAt; private String targetBranch; private String sourceBranch; private String webUrl; private String acceptedRevision; private String mergeError; private String mergedRevision; private String nameWithNamespace; private String mergeType; private Integer aheadCommitCount; private Integer behindCommitCount; private List<AssigneeListItem> assigneeList; private Author author; private ApproveCheckResult approveCheckResult; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getMergeStatus() { return this.mergeStatus; } public void setMergeStatus(String mergeStatus) { this.mergeStatus = mergeStatus; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public String getTargetBranch() { return this.targetBranch; } public void setTargetBranch(String targetBranch) { this.targetBranch = targetBranch; } public String getSourceBranch() { return this.sourceBranch; } public void setSourceBranch(String sourceBranch) { this.sourceBranch = sourceBranch; } public String getWebUrl() { return this.webUrl; } public void setWebUrl(String webUrl) { this.webUrl = webUrl; } public String getAcceptedRevision() { return this.acceptedRevision; } public void setAcceptedRevision(String acceptedRevision) { this.acceptedRevision = acceptedRevision; } public String getMergeError() { return this.mergeError; } public void setMergeError(String mergeError) { this.mergeError = mergeError; } public String getMergedRevision() { return this.mergedRevision; } public void setMergedRevision(String mergedRevision) { this.mergedRevision = mergedRevision; } public String getNameWithNamespace() { return this.nameWithNamespace; } public void setNameWithNamespace(String nameWithNamespace) { this.nameWithNamespace = nameWithNamespace; } public String getMergeType() { return this.mergeType; } public void setMergeType(String mergeType) { this.mergeType = mergeType; } public Integer getAheadCommitCount() { return this.aheadCommitCount; } public void setAheadCommitCount(Integer aheadCommitCount) { this.aheadCommitCount = aheadCommitCount; } public Integer getBehindCommitCount() { return this.behindCommitCount; } public void setBehindCommitCount(Integer behindCommitCount) { this.behindCommitCount = behindCommitCount; } public List<AssigneeListItem> getAssigneeList() { return this.assigneeList; } public void setAssigneeList(List<AssigneeListItem> assigneeList) { this.assigneeList = assigneeList; } public Author getAuthor() { return this.author; } public void setAuthor(Author author) { this.author = author; } public ApproveCheckResult getApproveCheckResult() { return this.approveCheckResult; } public void setApproveCheckResult(ApproveCheckResult approveCheckResult) { this.approveCheckResult = approveCheckResult; } public static class AssigneeListItem { private String id; private String externUserId; private String avatarUrl; private String name; public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } public static class Author { private Long id; private String externUserId; private String avatarUrl; private String name; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } public static class ApproveCheckResult { private String totalCheckResult; private List<SatisfiedCheckResultsItem> satisfiedCheckResults; private List<UnsatisfiedCheckResultsItem> unsatisfiedCheckResults; public String getTotalCheckResult() { return this.totalCheckResult; } public void setTotalCheckResult(String totalCheckResult) { this.totalCheckResult = totalCheckResult; } public List<SatisfiedCheckResultsItem> getSatisfiedCheckResults() { return this.satisfiedCheckResults; } public void setSatisfiedCheckResults(List<SatisfiedCheckResultsItem> satisfiedCheckResults) { this.satisfiedCheckResults = satisfiedCheckResults; } public List<UnsatisfiedCheckResultsItem> getUnsatisfiedCheckResults() { return this.unsatisfiedCheckResults; } public void setUnsatisfiedCheckResults(List<UnsatisfiedCheckResultsItem> unsatisfiedCheckResults) { this.unsatisfiedCheckResults = unsatisfiedCheckResults; } public static class SatisfiedCheckResultsItem { private String checkStatus; private String checkName; private String checkType; private List<ExtraUsersItem> extraUsers; private List<String> satisfiedItems; private List<String> unsatisfiedItems; public String getCheckStatus() { return this.checkStatus; } public void setCheckStatus(String checkStatus) { this.checkStatus = checkStatus; } public String getCheckName() { return this.checkName; } public void setCheckName(String checkName) { this.checkName = checkName; } public String getCheckType() { return this.checkType; } public void setCheckType(String checkType) { this.checkType = checkType; } public List<ExtraUsersItem> getExtraUsers() { return this.extraUsers; } public void setExtraUsers(List<ExtraUsersItem> extraUsers) { this.extraUsers = extraUsers; } public List<String> getSatisfiedItems() { return this.satisfiedItems; } public void setSatisfiedItems(List<String> satisfiedItems) { this.satisfiedItems = satisfiedItems; } public List<String> getUnsatisfiedItems() { return this.unsatisfiedItems; } public void setUnsatisfiedItems(List<String> unsatisfiedItems) { this.unsatisfiedItems = unsatisfiedItems; } public static class ExtraUsersItem { private Long id; private String externUserId; private String avatarUrl; private String name; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } public static class UnsatisfiedCheckResultsItem { private String checkStatus; private String checkName; private String checkType; private List<ExtraUsersItem4> extraUsers3; private List<String> satisfiedItems1; private List<String> unsatisfiedItems2; public String getCheckStatus() { return this.checkStatus; } public void setCheckStatus(String checkStatus) { this.checkStatus = checkStatus; } public String getCheckName() { return this.checkName; } public void setCheckName(String checkName) { this.checkName = checkName; } public String getCheckType() { return this.checkType; } public void setCheckType(String checkType) { this.checkType = checkType; } public List<ExtraUsersItem4> getExtraUsers3() { return this.extraUsers3; } public void setExtraUsers3(List<ExtraUsersItem4> extraUsers3) { this.extraUsers3 = extraUsers3; } public List<String> getSatisfiedItems1() { return this.satisfiedItems1; } public void setSatisfiedItems1(List<String> satisfiedItems1) { this.satisfiedItems1 = satisfiedItems1; } public List<String> getUnsatisfiedItems2() { return this.unsatisfiedItems2; } public void setUnsatisfiedItems2(List<String> unsatisfiedItems2) { this.unsatisfiedItems2 = unsatisfiedItems2; } public static class ExtraUsersItem4 { private Long id; private String externUserId; private String avatarUrl; private String name; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } } } @Override public CreateMergeRequestResponse getInstance(UnmarshallerContext context) { return CreateMergeRequestResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateRepositoryDeployKeyRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateRepositoryDeployKeyRequest extends RoaAcsRequest<CreateRepositoryDeployKeyResponse> { private String organizationId; private String subUserId; private String accessToken; private Long projectId; public CreateRepositoryDeployKeyRequest() { super("codeup", "2020-04-14", "CreateRepositoryDeployKey"); setUriPattern("/api/v3/projects/[ProjectId]/keys"); setMethod(MethodType.POST); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<CreateRepositoryDeployKeyResponse> getResponseClass() { return CreateRepositoryDeployKeyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateRepositoryDeployKeyResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.CreateRepositoryDeployKeyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateRepositoryDeployKeyResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Long id; private String title; private String key; private String fingerPrint; private String createdAt; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getFingerPrint() { return this.fingerPrint; } public void setFingerPrint(String fingerPrint) { this.fingerPrint = fingerPrint; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } } @Override public CreateRepositoryDeployKeyResponse getInstance(UnmarshallerContext context) { return CreateRepositoryDeployKeyResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateRepositoryGroupRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateRepositoryGroupRequest extends RoaAcsRequest<CreateRepositoryGroupResponse> { private String organizationId; private String subUserId; private String accessToken; public CreateRepositoryGroupRequest() { super("codeup", "2020-04-14", "CreateRepositoryGroup"); setUriPattern("/api/v3/groups"); setMethod(MethodType.POST); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } @Override public Class<CreateRepositoryGroupResponse> getResponseClass() { return CreateRepositoryGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateRepositoryGroupResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.CreateRepositoryGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateRepositoryGroupResponse extends AcsResponse { private Integer errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Long id; private String description; private String visibilityLevel; private String webUrl; private String name; private String nameWithNamespace; private String path; private String pathWithNamespace; private Long parentId; private Long ownerId; private String avatarUrl; private String type; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getVisibilityLevel() { return this.visibilityLevel; } public void setVisibilityLevel(String visibilityLevel) { this.visibilityLevel = visibilityLevel; } public String getWebUrl() { return this.webUrl; } public void setWebUrl(String webUrl) { this.webUrl = webUrl; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getNameWithNamespace() { return this.nameWithNamespace; } public void setNameWithNamespace(String nameWithNamespace) { this.nameWithNamespace = nameWithNamespace; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public String getPathWithNamespace() { return this.pathWithNamespace; } public void setPathWithNamespace(String pathWithNamespace) { this.pathWithNamespace = pathWithNamespace; } public Long getParentId() { return this.parentId; } public void setParentId(Long parentId) { this.parentId = parentId; } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } } @Override public CreateRepositoryGroupResponse getInstance(UnmarshallerContext context) { return CreateRepositoryGroupResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateRepositoryProtectedBranchRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateRepositoryProtectedBranchRequest extends RoaAcsRequest<CreateRepositoryProtectedBranchResponse> { private String organizationId; private String accessToken; private Long projectId; public CreateRepositoryProtectedBranchRequest() { super("codeup", "2020-04-14", "CreateRepositoryProtectedBranch"); setUriPattern("/api/v4/projects/[ProjectId]/repository/protect_branches"); setMethod(MethodType.POST); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<CreateRepositoryProtectedBranchResponse> getResponseClass() { return CreateRepositoryProtectedBranchResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateRepositoryProtectedBranchResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.CreateRepositoryProtectedBranchResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateRepositoryProtectedBranchResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Long id; private String branch; private List<Integer> allowPushRoles; private List<Integer> allowMergeRoles; private MergeRequestSetting mergeRequestSetting; private TestSetting testSetting; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getBranch() { return this.branch; } public void setBranch(String branch) { this.branch = branch; } public List<Integer> getAllowPushRoles() { return this.allowPushRoles; } public void setAllowPushRoles(List<Integer> allowPushRoles) { this.allowPushRoles = allowPushRoles; } public List<Integer> getAllowMergeRoles() { return this.allowMergeRoles; } public void setAllowMergeRoles(List<Integer> allowMergeRoles) { this.allowMergeRoles = allowMergeRoles; } public MergeRequestSetting getMergeRequestSetting() { return this.mergeRequestSetting; } public void setMergeRequestSetting(MergeRequestSetting mergeRequestSetting) { this.mergeRequestSetting = mergeRequestSetting; } public TestSetting getTestSetting() { return this.testSetting; } public void setTestSetting(TestSetting testSetting) { this.testSetting = testSetting; } public static class MergeRequestSetting { private Boolean required; private String mergeRequestMode; private Boolean allowSelfApproval; private Boolean isRequireDiscussionProcessed; private Boolean isResetApprovalWhenNewPush; private Integer minimualApproval; private List<Integer> allowMergeRequestRoles; private List<String> defaultAssignees; public Boolean getRequired() { return this.required; } public void setRequired(Boolean required) { this.required = required; } public String getMergeRequestMode() { return this.mergeRequestMode; } public void setMergeRequestMode(String mergeRequestMode) { this.mergeRequestMode = mergeRequestMode; } public Boolean getAllowSelfApproval() { return this.allowSelfApproval; } public void setAllowSelfApproval(Boolean allowSelfApproval) { this.allowSelfApproval = allowSelfApproval; } public Boolean getIsRequireDiscussionProcessed() { return this.isRequireDiscussionProcessed; } public void setIsRequireDiscussionProcessed(Boolean isRequireDiscussionProcessed) { this.isRequireDiscussionProcessed = isRequireDiscussionProcessed; } public Boolean getIsResetApprovalWhenNewPush() { return this.isResetApprovalWhenNewPush; } public void setIsResetApprovalWhenNewPush(Boolean isResetApprovalWhenNewPush) { this.isResetApprovalWhenNewPush = isResetApprovalWhenNewPush; } public Integer getMinimualApproval() { return this.minimualApproval; } public void setMinimualApproval(Integer minimualApproval) { this.minimualApproval = minimualApproval; } public List<Integer> getAllowMergeRequestRoles() { return this.allowMergeRequestRoles; } public void setAllowMergeRequestRoles(List<Integer> allowMergeRequestRoles) { this.allowMergeRequestRoles = allowMergeRequestRoles; } public List<String> getDefaultAssignees() { return this.defaultAssignees; } public void setDefaultAssignees(List<String> defaultAssignees) { this.defaultAssignees = defaultAssignees; } } public static class TestSetting { private Boolean required; private CodingGuidelinesDetection codingGuidelinesDetection; private SensitiveInfoDetection sensitiveInfoDetection; private CheckConfig checkConfig; public Boolean getRequired() { return this.required; } public void setRequired(Boolean required) { this.required = required; } public CodingGuidelinesDetection getCodingGuidelinesDetection() { return this.codingGuidelinesDetection; } public void setCodingGuidelinesDetection(CodingGuidelinesDetection codingGuidelinesDetection) { this.codingGuidelinesDetection = codingGuidelinesDetection; } public SensitiveInfoDetection getSensitiveInfoDetection() { return this.sensitiveInfoDetection; } public void setSensitiveInfoDetection(SensitiveInfoDetection sensitiveInfoDetection) { this.sensitiveInfoDetection = sensitiveInfoDetection; } public CheckConfig getCheckConfig() { return this.checkConfig; } public void setCheckConfig(CheckConfig checkConfig) { this.checkConfig = checkConfig; } public static class CodingGuidelinesDetection { private Boolean enabled; private String message; public Boolean getEnabled() { return this.enabled; } public void setEnabled(Boolean enabled) { this.enabled = enabled; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } } public static class SensitiveInfoDetection { private Boolean enabled; private String message; public Boolean getEnabled() { return this.enabled; } public void setEnabled(Boolean enabled) { this.enabled = enabled; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } } public static class CheckConfig { private List<CheckItemsItem> checkItems; public List<CheckItemsItem> getCheckItems() { return this.checkItems; } public void setCheckItems(List<CheckItemsItem> checkItems) { this.checkItems = checkItems; } public static class CheckItemsItem { private String name; private Boolean required; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Boolean getRequired() { return this.required; } public void setRequired(Boolean required) { this.required = required; } } } } } @Override public CreateRepositoryProtectedBranchResponse getInstance(UnmarshallerContext context) { return CreateRepositoryProtectedBranchResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateRepositoryRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateRepositoryRequest extends RoaAcsRequest<CreateRepositoryResponse> { private String organizationId; private String subUserId; private String accessToken; private Boolean sync; private Boolean createParentPath; public CreateRepositoryRequest() { super("codeup", "2020-04-14", "CreateRepository"); setUriPattern("/api/v3/projects"); setMethod(MethodType.POST); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Boolean getSync() { return this.sync; } public void setSync(Boolean sync) { this.sync = sync; if(sync != null){ putQueryParameter("Sync", sync.toString()); } } public Boolean getCreateParentPath() { return this.createParentPath; } public void setCreateParentPath(Boolean createParentPath) { this.createParentPath = createParentPath; if(createParentPath != null){ putQueryParameter("CreateParentPath", createParentPath.toString()); } } @Override public Class<CreateRepositoryResponse> getResponseClass() { return CreateRepositoryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateRepositoryResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.CreateRepositoryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateRepositoryResponse extends AcsResponse { private Integer errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Long id; private String sshUrlToRepo; private String description; private String defaultBranch; private Boolean _public; private String visibilityLevel; private String httpUrlToRepo; private String webUrl; private String name; private String nameWithNamespace; private String path; private String pathWithNamespace; private Boolean issuesEnableStatus; private Boolean mergeRequestEnableStatus; private Boolean buildsEnableStatus; private Boolean wikiEnableStatus; private Boolean snippetsEnableStatus; private String createdAt; private String lastActivityAt; private Long creatorId; private Boolean archive; private String avatarUrl; private Boolean demoProjectStatus; private List<String> tagList; private Namespace namespace; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getSshUrlToRepo() { return this.sshUrlToRepo; } public void setSshUrlToRepo(String sshUrlToRepo) { this.sshUrlToRepo = sshUrlToRepo; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getDefaultBranch() { return this.defaultBranch; } public void setDefaultBranch(String defaultBranch) { this.defaultBranch = defaultBranch; } public Boolean get_Public() { return this._public; } public void set_Public(Boolean _public) { this._public = _public; } public String getVisibilityLevel() { return this.visibilityLevel; } public void setVisibilityLevel(String visibilityLevel) { this.visibilityLevel = visibilityLevel; } public String getHttpUrlToRepo() { return this.httpUrlToRepo; } public void setHttpUrlToRepo(String httpUrlToRepo) { this.httpUrlToRepo = httpUrlToRepo; } public String getWebUrl() { return this.webUrl; } public void setWebUrl(String webUrl) { this.webUrl = webUrl; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getNameWithNamespace() { return this.nameWithNamespace; } public void setNameWithNamespace(String nameWithNamespace) { this.nameWithNamespace = nameWithNamespace; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public String getPathWithNamespace() { return this.pathWithNamespace; } public void setPathWithNamespace(String pathWithNamespace) { this.pathWithNamespace = pathWithNamespace; } public Boolean getIssuesEnableStatus() { return this.issuesEnableStatus; } public void setIssuesEnableStatus(Boolean issuesEnableStatus) { this.issuesEnableStatus = issuesEnableStatus; } public Boolean getMergeRequestEnableStatus() { return this.mergeRequestEnableStatus; } public void setMergeRequestEnableStatus(Boolean mergeRequestEnableStatus) { this.mergeRequestEnableStatus = mergeRequestEnableStatus; } public Boolean getBuildsEnableStatus() { return this.buildsEnableStatus; } public void setBuildsEnableStatus(Boolean buildsEnableStatus) { this.buildsEnableStatus = buildsEnableStatus; } public Boolean getWikiEnableStatus() { return this.wikiEnableStatus; } public void setWikiEnableStatus(Boolean wikiEnableStatus) { this.wikiEnableStatus = wikiEnableStatus; } public Boolean getSnippetsEnableStatus() { return this.snippetsEnableStatus; } public void setSnippetsEnableStatus(Boolean snippetsEnableStatus) { this.snippetsEnableStatus = snippetsEnableStatus; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getLastActivityAt() { return this.lastActivityAt; } public void setLastActivityAt(String lastActivityAt) { this.lastActivityAt = lastActivityAt; } public Long getCreatorId() { return this.creatorId; } public void setCreatorId(Long creatorId) { this.creatorId = creatorId; } public Boolean getArchive() { return this.archive; } public void setArchive(Boolean archive) { this.archive = archive; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public Boolean getDemoProjectStatus() { return this.demoProjectStatus; } public void setDemoProjectStatus(Boolean demoProjectStatus) { this.demoProjectStatus = demoProjectStatus; } public List<String> getTagList() { return this.tagList; } public void setTagList(List<String> tagList) { this.tagList = tagList; } public Namespace getNamespace() { return this.namespace; } public void setNamespace(Namespace namespace) { this.namespace = namespace; } public static class Namespace { private Long id; private String name; private String path; private Long ownerId; private String createdAt; private String updatedAt; private String description; private String state; private String avatar; private Boolean _public; private String visibilityLevel; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getAvatar() { return this.avatar; } public void setAvatar(String avatar) { this.avatar = avatar; } public Boolean get_Public() { return this._public; } public void set_Public(Boolean _public) { this._public = _public; } public String getVisibilityLevel() { return this.visibilityLevel; } public void setVisibilityLevel(String visibilityLevel) { this.visibilityLevel = visibilityLevel; } } } @Override public CreateRepositoryResponse getInstance(UnmarshallerContext context) { return CreateRepositoryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateSshKeyRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateSshKeyRequest extends RoaAcsRequest<CreateSshKeyResponse> { private String accessToken; public CreateSshKeyRequest() { super("codeup", "2020-04-14", "CreateSshKey"); setUriPattern("/api/v3/user/keys"); setMethod(MethodType.POST); } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } @Override public Class<CreateSshKeyResponse> getResponseClass() { return CreateSshKeyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateSshKeyResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.CreateSshKeyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateSshKeyResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 createdAt; private String fingerPrint; private Long id; private String key; private String keyScope; private String title; public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getFingerPrint() { return this.fingerPrint; } public void setFingerPrint(String fingerPrint) { this.fingerPrint = fingerPrint; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getKeyScope() { return this.keyScope; } public void setKeyScope(String keyScope) { this.keyScope = keyScope; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } } @Override public CreateSshKeyResponse getInstance(UnmarshallerContext context) { return CreateSshKeyResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateTagRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateTagRequest extends RoaAcsRequest<CreateTagResponse> { private String organizationId; private String subUserId; private String accessToken; private Long projectId; public CreateTagRequest() { super("codeup", "2020-04-14", "CreateTag"); setUriPattern("/api/v3/projects/[ProjectId]/repository/tags"); setMethod(MethodType.POST); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<CreateTagResponse> getResponseClass() { return CreateTagResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/CreateTagResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.CreateTagResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateTagResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String name; private String message; private CommitInfo commitInfo; private Release release; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public CommitInfo getCommitInfo() { return this.commitInfo; } public void setCommitInfo(CommitInfo commitInfo) { this.commitInfo = commitInfo; } public Release getRelease() { return this.release; } public void setRelease(Release release) { this.release = release; } public static class CommitInfo { private String id; private String shortId; private String title; private String authorName; private String authorEmail; private String authoredDate; private String committedDate; private String committerEmail; private String committerName; private String createdAt; private String message; private List<String> parentIds; public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getShortId() { return this.shortId; } public void setShortId(String shortId) { this.shortId = shortId; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public String getAuthorName() { return this.authorName; } public void setAuthorName(String authorName) { this.authorName = authorName; } public String getAuthorEmail() { return this.authorEmail; } public void setAuthorEmail(String authorEmail) { this.authorEmail = authorEmail; } public String getAuthoredDate() { return this.authoredDate; } public void setAuthoredDate(String authoredDate) { this.authoredDate = authoredDate; } public String getCommittedDate() { return this.committedDate; } public void setCommittedDate(String committedDate) { this.committedDate = committedDate; } public String getCommitterEmail() { return this.committerEmail; } public void setCommitterEmail(String committerEmail) { this.committerEmail = committerEmail; } public String getCommitterName() { return this.committerName; } public void setCommitterName(String committerName) { this.committerName = committerName; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public List<String> getParentIds() { return this.parentIds; } public void setParentIds(List<String> parentIds) { this.parentIds = parentIds; } } public static class Release { private String tagName; private String description; public String getTagName() { return this.tagName; } public void setTagName(String tagName) { this.tagName = tagName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } } } @Override public CreateTagResponse getInstance(UnmarshallerContext context) { return CreateTagResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteBranchRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteBranchRequest extends RoaAcsRequest<DeleteBranchResponse> { private String organizationId; private String subUserId; private String accessToken; private Long projectId; private String branchName; public DeleteBranchRequest() { super("codeup", "2020-04-14", "DeleteBranch"); setUriPattern("/api/v3/projects/[ProjectId]/repository/branches/delete"); setMethod(MethodType.DELETE); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } public String getBranchName() { return this.branchName; } public void setBranchName(String branchName) { this.branchName = branchName; if(branchName != null){ putQueryParameter("BranchName", branchName); } } @Override public Class<DeleteBranchResponse> getResponseClass() { return DeleteBranchResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteBranchResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.DeleteBranchResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteBranchResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String branchName; public String getBranchName() { return this.branchName; } public void setBranchName(String branchName) { this.branchName = branchName; } } @Override public DeleteBranchResponse getInstance(UnmarshallerContext context) { return DeleteBranchResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteFileRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteFileRequest extends RoaAcsRequest<DeleteFileResponse> { private String organizationId; private String subUserId; private String filePath; private String accessToken; private String commitMessage; private Long projectId; private String branchName; public DeleteFileRequest() { super("codeup", "2020-04-14", "DeleteFile"); setUriPattern("/api/v3/projects/[ProjectId]/repository/files"); setMethod(MethodType.DELETE); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getFilePath() { return this.filePath; } public void setFilePath(String filePath) { this.filePath = filePath; if(filePath != null){ putQueryParameter("FilePath", filePath); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public String getCommitMessage() { return this.commitMessage; } public void setCommitMessage(String commitMessage) { this.commitMessage = commitMessage; if(commitMessage != null){ putQueryParameter("CommitMessage", commitMessage); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } public String getBranchName() { return this.branchName; } public void setBranchName(String branchName) { this.branchName = branchName; if(branchName != null){ putQueryParameter("BranchName", branchName); } } @Override public Class<DeleteFileResponse> getResponseClass() { return DeleteFileResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteFileResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.DeleteFileResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteFileResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String branchName; private String filePath; public String getBranchName() { return this.branchName; } public void setBranchName(String branchName) { this.branchName = branchName; } public String getFilePath() { return this.filePath; } public void setFilePath(String filePath) { this.filePath = filePath; } } @Override public DeleteFileResponse getInstance(UnmarshallerContext context) { return DeleteFileResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteGroupMemberRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteGroupMemberRequest extends RoaAcsRequest<DeleteGroupMemberResponse> { private String organizationId; private String subUserId; private Long groupId; private String accessToken; private Long userId; public DeleteGroupMemberRequest() { super("codeup", "2020-04-14", "DeleteGroupMember"); setUriPattern("/api/v3/groups/[GroupId]/members/[UserId]"); setMethod(MethodType.DELETE); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; if(groupId != null){ putPathParameter("GroupId", groupId.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; if(userId != null){ putPathParameter("UserId", userId.toString()); } } @Override public Class<DeleteGroupMemberResponse> getResponseClass() { return DeleteGroupMemberResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteGroupMemberResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.DeleteGroupMemberResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteGroupMemberResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Integer accessLevel; private Long id; private String externUserId; private String state; private String avatarUrl; private String email; public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } } @Override public DeleteGroupMemberResponse getInstance(UnmarshallerContext context) { return DeleteGroupMemberResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryGroupRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteRepositoryGroupRequest extends RoaAcsRequest<DeleteRepositoryGroupResponse> { private String organizationId; private String subUserId; private Long groupId; private String accessToken; public DeleteRepositoryGroupRequest() { super("codeup", "2020-04-14", "DeleteRepositoryGroup"); setUriPattern("/api/v3/groups/[GroupId]/remove"); setMethod(MethodType.POST); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; if(groupId != null){ putPathParameter("GroupId", groupId.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } @Override public Class<DeleteRepositoryGroupResponse> getResponseClass() { return DeleteRepositoryGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryGroupResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.DeleteRepositoryGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteRepositoryGroupResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Boolean result; public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } } @Override public DeleteRepositoryGroupResponse getInstance(UnmarshallerContext context) { return DeleteRepositoryGroupResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryMemberRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteRepositoryMemberRequest extends RoaAcsRequest<DeleteRepositoryMemberResponse> { private String organizationId; private String subUserId; private String accessToken; private Long projectId; private Long userId; public DeleteRepositoryMemberRequest() { super("codeup", "2020-04-14", "DeleteRepositoryMember"); setUriPattern("/api/v3/projects/[ProjectId]/members/[UserId]"); setMethod(MethodType.DELETE); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; if(userId != null){ putPathParameter("UserId", userId.toString()); } } @Override public Class<DeleteRepositoryMemberResponse> getResponseClass() { return DeleteRepositoryMemberResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryMemberResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.DeleteRepositoryMemberResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteRepositoryMemberResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Integer accessLevel; private Long id; private String createdAt; private String updatedAt; private Long sourceId; private String sourceType; private Long userId; private Integer notificationLevel; private String message; public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public Long getSourceId() { return this.sourceId; } public void setSourceId(Long sourceId) { this.sourceId = sourceId; } public String getSourceType() { return this.sourceType; } public void setSourceType(String sourceType) { this.sourceType = sourceType; } public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; } public Integer getNotificationLevel() { return this.notificationLevel; } public void setNotificationLevel(Integer notificationLevel) { this.notificationLevel = notificationLevel; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } } @Override public DeleteRepositoryMemberResponse getInstance(UnmarshallerContext context) { return DeleteRepositoryMemberResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryProtectedBranchRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteRepositoryProtectedBranchRequest extends RoaAcsRequest<DeleteRepositoryProtectedBranchResponse> { private String organizationId; private Long protectedBranchId; private String accessToken; private Long projectId; public DeleteRepositoryProtectedBranchRequest() { super("codeup", "2020-04-14", "DeleteRepositoryProtectedBranch"); setUriPattern("/api/v4/projects/[ProjectId]/repository/protect_branches/[ProtectedBranchId]"); setMethod(MethodType.DELETE); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public Long getProtectedBranchId() { return this.protectedBranchId; } public void setProtectedBranchId(Long protectedBranchId) { this.protectedBranchId = protectedBranchId; if(protectedBranchId != null){ putPathParameter("ProtectedBranchId", protectedBranchId.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<DeleteRepositoryProtectedBranchResponse> getResponseClass() { return DeleteRepositoryProtectedBranchResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryProtectedBranchResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.DeleteRepositoryProtectedBranchResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteRepositoryProtectedBranchResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Boolean result; public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } } @Override public DeleteRepositoryProtectedBranchResponse getInstance(UnmarshallerContext context) { return DeleteRepositoryProtectedBranchResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteRepositoryRequest extends RoaAcsRequest<DeleteRepositoryResponse> { private String organizationId; private String subUserId; private String accessToken; private Long projectId; public DeleteRepositoryRequest() { super("codeup", "2020-04-14", "DeleteRepository"); setUriPattern("/api/v3/projects/[ProjectId]/remove"); setMethod(MethodType.POST); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<DeleteRepositoryResponse> getResponseClass() { return DeleteRepositoryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.DeleteRepositoryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteRepositoryResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Boolean result; public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } } @Override public DeleteRepositoryResponse getInstance(UnmarshallerContext context) { return DeleteRepositoryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryTagRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteRepositoryTagRequest extends RoaAcsRequest<DeleteRepositoryTagResponse> { private String organizationId; private String tagName; private String accessToken; private Long projectId; public DeleteRepositoryTagRequest() { super("codeup", "2020-04-14", "DeleteRepositoryTag"); setUriPattern("/api/v3/projects/[ProjectId]/repository/tags/[TagName]"); setMethod(MethodType.DELETE); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getTagName() { return this.tagName; } public void setTagName(String tagName) { this.tagName = tagName; if(tagName != null){ putPathParameter("TagName", tagName); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<DeleteRepositoryTagResponse> getResponseClass() { return DeleteRepositoryTagResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryTagResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.DeleteRepositoryTagResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteRepositoryTagResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String tagName; public String getTagName() { return this.tagName; } public void setTagName(String tagName) { this.tagName = tagName; } } @Override public DeleteRepositoryTagResponse getInstance(UnmarshallerContext context) { return DeleteRepositoryTagResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryTagV2Request.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteRepositoryTagV2Request extends RoaAcsRequest<DeleteRepositoryTagV2Response> { private String organizationId; private String tagName; private String accessToken; private Long projectId; public DeleteRepositoryTagV2Request() { super("codeup", "2020-04-14", "DeleteRepositoryTagV2"); setUriPattern("/api/v3/projects/[ProjectId]/repository/tag/delete"); setMethod(MethodType.DELETE); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getTagName() { return this.tagName; } public void setTagName(String tagName) { this.tagName = tagName; if(tagName != null){ putQueryParameter("TagName", tagName); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<DeleteRepositoryTagV2Response> getResponseClass() { return DeleteRepositoryTagV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryTagV2Response.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.DeleteRepositoryTagV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteRepositoryTagV2Response extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 tagName; public String getTagName() { return this.tagName; } public void setTagName(String tagName) { this.tagName = tagName; } } @Override public DeleteRepositoryTagV2Response getInstance(UnmarshallerContext context) { return DeleteRepositoryTagV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryWebhookRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteRepositoryWebhookRequest extends RoaAcsRequest<DeleteRepositoryWebhookResponse> { private String organizationId; private Long webhookId; private String accessToken; private Long projectId; public DeleteRepositoryWebhookRequest() { super("codeup", "2020-04-14", "DeleteRepositoryWebhook"); setUriPattern("/api/v3/projects/[ProjectId]/hooks/[WebhookId]"); setMethod(MethodType.DELETE); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public Long getWebhookId() { return this.webhookId; } public void setWebhookId(Long webhookId) { this.webhookId = webhookId; if(webhookId != null){ putPathParameter("WebhookId", webhookId.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<DeleteRepositoryWebhookResponse> getResponseClass() { return DeleteRepositoryWebhookResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/DeleteRepositoryWebhookResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.DeleteRepositoryWebhookResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteRepositoryWebhookResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Long id; private String url; private String createdAt; private Long projectId; private Boolean pushEvents; private Boolean mergeRequestsEvents; private Boolean tagPushEvents; private Boolean noteEvents; private Boolean enableSslVerification; private String lastTestResult; private String description; private String secretToken; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getUrl() { return this.url; } public void setUrl(String url) { this.url = url; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; } public Boolean getPushEvents() { return this.pushEvents; } public void setPushEvents(Boolean pushEvents) { this.pushEvents = pushEvents; } public Boolean getMergeRequestsEvents() { return this.mergeRequestsEvents; } public void setMergeRequestsEvents(Boolean mergeRequestsEvents) { this.mergeRequestsEvents = mergeRequestsEvents; } public Boolean getTagPushEvents() { return this.tagPushEvents; } public void setTagPushEvents(Boolean tagPushEvents) { this.tagPushEvents = tagPushEvents; } public Boolean getNoteEvents() { return this.noteEvents; } public void setNoteEvents(Boolean noteEvents) { this.noteEvents = noteEvents; } public Boolean getEnableSslVerification() { return this.enableSslVerification; } public void setEnableSslVerification(Boolean enableSslVerification) { this.enableSslVerification = enableSslVerification; } public String getLastTestResult() { return this.lastTestResult; } public void setLastTestResult(String lastTestResult) { this.lastTestResult = lastTestResult; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getSecretToken() { return this.secretToken; } public void setSecretToken(String secretToken) { this.secretToken = secretToken; } } @Override public DeleteRepositoryWebhookResponse getInstance(UnmarshallerContext context) { return DeleteRepositoryWebhookResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/EnableRepositoryDeployKeyRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class EnableRepositoryDeployKeyRequest extends RoaAcsRequest<EnableRepositoryDeployKeyResponse> { private String organizationId; private String subUserId; private String accessToken; private Long keyId; private Long projectId; public EnableRepositoryDeployKeyRequest() { super("codeup", "2020-04-14", "EnableRepositoryDeployKey"); setUriPattern("/api/v3/projects/[ProjectId]/keys/[KeyId]/enable"); setMethod(MethodType.POST); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getKeyId() { return this.keyId; } public void setKeyId(Long keyId) { this.keyId = keyId; if(keyId != null){ putPathParameter("KeyId", keyId.toString()); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<EnableRepositoryDeployKeyResponse> getResponseClass() { return EnableRepositoryDeployKeyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/EnableRepositoryDeployKeyResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.EnableRepositoryDeployKeyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class EnableRepositoryDeployKeyResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Boolean result; public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } } @Override public EnableRepositoryDeployKeyResponse getInstance(UnmarshallerContext context) { return EnableRepositoryDeployKeyResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetBranchInfoRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetBranchInfoRequest extends RoaAcsRequest<GetBranchInfoResponse> { private String organizationId; private String subUserId; private String accessToken; private Long projectId; private String branchName; public GetBranchInfoRequest() { super("codeup", "2020-04-14", "GetBranchInfo"); setUriPattern("/api/v3/projects/[ProjectId]/repository/branches/detail"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } public String getBranchName() { return this.branchName; } public void setBranchName(String branchName) { this.branchName = branchName; if(branchName != null){ putQueryParameter("BranchName", branchName); } } @Override public Class<GetBranchInfoResponse> getResponseClass() { return GetBranchInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetBranchInfoResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetBranchInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetBranchInfoResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String branchName; private Boolean protectedBranch; private CommitInfo commitInfo; public String getBranchName() { return this.branchName; } public void setBranchName(String branchName) { this.branchName = branchName; } public Boolean getProtectedBranch() { return this.protectedBranch; } public void setProtectedBranch(Boolean protectedBranch) { this.protectedBranch = protectedBranch; } public CommitInfo getCommitInfo() { return this.commitInfo; } public void setCommitInfo(CommitInfo commitInfo) { this.commitInfo = commitInfo; } public static class CommitInfo { private String id; private String shortId; private String title; private String authorName; private String authorEmail; private String createdAt; private String message; private String authorDate; private String committedDate; private String committerEmail; private String committerName; private List<String> parentIds; public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getShortId() { return this.shortId; } public void setShortId(String shortId) { this.shortId = shortId; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public String getAuthorName() { return this.authorName; } public void setAuthorName(String authorName) { this.authorName = authorName; } public String getAuthorEmail() { return this.authorEmail; } public void setAuthorEmail(String authorEmail) { this.authorEmail = authorEmail; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getAuthorDate() { return this.authorDate; } public void setAuthorDate(String authorDate) { this.authorDate = authorDate; } public String getCommittedDate() { return this.committedDate; } public void setCommittedDate(String committedDate) { this.committedDate = committedDate; } public String getCommitterEmail() { return this.committerEmail; } public void setCommitterEmail(String committerEmail) { this.committerEmail = committerEmail; } public String getCommitterName() { return this.committerName; } public void setCommitterName(String committerName) { this.committerName = committerName; } public List<String> getParentIds() { return this.parentIds; } public void setParentIds(List<String> parentIds) { this.parentIds = parentIds; } } } @Override public GetBranchInfoResponse getInstance(UnmarshallerContext context) { return GetBranchInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetCodeCompletionRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetCodeCompletionRequest extends RoaAcsRequest<GetCodeCompletionResponse> { private Boolean isEncrypted; private String fetchKeys; private String serviceName; public GetCodeCompletionRequest() { super("codeup", "2020-04-14", "GetCodeCompletion"); setUriPattern("/api/v2/service/invoke/[ServiceName]"); setMethod(MethodType.POST); } public Boolean getIsEncrypted() { return this.isEncrypted; } public void setIsEncrypted(Boolean isEncrypted) { this.isEncrypted = isEncrypted; if(isEncrypted != null){ putQueryParameter("IsEncrypted", isEncrypted.toString()); } } public String getFetchKeys() { return this.fetchKeys; } public void setFetchKeys(String fetchKeys) { this.fetchKeys = fetchKeys; if(fetchKeys != null){ putQueryParameter("FetchKeys", fetchKeys); } } public String getServiceName() { return this.serviceName; } public void setServiceName(String serviceName) { this.serviceName = serviceName; if(serviceName != null){ putPathParameter("ServiceName", serviceName); } } @Override public Class<GetCodeCompletionResponse> getResponseClass() { return GetCodeCompletionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetCodeCompletionResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetCodeCompletionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetCodeCompletionResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String body; private String clientTimestamp; private String receiveTimestamp; private String invokeTimestamp; private String fetchTimestamp; private String rspTimestamp; public String getBody() { return this.body; } public void setBody(String body) { this.body = body; } public String getClientTimestamp() { return this.clientTimestamp; } public void setClientTimestamp(String clientTimestamp) { this.clientTimestamp = clientTimestamp; } public String getReceiveTimestamp() { return this.receiveTimestamp; } public void setReceiveTimestamp(String receiveTimestamp) { this.receiveTimestamp = receiveTimestamp; } public String getInvokeTimestamp() { return this.invokeTimestamp; } public void setInvokeTimestamp(String invokeTimestamp) { this.invokeTimestamp = invokeTimestamp; } public String getFetchTimestamp() { return this.fetchTimestamp; } public void setFetchTimestamp(String fetchTimestamp) { this.fetchTimestamp = fetchTimestamp; } public String getRspTimestamp() { return this.rspTimestamp; } public void setRspTimestamp(String rspTimestamp) { this.rspTimestamp = rspTimestamp; } } @Override public GetCodeCompletionResponse getInstance(UnmarshallerContext context) { return GetCodeCompletionResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetCodeupOrganizationRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetCodeupOrganizationRequest extends RoaAcsRequest<GetCodeupOrganizationResponse> { private String organizationId; private String subUserId; private String organizationIdentity; private String accessToken; public GetCodeupOrganizationRequest() { super("codeup", "2020-04-14", "GetCodeupOrganization"); setUriPattern("/api/v4/organization/[OrganizationIdentity]"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getOrganizationIdentity() { return this.organizationIdentity; } public void setOrganizationIdentity(String organizationIdentity) { this.organizationIdentity = organizationIdentity; if(organizationIdentity != null){ putPathParameter("OrganizationIdentity", organizationIdentity); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } @Override public Class<GetCodeupOrganizationResponse> getResponseClass() { return GetCodeupOrganizationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetCodeupOrganizationResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetCodeupOrganizationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetCodeupOrganizationResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Long id; private String organizationId; private String path; private String createdAt; private String updatedAt; private Long namespaceId; private String userRole; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public Long getNamespaceId() { return this.namespaceId; } public void setNamespaceId(Long namespaceId) { this.namespaceId = namespaceId; } public String getUserRole() { return this.userRole; } public void setUserRole(String userRole) { this.userRole = userRole; } } @Override public GetCodeupOrganizationResponse getInstance(UnmarshallerContext context) { return GetCodeupOrganizationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetFileBlobsRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetFileBlobsRequest extends RoaAcsRequest<GetFileBlobsResponse> { private String accessToken; private String organizationId; private String ref; private String subUserId; private String filePath; private Long from; private Long to; private Long projectId; public GetFileBlobsRequest() { super("codeup", "2020-04-14", "GetFileBlobs"); setUriPattern("/api/v4/projects/[ProjectId]/repository/blobs"); setMethod(MethodType.GET); } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getRef() { return this.ref; } public void setRef(String ref) { this.ref = ref; if(ref != null){ putQueryParameter("Ref", ref); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getFilePath() { return this.filePath; } public void setFilePath(String filePath) { this.filePath = filePath; if(filePath != null){ putQueryParameter("FilePath", filePath); } } public Long getFrom() { return this.from; } public void setFrom(Long from) { this.from = from; if(from != null){ putQueryParameter("From", from.toString()); } } public Long getTo() { return this.to; } public void setTo(Long to) { this.to = to; if(to != null){ putQueryParameter("To", to.toString()); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<GetFileBlobsResponse> getResponseClass() { return GetFileBlobsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetFileBlobsResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetFileBlobsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetFileBlobsResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String content; private Integer totalLines; public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } public Integer getTotalLines() { return this.totalLines; } public void setTotalLines(Integer totalLines) { this.totalLines = totalLines; } } @Override public GetFileBlobsResponse getInstance(UnmarshallerContext context) { return GetFileBlobsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetGroupDetailRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetGroupDetailRequest extends RoaAcsRequest<GetGroupDetailResponse> { private String organizationId; private String subUserId; private Long groupId; private String accessToken; public GetGroupDetailRequest() { super("codeup", "2020-04-14", "GetGroupDetail"); setUriPattern("/api/v3/groups/detail"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } @Override public Class<GetGroupDetailResponse> getResponseClass() { return GetGroupDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetGroupDetailResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetGroupDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetGroupDetailResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Long id; private String name; private String path; private String description; private String avatarUrl; private String webUrl; private String pathWithNamespace; private String nameWithNamespace; private String type; private String visibilityLevel; private Long parentId; private Long ownerId; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getWebUrl() { return this.webUrl; } public void setWebUrl(String webUrl) { this.webUrl = webUrl; } public String getPathWithNamespace() { return this.pathWithNamespace; } public void setPathWithNamespace(String pathWithNamespace) { this.pathWithNamespace = pathWithNamespace; } public String getNameWithNamespace() { return this.nameWithNamespace; } public void setNameWithNamespace(String nameWithNamespace) { this.nameWithNamespace = nameWithNamespace; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getVisibilityLevel() { return this.visibilityLevel; } public void setVisibilityLevel(String visibilityLevel) { this.visibilityLevel = visibilityLevel; } public Long getParentId() { return this.parentId; } public void setParentId(Long parentId) { this.parentId = parentId; } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; } } @Override public GetGroupDetailResponse getInstance(UnmarshallerContext context) { return GetGroupDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetMergeRequestApproveStatusRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetMergeRequestApproveStatusRequest extends RoaAcsRequest<GetMergeRequestApproveStatusResponse> { private String organizationId; private Long mergeRequestId; private String accessToken; private Long projectId; public GetMergeRequestApproveStatusRequest() { super("codeup", "2020-04-14", "GetMergeRequestApproveStatus"); setUriPattern("/api/v4/projects/[ProjectId]/merge_request/[MergeRequestId]/approve_status"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public Long getMergeRequestId() { return this.mergeRequestId; } public void setMergeRequestId(Long mergeRequestId) { this.mergeRequestId = mergeRequestId; if(mergeRequestId != null){ putPathParameter("MergeRequestId", mergeRequestId.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<GetMergeRequestApproveStatusResponse> getResponseClass() { return GetMergeRequestApproveStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetMergeRequestApproveStatusResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetMergeRequestApproveStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetMergeRequestApproveStatusResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 approveStatus; private String message; public String getApproveStatus() { return this.approveStatus; } public void setApproveStatus(String approveStatus) { this.approveStatus = approveStatus; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } } @Override public GetMergeRequestApproveStatusResponse getInstance(UnmarshallerContext context) { return GetMergeRequestApproveStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetMergeRequestDetailRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetMergeRequestDetailRequest extends RoaAcsRequest<GetMergeRequestDetailResponse> { private String organizationId; private Long mergeRequestId; private String accessToken; private Long projectId; public GetMergeRequestDetailRequest() { super("codeup", "2020-04-14", "GetMergeRequestDetail"); setUriPattern("/api/v4/projects/[ProjectId]/merge_request/[MergeRequestId]"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public Long getMergeRequestId() { return this.mergeRequestId; } public void setMergeRequestId(Long mergeRequestId) { this.mergeRequestId = mergeRequestId; if(mergeRequestId != null){ putPathParameter("MergeRequestId", mergeRequestId.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<GetMergeRequestDetailResponse> getResponseClass() { return GetMergeRequestDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetMergeRequestDetailResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetMergeRequestDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetMergeRequestDetailResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 acceptedRevision; private Integer aheadCommitCount; private Integer behindCommitCount; private String createdAt; private String description; private Long id; private String mergeError; private String mergeStatus; private String mergeType; private String mergedRevision; private String nameWithNamespace; private Long projectId; private String sourceBranch; private String state; private String targetBranch; private String title; private String updatedAt; private String webUrl; private Boolean isSupportMerge; private List<AssigneeListItem> assigneeList; private ApproveCheckResult approveCheckResult; private Author author; public String getAcceptedRevision() { return this.acceptedRevision; } public void setAcceptedRevision(String acceptedRevision) { this.acceptedRevision = acceptedRevision; } public Integer getAheadCommitCount() { return this.aheadCommitCount; } public void setAheadCommitCount(Integer aheadCommitCount) { this.aheadCommitCount = aheadCommitCount; } public Integer getBehindCommitCount() { return this.behindCommitCount; } public void setBehindCommitCount(Integer behindCommitCount) { this.behindCommitCount = behindCommitCount; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getMergeError() { return this.mergeError; } public void setMergeError(String mergeError) { this.mergeError = mergeError; } public String getMergeStatus() { return this.mergeStatus; } public void setMergeStatus(String mergeStatus) { this.mergeStatus = mergeStatus; } public String getMergeType() { return this.mergeType; } public void setMergeType(String mergeType) { this.mergeType = mergeType; } public String getMergedRevision() { return this.mergedRevision; } public void setMergedRevision(String mergedRevision) { this.mergedRevision = mergedRevision; } public String getNameWithNamespace() { return this.nameWithNamespace; } public void setNameWithNamespace(String nameWithNamespace) { this.nameWithNamespace = nameWithNamespace; } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; } public String getSourceBranch() { return this.sourceBranch; } public void setSourceBranch(String sourceBranch) { this.sourceBranch = sourceBranch; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getTargetBranch() { return this.targetBranch; } public void setTargetBranch(String targetBranch) { this.targetBranch = targetBranch; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public String getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public String getWebUrl() { return this.webUrl; } public void setWebUrl(String webUrl) { this.webUrl = webUrl; } public Boolean getIsSupportMerge() { return this.isSupportMerge; } public void setIsSupportMerge(Boolean isSupportMerge) { this.isSupportMerge = isSupportMerge; } public List<AssigneeListItem> getAssigneeList() { return this.assigneeList; } public void setAssigneeList(List<AssigneeListItem> assigneeList) { this.assigneeList = assigneeList; } public ApproveCheckResult getApproveCheckResult() { return this.approveCheckResult; } public void setApproveCheckResult(ApproveCheckResult approveCheckResult) { this.approveCheckResult = approveCheckResult; } public Author getAuthor() { return this.author; } public void setAuthor(Author author) { this.author = author; } public static class AssigneeListItem { private String avatarUrl; private String externUserId; private String id; private String name; private String status; private String email; public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } } public static class ApproveCheckResult { private String totalCheckResult; private List<SatisfiedCheckResultsItem> satisfiedCheckResults; private List<UnsatisfiedCheckResultsItem> unsatisfiedCheckResults; public String getTotalCheckResult() { return this.totalCheckResult; } public void setTotalCheckResult(String totalCheckResult) { this.totalCheckResult = totalCheckResult; } public List<SatisfiedCheckResultsItem> getSatisfiedCheckResults() { return this.satisfiedCheckResults; } public void setSatisfiedCheckResults(List<SatisfiedCheckResultsItem> satisfiedCheckResults) { this.satisfiedCheckResults = satisfiedCheckResults; } public List<UnsatisfiedCheckResultsItem> getUnsatisfiedCheckResults() { return this.unsatisfiedCheckResults; } public void setUnsatisfiedCheckResults(List<UnsatisfiedCheckResultsItem> unsatisfiedCheckResults) { this.unsatisfiedCheckResults = unsatisfiedCheckResults; } public static class SatisfiedCheckResultsItem { private String checkName; private String checkStatus; private String checkType; private List<ExtraUsersItem> extraUsers; private List<String> satisfiedItems; private List<String> unsatisfiedItems; public String getCheckName() { return this.checkName; } public void setCheckName(String checkName) { this.checkName = checkName; } public String getCheckStatus() { return this.checkStatus; } public void setCheckStatus(String checkStatus) { this.checkStatus = checkStatus; } public String getCheckType() { return this.checkType; } public void setCheckType(String checkType) { this.checkType = checkType; } public List<ExtraUsersItem> getExtraUsers() { return this.extraUsers; } public void setExtraUsers(List<ExtraUsersItem> extraUsers) { this.extraUsers = extraUsers; } public List<String> getSatisfiedItems() { return this.satisfiedItems; } public void setSatisfiedItems(List<String> satisfiedItems) { this.satisfiedItems = satisfiedItems; } public List<String> getUnsatisfiedItems() { return this.unsatisfiedItems; } public void setUnsatisfiedItems(List<String> unsatisfiedItems) { this.unsatisfiedItems = unsatisfiedItems; } public static class ExtraUsersItem { private String avatarUrl; private String externUserId; private Long id; private String name; public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } public static class UnsatisfiedCheckResultsItem { private String checkName; private String checkStatus; private String checkType; private List<ExtraUsersItem4> extraUsers3; private List<String> satisfiedItems1; private List<String> unsatisfiedItems2; public String getCheckName() { return this.checkName; } public void setCheckName(String checkName) { this.checkName = checkName; } public String getCheckStatus() { return this.checkStatus; } public void setCheckStatus(String checkStatus) { this.checkStatus = checkStatus; } public String getCheckType() { return this.checkType; } public void setCheckType(String checkType) { this.checkType = checkType; } public List<ExtraUsersItem4> getExtraUsers3() { return this.extraUsers3; } public void setExtraUsers3(List<ExtraUsersItem4> extraUsers3) { this.extraUsers3 = extraUsers3; } public List<String> getSatisfiedItems1() { return this.satisfiedItems1; } public void setSatisfiedItems1(List<String> satisfiedItems1) { this.satisfiedItems1 = satisfiedItems1; } public List<String> getUnsatisfiedItems2() { return this.unsatisfiedItems2; } public void setUnsatisfiedItems2(List<String> unsatisfiedItems2) { this.unsatisfiedItems2 = unsatisfiedItems2; } public static class ExtraUsersItem4 { private String avatarUrl; private String externUserId; private Long id; private String name; public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } } public static class Author { private String avatarUrl; private String externUserId; private Long id; private String name; public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } @Override public GetMergeRequestDetailResponse getInstance(UnmarshallerContext context) { return GetMergeRequestDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetMergeRequestSettingRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetMergeRequestSettingRequest extends RoaAcsRequest<GetMergeRequestSettingResponse> { private String organizationId; private String accessToken; private Long projectId; public GetMergeRequestSettingRequest() { super("codeup", "2020-04-14", "GetMergeRequestSetting"); setUriPattern("/api/v4/projects/[ProjectId]/settings/merge_requests"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<GetMergeRequestSettingResponse> getResponseClass() { return GetMergeRequestSettingResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetMergeRequestSettingResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetMergeRequestSettingResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetMergeRequestSettingResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Boolean isEnableSmartCodeReview; private List<String> mergeTypes; public Boolean getIsEnableSmartCodeReview() { return this.isEnableSmartCodeReview; } public void setIsEnableSmartCodeReview(Boolean isEnableSmartCodeReview) { this.isEnableSmartCodeReview = isEnableSmartCodeReview; } public List<String> getMergeTypes() { return this.mergeTypes; } public void setMergeTypes(List<String> mergeTypes) { this.mergeTypes = mergeTypes; } } @Override public GetMergeRequestSettingResponse getInstance(UnmarshallerContext context) { return GetMergeRequestSettingResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetOrganizationSecurityCenterStatusRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetOrganizationSecurityCenterStatusRequest extends RoaAcsRequest<GetOrganizationSecurityCenterStatusResponse> { private String accessToken; public GetOrganizationSecurityCenterStatusRequest() { super("codeup", "2020-04-14", "GetOrganizationSecurityCenterStatus"); setUriPattern("/api/v4/organization/security/status"); setMethod(MethodType.GET); } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } @Override public Class<GetOrganizationSecurityCenterStatusResponse> getResponseClass() { return GetOrganizationSecurityCenterStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetOrganizationSecurityCenterStatusResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetOrganizationSecurityCenterStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetOrganizationSecurityCenterStatusResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Boolean enable; public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public GetOrganizationSecurityCenterStatusResponse getInstance(UnmarshallerContext context) { return GetOrganizationSecurityCenterStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetProjectMemberRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetProjectMemberRequest extends RoaAcsRequest<GetProjectMemberResponse> { private String organizationId; private String subUserId; private String accessToken; private Long projectId; private Long userId; public GetProjectMemberRequest() { super("codeup", "2020-04-14", "GetProjectMember"); setUriPattern("/api/v3/projects/[ProjectId]/members/[UserId]"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; if(userId != null){ putPathParameter("UserId", userId.toString()); } } @Override public Class<GetProjectMemberResponse> getResponseClass() { return GetProjectMemberResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetProjectMemberResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetProjectMemberResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetProjectMemberResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Long id; private String externUserId; private String avatarUrl; private String name; private Integer accessLevel; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; } } @Override public GetProjectMemberResponse getInstance(UnmarshallerContext context) { return GetProjectMemberResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetRepositoryCommitRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetRepositoryCommitRequest extends RoaAcsRequest<GetRepositoryCommitResponse> { private String organizationId; private String accessToken; private Long projectId; private String sha; public GetRepositoryCommitRequest() { super("codeup", "2020-04-14", "GetRepositoryCommit"); setUriPattern("/api/v4/projects/[ProjectId]/repository/commits/[Sha]"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } public String getSha() { return this.sha; } public void setSha(String sha) { this.sha = sha; if(sha != null){ putPathParameter("Sha", sha); } } @Override public Class<GetRepositoryCommitResponse> getResponseClass() { return GetRepositoryCommitResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetRepositoryCommitResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetRepositoryCommitResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRepositoryCommitResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 authorDate; private String authorEmail; private String authorName; private String committedDate; private String committerEmail; private String committerName; private String createdAt; private String id; private String message; private String shortId; private String title; private List<String> parentIds; private Signature signature; public String getAuthorDate() { return this.authorDate; } public void setAuthorDate(String authorDate) { this.authorDate = authorDate; } public String getAuthorEmail() { return this.authorEmail; } public void setAuthorEmail(String authorEmail) { this.authorEmail = authorEmail; } public String getAuthorName() { return this.authorName; } public void setAuthorName(String authorName) { this.authorName = authorName; } public String getCommittedDate() { return this.committedDate; } public void setCommittedDate(String committedDate) { this.committedDate = committedDate; } public String getCommitterEmail() { return this.committerEmail; } public void setCommitterEmail(String committerEmail) { this.committerEmail = committerEmail; } public String getCommitterName() { return this.committerName; } public void setCommitterName(String committerName) { this.committerName = committerName; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getShortId() { return this.shortId; } public void setShortId(String shortId) { this.shortId = shortId; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public List<String> getParentIds() { return this.parentIds; } public void setParentIds(List<String> parentIds) { this.parentIds = parentIds; } public Signature getSignature() { return this.signature; } public void setSignature(Signature signature) { this.signature = signature; } public static class Signature { private String gpgKeyId; private String verificationStatus; public String getGpgKeyId() { return this.gpgKeyId; } public void setGpgKeyId(String gpgKeyId) { this.gpgKeyId = gpgKeyId; } public String getVerificationStatus() { return this.verificationStatus; } public void setVerificationStatus(String verificationStatus) { this.verificationStatus = verificationStatus; } } } @Override public GetRepositoryCommitResponse getInstance(UnmarshallerContext context) { return GetRepositoryCommitResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetRepositoryInfoRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetRepositoryInfoRequest extends RoaAcsRequest<GetRepositoryInfoResponse> { private String organizationId; private String identity; private String accessToken; public GetRepositoryInfoRequest() { super("codeup", "2020-04-14", "GetRepositoryInfo"); setUriPattern("/api/v3/projects/info"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getIdentity() { return this.identity; } public void setIdentity(String identity) { this.identity = identity; if(identity != null){ putQueryParameter("Identity", identity); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } @Override public Class<GetRepositoryInfoResponse> getResponseClass() { return GetRepositoryInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetRepositoryInfoResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetRepositoryInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRepositoryInfoResponse extends AcsResponse { private Integer errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Long id; private String sshUrlToRepo; private String description; private String defaultBranch; private Boolean _public; private String visibilityLevel; private String httpUrlToRepo; private String webUrl; private String name; private String nameWithNamespace; private String path; private String pathWithNamespace; private String createdAt; private String lastActivityAt; private Long creatorId; private Boolean archive; private String avatarUrl; private Boolean demoProjectStatus; private Integer accessLevel; private String importStatus; private String importUrl; private Boolean importFromSubversion; private List<String> tagList; private Namespace namespace; private Permissions permissions; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getSshUrlToRepo() { return this.sshUrlToRepo; } public void setSshUrlToRepo(String sshUrlToRepo) { this.sshUrlToRepo = sshUrlToRepo; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getDefaultBranch() { return this.defaultBranch; } public void setDefaultBranch(String defaultBranch) { this.defaultBranch = defaultBranch; } public Boolean get_Public() { return this._public; } public void set_Public(Boolean _public) { this._public = _public; } public String getVisibilityLevel() { return this.visibilityLevel; } public void setVisibilityLevel(String visibilityLevel) { this.visibilityLevel = visibilityLevel; } public String getHttpUrlToRepo() { return this.httpUrlToRepo; } public void setHttpUrlToRepo(String httpUrlToRepo) { this.httpUrlToRepo = httpUrlToRepo; } public String getWebUrl() { return this.webUrl; } public void setWebUrl(String webUrl) { this.webUrl = webUrl; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getNameWithNamespace() { return this.nameWithNamespace; } public void setNameWithNamespace(String nameWithNamespace) { this.nameWithNamespace = nameWithNamespace; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public String getPathWithNamespace() { return this.pathWithNamespace; } public void setPathWithNamespace(String pathWithNamespace) { this.pathWithNamespace = pathWithNamespace; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getLastActivityAt() { return this.lastActivityAt; } public void setLastActivityAt(String lastActivityAt) { this.lastActivityAt = lastActivityAt; } public Long getCreatorId() { return this.creatorId; } public void setCreatorId(Long creatorId) { this.creatorId = creatorId; } public Boolean getArchive() { return this.archive; } public void setArchive(Boolean archive) { this.archive = archive; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public Boolean getDemoProjectStatus() { return this.demoProjectStatus; } public void setDemoProjectStatus(Boolean demoProjectStatus) { this.demoProjectStatus = demoProjectStatus; } public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; } public String getImportStatus() { return this.importStatus; } public void setImportStatus(String importStatus) { this.importStatus = importStatus; } public String getImportUrl() { return this.importUrl; } public void setImportUrl(String importUrl) { this.importUrl = importUrl; } public Boolean getImportFromSubversion() { return this.importFromSubversion; } public void setImportFromSubversion(Boolean importFromSubversion) { this.importFromSubversion = importFromSubversion; } public List<String> getTagList() { return this.tagList; } public void setTagList(List<String> tagList) { this.tagList = tagList; } public Namespace getNamespace() { return this.namespace; } public void setNamespace(Namespace namespace) { this.namespace = namespace; } public Permissions getPermissions() { return this.permissions; } public void setPermissions(Permissions permissions) { this.permissions = permissions; } public static class Namespace { private Long id; private String name; private String path; private Long ownerId; private String createdAt; private String updatedAt; private String description; private String state; private String avatar; private Boolean _public; private String visibilityLevel; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getAvatar() { return this.avatar; } public void setAvatar(String avatar) { this.avatar = avatar; } public Boolean get_Public() { return this._public; } public void set_Public(Boolean _public) { this._public = _public; } public String getVisibilityLevel() { return this.visibilityLevel; } public void setVisibilityLevel(String visibilityLevel) { this.visibilityLevel = visibilityLevel; } } public static class Permissions { private ProjectAccess projectAccess; private GroupAccess groupAccess; public ProjectAccess getProjectAccess() { return this.projectAccess; } public void setProjectAccess(ProjectAccess projectAccess) { this.projectAccess = projectAccess; } public GroupAccess getGroupAccess() { return this.groupAccess; } public void setGroupAccess(GroupAccess groupAccess) { this.groupAccess = groupAccess; } public static class ProjectAccess { private Integer accessLevel; public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; } } public static class GroupAccess { private Integer accessLevel; public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; } } } } @Override public GetRepositoryInfoResponse getInstance(UnmarshallerContext context) { return GetRepositoryInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetRepositoryTagRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetRepositoryTagRequest extends RoaAcsRequest<GetRepositoryTagResponse> { private String organizationId; private String tagName; private String accessToken; private Long projectId; public GetRepositoryTagRequest() { super("codeup", "2020-04-14", "GetRepositoryTag"); setUriPattern("/api/v3/projects/[ProjectId]/repository/tags/[TagName]"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getTagName() { return this.tagName; } public void setTagName(String tagName) { this.tagName = tagName; if(tagName != null){ putPathParameter("TagName", tagName); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<GetRepositoryTagResponse> getResponseClass() { return GetRepositoryTagResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetRepositoryTagResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetRepositoryTagResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRepositoryTagResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String id; private String name; private String message; private Commit commit; private Signature signature; public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Commit getCommit() { return this.commit; } public void setCommit(Commit commit) { this.commit = commit; } public Signature getSignature() { return this.signature; } public void setSignature(Signature signature) { this.signature = signature; } public static class Commit { private String id; private String shortId; private String title; private String authorName; private String authorEmail; private String createdAt; private String message; private String authoredDate; private String committedDate; private String committerEmail; private String committerName; private List<String> parentIds; private Signature1 signature1; public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getShortId() { return this.shortId; } public void setShortId(String shortId) { this.shortId = shortId; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public String getAuthorName() { return this.authorName; } public void setAuthorName(String authorName) { this.authorName = authorName; } public String getAuthorEmail() { return this.authorEmail; } public void setAuthorEmail(String authorEmail) { this.authorEmail = authorEmail; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getAuthoredDate() { return this.authoredDate; } public void setAuthoredDate(String authoredDate) { this.authoredDate = authoredDate; } public String getCommittedDate() { return this.committedDate; } public void setCommittedDate(String committedDate) { this.committedDate = committedDate; } public String getCommitterEmail() { return this.committerEmail; } public void setCommitterEmail(String committerEmail) { this.committerEmail = committerEmail; } public String getCommitterName() { return this.committerName; } public void setCommitterName(String committerName) { this.committerName = committerName; } public List<String> getParentIds() { return this.parentIds; } public void setParentIds(List<String> parentIds) { this.parentIds = parentIds; } public Signature1 getSignature1() { return this.signature1; } public void setSignature1(Signature1 signature1) { this.signature1 = signature1; } public static class Signature1 { private String gpgKeyId; private String verificationStatus; public String getGpgKeyId() { return this.gpgKeyId; } public void setGpgKeyId(String gpgKeyId) { this.gpgKeyId = gpgKeyId; } public String getVerificationStatus() { return this.verificationStatus; } public void setVerificationStatus(String verificationStatus) { this.verificationStatus = verificationStatus; } } } public static class Signature { private String gpgKeyId; private String verificationStatus; public String getGpgKeyId() { return this.gpgKeyId; } public void setGpgKeyId(String gpgKeyId) { this.gpgKeyId = gpgKeyId; } public String getVerificationStatus() { return this.verificationStatus; } public void setVerificationStatus(String verificationStatus) { this.verificationStatus = verificationStatus; } } } @Override public GetRepositoryTagResponse getInstance(UnmarshallerContext context) { return GetRepositoryTagResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetRepositoryTagV2Request.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetRepositoryTagV2Request extends RoaAcsRequest<GetRepositoryTagV2Response> { private String organizationId; private String tagName; private String accessToken; private Long projectId; public GetRepositoryTagV2Request() { super("codeup", "2020-04-14", "GetRepositoryTagV2"); setUriPattern("/api/v3/projects/[ProjectId]/repository/tag/info"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getTagName() { return this.tagName; } public void setTagName(String tagName) { this.tagName = tagName; if(tagName != null){ putQueryParameter("TagName", tagName); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<GetRepositoryTagV2Response> getResponseClass() { return GetRepositoryTagV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetRepositoryTagV2Response.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetRepositoryTagV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRepositoryTagV2Response extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Result result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 id; private String message; private String name; private Commit commit; private Signature signature; public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Commit getCommit() { return this.commit; } public void setCommit(Commit commit) { this.commit = commit; } public Signature getSignature() { return this.signature; } public void setSignature(Signature signature) { this.signature = signature; } public static class Commit { private String authorEmail; private String authorName; private String authoredDate; private String committedDate; private String committerEmail; private String committerName; private String createdAt; private String id; private String message; private String shortId; private String title; private List<String> parentIds; private Signature1 signature1; public String getAuthorEmail() { return this.authorEmail; } public void setAuthorEmail(String authorEmail) { this.authorEmail = authorEmail; } public String getAuthorName() { return this.authorName; } public void setAuthorName(String authorName) { this.authorName = authorName; } public String getAuthoredDate() { return this.authoredDate; } public void setAuthoredDate(String authoredDate) { this.authoredDate = authoredDate; } public String getCommittedDate() { return this.committedDate; } public void setCommittedDate(String committedDate) { this.committedDate = committedDate; } public String getCommitterEmail() { return this.committerEmail; } public void setCommitterEmail(String committerEmail) { this.committerEmail = committerEmail; } public String getCommitterName() { return this.committerName; } public void setCommitterName(String committerName) { this.committerName = committerName; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getShortId() { return this.shortId; } public void setShortId(String shortId) { this.shortId = shortId; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public List<String> getParentIds() { return this.parentIds; } public void setParentIds(List<String> parentIds) { this.parentIds = parentIds; } public Signature1 getSignature1() { return this.signature1; } public void setSignature1(Signature1 signature1) { this.signature1 = signature1; } public static class Signature1 { private String gpgKeyId; private String verificationStatus; public String getGpgKeyId() { return this.gpgKeyId; } public void setGpgKeyId(String gpgKeyId) { this.gpgKeyId = gpgKeyId; } public String getVerificationStatus() { return this.verificationStatus; } public void setVerificationStatus(String verificationStatus) { this.verificationStatus = verificationStatus; } } } public static class Signature { private String gpgKeyId; private String verificationStatus; public String getGpgKeyId() { return this.gpgKeyId; } public void setGpgKeyId(String gpgKeyId) { this.gpgKeyId = gpgKeyId; } public String getVerificationStatus() { return this.verificationStatus; } public void setVerificationStatus(String verificationStatus) { this.verificationStatus = verificationStatus; } } } @Override public GetRepositoryTagV2Response getInstance(UnmarshallerContext context) { return GetRepositoryTagV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetUserInfoRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetUserInfoRequest extends RoaAcsRequest<GetUserInfoResponse> { private String organizationId; private String accessToken; public GetUserInfoRequest() { super("codeup", "2020-04-14", "GetUserInfo"); setUriPattern("/api/v3/user/current"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } @Override public Class<GetUserInfoResponse> getResponseClass() { return GetUserInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/GetUserInfoResponse.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.codeup.model.v20200414; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.GetUserInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetUserInfoResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Long id; private String externalUserId; private String username; private String name; private String email; private String avatarUrl; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getExternalUserId() { return this.externalUserId; } public void setExternalUserId(String externalUserId) { this.externalUserId = externalUserId; } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } } @Override public GetUserInfoResponse getInstance(UnmarshallerContext context) { return GetUserInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListGroupMemberRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListGroupMemberRequest extends RoaAcsRequest<ListGroupMemberResponse> { private String organizationId; private String subUserId; private Long groupId; private Long pageSize; private String accessToken; private Long page; public ListGroupMemberRequest() { super("codeup", "2020-04-14", "ListGroupMember"); setUriPattern("/api/v3/groups/[GroupId]/members"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; if(groupId != null){ putPathParameter("GroupId", groupId.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } @Override public Class<ListGroupMemberResponse> getResponseClass() { return ListGroupMemberResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListGroupMemberResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListGroupMemberResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListGroupMemberResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Long total; private List<ResultItem> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Integer accessLevel; private String externUserId; private Long id; private String state; private String avatarUrl; private String email; public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } } @Override public ListGroupMemberResponse getInstance(UnmarshallerContext context) { return ListGroupMemberResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListGroupRepositoriesRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListGroupRepositoriesRequest extends RoaAcsRequest<ListGroupRepositoriesResponse> { private String accessToken; private Boolean isMember; private String organizationId; private String search; private String subUserId; private String identity; private Long pageSize; private Long page; public ListGroupRepositoriesRequest() { super("codeup", "2020-04-14", "ListGroupRepositories"); setUriPattern("/api/v3/groups/[Identity]/projects"); setMethod(MethodType.GET); } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Boolean getIsMember() { return this.isMember; } public void setIsMember(Boolean isMember) { this.isMember = isMember; if(isMember != null){ putQueryParameter("IsMember", isMember.toString()); } } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSearch() { return this.search; } public void setSearch(String search) { this.search = search; if(search != null){ putQueryParameter("Search", search); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getIdentity() { return this.identity; } public void setIdentity(String identity) { this.identity = identity; if(identity != null){ putPathParameter("Identity", identity); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } @Override public Class<ListGroupRepositoriesResponse> getResponseClass() { return ListGroupRepositoriesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListGroupRepositoriesResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListGroupRepositoriesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListGroupRepositoriesResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Long total; private List<ResultItem> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Boolean archive; private String createdAt; private String updatedAt; private String lastActivityAt; private Long id; private Long creatorId; private String name; private String nameWithNamespace; private String path; private String pathWithNamespace; private Long namespaceId; private String httpCloneUrl; private String sshCloneUrl; private Integer visibilityLevel; private String webUrl; private String importStatus; public Boolean getArchive() { return this.archive; } public void setArchive(Boolean archive) { this.archive = archive; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public String getLastActivityAt() { return this.lastActivityAt; } public void setLastActivityAt(String lastActivityAt) { this.lastActivityAt = lastActivityAt; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Long getCreatorId() { return this.creatorId; } public void setCreatorId(Long creatorId) { this.creatorId = creatorId; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getNameWithNamespace() { return this.nameWithNamespace; } public void setNameWithNamespace(String nameWithNamespace) { this.nameWithNamespace = nameWithNamespace; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public String getPathWithNamespace() { return this.pathWithNamespace; } public void setPathWithNamespace(String pathWithNamespace) { this.pathWithNamespace = pathWithNamespace; } public Long getNamespaceId() { return this.namespaceId; } public void setNamespaceId(Long namespaceId) { this.namespaceId = namespaceId; } public String getHttpCloneUrl() { return this.httpCloneUrl; } public void setHttpCloneUrl(String httpCloneUrl) { this.httpCloneUrl = httpCloneUrl; } public String getSshCloneUrl() { return this.sshCloneUrl; } public void setSshCloneUrl(String sshCloneUrl) { this.sshCloneUrl = sshCloneUrl; } public Integer getVisibilityLevel() { return this.visibilityLevel; } public void setVisibilityLevel(Integer visibilityLevel) { this.visibilityLevel = visibilityLevel; } public String getWebUrl() { return this.webUrl; } public void setWebUrl(String webUrl) { this.webUrl = webUrl; } public String getImportStatus() { return this.importStatus; } public void setImportStatus(String importStatus) { this.importStatus = importStatus; } } @Override public ListGroupRepositoriesResponse getInstance(UnmarshallerContext context) { return ListGroupRepositoriesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListGroupsRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListGroupsRequest extends RoaAcsRequest<ListGroupsResponse> { private String organizationId; private Boolean includePersonal; private String search; private String subUserId; private Long pageSize; private String accessToken; private Long page; public ListGroupsRequest() { super("codeup", "2020-04-14", "ListGroups"); setUriPattern("/api/v3/groups/all"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public Boolean getIncludePersonal() { return this.includePersonal; } public void setIncludePersonal(Boolean includePersonal) { this.includePersonal = includePersonal; if(includePersonal != null){ putQueryParameter("IncludePersonal", includePersonal.toString()); } } public String getSearch() { return this.search; } public void setSearch(String search) { this.search = search; if(search != null){ putQueryParameter("Search", search); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } @Override public Class<ListGroupsResponse> getResponseClass() { return ListGroupsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListGroupsResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListGroupsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListGroupsResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Long total; private List<ResultItem> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Long id; private String createdAt; private String updatedAt; private Integer accessLevel; private String description; private String name; private String nameWithNamespace; private Long ownerId; private Long parentId; private String path; private String pathWithNamespace; private String type; private String visibilityLevel; private String webUrl; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getNameWithNamespace() { return this.nameWithNamespace; } public void setNameWithNamespace(String nameWithNamespace) { this.nameWithNamespace = nameWithNamespace; } public Long getOwnerId() { return this.ownerId; } public void setOwnerId(Long ownerId) { this.ownerId = ownerId; } public Long getParentId() { return this.parentId; } public void setParentId(Long parentId) { this.parentId = parentId; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public String getPathWithNamespace() { return this.pathWithNamespace; } public void setPathWithNamespace(String pathWithNamespace) { this.pathWithNamespace = pathWithNamespace; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getVisibilityLevel() { return this.visibilityLevel; } public void setVisibilityLevel(String visibilityLevel) { this.visibilityLevel = visibilityLevel; } public String getWebUrl() { return this.webUrl; } public void setWebUrl(String webUrl) { this.webUrl = webUrl; } } @Override public ListGroupsResponse getInstance(UnmarshallerContext context) { return ListGroupsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListMergeRequestCommentsRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListMergeRequestCommentsRequest extends RoaAcsRequest<ListMergeRequestCommentsResponse> { private String organizationId; private Long mergeRequestId; private String fromCommit; private String accessToken; private String toCommit; private Long projectId; public ListMergeRequestCommentsRequest() { super("codeup", "2020-04-14", "ListMergeRequestComments"); setUriPattern("/api/v4/projects/[ProjectId]/merge_request/[MergeRequestId]/comments"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public Long getMergeRequestId() { return this.mergeRequestId; } public void setMergeRequestId(Long mergeRequestId) { this.mergeRequestId = mergeRequestId; if(mergeRequestId != null){ putPathParameter("MergeRequestId", mergeRequestId.toString()); } } public String getFromCommit() { return this.fromCommit; } public void setFromCommit(String fromCommit) { this.fromCommit = fromCommit; if(fromCommit != null){ putQueryParameter("FromCommit", fromCommit); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public String getToCommit() { return this.toCommit; } public void setToCommit(String toCommit) { this.toCommit = toCommit; if(toCommit != null){ putQueryParameter("ToCommit", toCommit); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<ListMergeRequestCommentsResponse> getResponseClass() { return ListMergeRequestCommentsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListMergeRequestCommentsResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListMergeRequestCommentsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListMergeRequestCommentsResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Long total; private List<ResultItem> result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Integer closed; private String createdAt; private Long id; private Boolean isDraft; private Long line; private String note; private Boolean outDated; private Long parentNoteId; private String path; private Long projectId; private String rangeContext; private String side; private String updatedAt; private Author author; public Integer getClosed() { return this.closed; } public void setClosed(Integer closed) { this.closed = closed; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Boolean getIsDraft() { return this.isDraft; } public void setIsDraft(Boolean isDraft) { this.isDraft = isDraft; } public Long getLine() { return this.line; } public void setLine(Long line) { this.line = line; } public String getNote() { return this.note; } public void setNote(String note) { this.note = note; } public Boolean getOutDated() { return this.outDated; } public void setOutDated(Boolean outDated) { this.outDated = outDated; } public Long getParentNoteId() { return this.parentNoteId; } public void setParentNoteId(Long parentNoteId) { this.parentNoteId = parentNoteId; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; } public String getRangeContext() { return this.rangeContext; } public void setRangeContext(String rangeContext) { this.rangeContext = rangeContext; } public String getSide() { return this.side; } public void setSide(String side) { this.side = side; } public String getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public Author getAuthor() { return this.author; } public void setAuthor(Author author) { this.author = author; } public static class Author { private String avatarUrl; private String email; private String externUserId; private Long id; private String name; public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } @Override public ListMergeRequestCommentsResponse getInstance(UnmarshallerContext context) { return ListMergeRequestCommentsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListMergeRequestsRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListMergeRequestsRequest extends RoaAcsRequest<ListMergeRequestsResponse> { private String beforeDate; private String assigneeIdList; private String accessToken; private String subscriberCodeupIdList; private String afterDate; private String organizationId; private String groupIdList; private String search; private String authorCodeupIdList; private String authorIdList; private Long pageSize; private String projectIdList; private Long page; private String assigneeCodeupIdList; private String state; private String order; public ListMergeRequestsRequest() { super("codeup", "2020-04-14", "ListMergeRequests"); setUriPattern("/api/v4/merge_requests/advanced_search"); setMethod(MethodType.GET); } public String getBeforeDate() { return this.beforeDate; } public void setBeforeDate(String beforeDate) { this.beforeDate = beforeDate; if(beforeDate != null){ putQueryParameter("BeforeDate", beforeDate); } } public String getAssigneeIdList() { return this.assigneeIdList; } public void setAssigneeIdList(String assigneeIdList) { this.assigneeIdList = assigneeIdList; if(assigneeIdList != null){ putQueryParameter("AssigneeIdList", assigneeIdList); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public String getSubscriberCodeupIdList() { return this.subscriberCodeupIdList; } public void setSubscriberCodeupIdList(String subscriberCodeupIdList) { this.subscriberCodeupIdList = subscriberCodeupIdList; if(subscriberCodeupIdList != null){ putQueryParameter("SubscriberCodeupIdList", subscriberCodeupIdList); } } public String getAfterDate() { return this.afterDate; } public void setAfterDate(String afterDate) { this.afterDate = afterDate; if(afterDate != null){ putQueryParameter("AfterDate", afterDate); } } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getGroupIdList() { return this.groupIdList; } public void setGroupIdList(String groupIdList) { this.groupIdList = groupIdList; if(groupIdList != null){ putQueryParameter("GroupIdList", groupIdList); } } public String getSearch() { return this.search; } public void setSearch(String search) { this.search = search; if(search != null){ putQueryParameter("Search", search); } } public String getAuthorCodeupIdList() { return this.authorCodeupIdList; } public void setAuthorCodeupIdList(String authorCodeupIdList) { this.authorCodeupIdList = authorCodeupIdList; if(authorCodeupIdList != null){ putQueryParameter("AuthorCodeupIdList", authorCodeupIdList); } } public String getAuthorIdList() { return this.authorIdList; } public void setAuthorIdList(String authorIdList) { this.authorIdList = authorIdList; if(authorIdList != null){ putQueryParameter("AuthorIdList", authorIdList); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getProjectIdList() { return this.projectIdList; } public void setProjectIdList(String projectIdList) { this.projectIdList = projectIdList; if(projectIdList != null){ putQueryParameter("ProjectIdList", projectIdList); } } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public String getAssigneeCodeupIdList() { return this.assigneeCodeupIdList; } public void setAssigneeCodeupIdList(String assigneeCodeupIdList) { this.assigneeCodeupIdList = assigneeCodeupIdList; if(assigneeCodeupIdList != null){ putQueryParameter("AssigneeCodeupIdList", assigneeCodeupIdList); } } public String getState() { return this.state; } public void setState(String state) { this.state = state; if(state != null){ putQueryParameter("State", state); } } public String getOrder() { return this.order; } public void setOrder(String order) { this.order = order; if(order != null){ putQueryParameter("Order", order); } } @Override public Class<ListMergeRequestsResponse> getResponseClass() { return ListMergeRequestsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListMergeRequestsResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListMergeRequestsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListMergeRequestsResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Long total; private List<ResultItem> result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String acceptedRevision; private Integer aheadCommitCount; private Integer behindCommitCount; private String createdAt; private String description; private Long id; private String mergeError; private String mergeStatus; private String mergeType; private String mergedRevision; private String nameWithNamespace; private Long projectId; private String sourceBranch; private String state; private String targetBranch; private String title; private String updatedAt; private String webUrl; private Boolean isSupportMerge; private List<AssigneeListItem> assigneeList; private ApproveCheckResult approveCheckResult; private Author author; public String getAcceptedRevision() { return this.acceptedRevision; } public void setAcceptedRevision(String acceptedRevision) { this.acceptedRevision = acceptedRevision; } public Integer getAheadCommitCount() { return this.aheadCommitCount; } public void setAheadCommitCount(Integer aheadCommitCount) { this.aheadCommitCount = aheadCommitCount; } public Integer getBehindCommitCount() { return this.behindCommitCount; } public void setBehindCommitCount(Integer behindCommitCount) { this.behindCommitCount = behindCommitCount; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getMergeError() { return this.mergeError; } public void setMergeError(String mergeError) { this.mergeError = mergeError; } public String getMergeStatus() { return this.mergeStatus; } public void setMergeStatus(String mergeStatus) { this.mergeStatus = mergeStatus; } public String getMergeType() { return this.mergeType; } public void setMergeType(String mergeType) { this.mergeType = mergeType; } public String getMergedRevision() { return this.mergedRevision; } public void setMergedRevision(String mergedRevision) { this.mergedRevision = mergedRevision; } public String getNameWithNamespace() { return this.nameWithNamespace; } public void setNameWithNamespace(String nameWithNamespace) { this.nameWithNamespace = nameWithNamespace; } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; } public String getSourceBranch() { return this.sourceBranch; } public void setSourceBranch(String sourceBranch) { this.sourceBranch = sourceBranch; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getTargetBranch() { return this.targetBranch; } public void setTargetBranch(String targetBranch) { this.targetBranch = targetBranch; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public String getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public String getWebUrl() { return this.webUrl; } public void setWebUrl(String webUrl) { this.webUrl = webUrl; } public Boolean getIsSupportMerge() { return this.isSupportMerge; } public void setIsSupportMerge(Boolean isSupportMerge) { this.isSupportMerge = isSupportMerge; } public List<AssigneeListItem> getAssigneeList() { return this.assigneeList; } public void setAssigneeList(List<AssigneeListItem> assigneeList) { this.assigneeList = assigneeList; } public ApproveCheckResult getApproveCheckResult() { return this.approveCheckResult; } public void setApproveCheckResult(ApproveCheckResult approveCheckResult) { this.approveCheckResult = approveCheckResult; } public Author getAuthor() { return this.author; } public void setAuthor(Author author) { this.author = author; } public static class AssigneeListItem { private String avatarUrl; private String externUserId; private String id; private String name; private String status; private String email; public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } } public static class ApproveCheckResult { private String totalCheckResult; private List<SatisfiedCheckResultsItem> satisfiedCheckResults; private List<UnsatisfiedCheckResultsItem> unsatisfiedCheckResults; public String getTotalCheckResult() { return this.totalCheckResult; } public void setTotalCheckResult(String totalCheckResult) { this.totalCheckResult = totalCheckResult; } public List<SatisfiedCheckResultsItem> getSatisfiedCheckResults() { return this.satisfiedCheckResults; } public void setSatisfiedCheckResults(List<SatisfiedCheckResultsItem> satisfiedCheckResults) { this.satisfiedCheckResults = satisfiedCheckResults; } public List<UnsatisfiedCheckResultsItem> getUnsatisfiedCheckResults() { return this.unsatisfiedCheckResults; } public void setUnsatisfiedCheckResults(List<UnsatisfiedCheckResultsItem> unsatisfiedCheckResults) { this.unsatisfiedCheckResults = unsatisfiedCheckResults; } public static class SatisfiedCheckResultsItem { private String checkName; private String checkStatus; private String checkType; private List<ExtraUsersItem> extraUsers; private List<String> satisfiedItems; private List<String> unsatisfiedItems; public String getCheckName() { return this.checkName; } public void setCheckName(String checkName) { this.checkName = checkName; } public String getCheckStatus() { return this.checkStatus; } public void setCheckStatus(String checkStatus) { this.checkStatus = checkStatus; } public String getCheckType() { return this.checkType; } public void setCheckType(String checkType) { this.checkType = checkType; } public List<ExtraUsersItem> getExtraUsers() { return this.extraUsers; } public void setExtraUsers(List<ExtraUsersItem> extraUsers) { this.extraUsers = extraUsers; } public List<String> getSatisfiedItems() { return this.satisfiedItems; } public void setSatisfiedItems(List<String> satisfiedItems) { this.satisfiedItems = satisfiedItems; } public List<String> getUnsatisfiedItems() { return this.unsatisfiedItems; } public void setUnsatisfiedItems(List<String> unsatisfiedItems) { this.unsatisfiedItems = unsatisfiedItems; } public static class ExtraUsersItem { private String avatarUrl; private String externUserId; private Long id; private String name; public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } public static class UnsatisfiedCheckResultsItem { private String checkName; private String checkStatus; private String checkType; private List<ExtraUsersItem4> extraUsers3; private List<String> satisfiedItems1; private List<String> unsatisfiedItems2; public String getCheckName() { return this.checkName; } public void setCheckName(String checkName) { this.checkName = checkName; } public String getCheckStatus() { return this.checkStatus; } public void setCheckStatus(String checkStatus) { this.checkStatus = checkStatus; } public String getCheckType() { return this.checkType; } public void setCheckType(String checkType) { this.checkType = checkType; } public List<ExtraUsersItem4> getExtraUsers3() { return this.extraUsers3; } public void setExtraUsers3(List<ExtraUsersItem4> extraUsers3) { this.extraUsers3 = extraUsers3; } public List<String> getSatisfiedItems1() { return this.satisfiedItems1; } public void setSatisfiedItems1(List<String> satisfiedItems1) { this.satisfiedItems1 = satisfiedItems1; } public List<String> getUnsatisfiedItems2() { return this.unsatisfiedItems2; } public void setUnsatisfiedItems2(List<String> unsatisfiedItems2) { this.unsatisfiedItems2 = unsatisfiedItems2; } public static class ExtraUsersItem4 { private String avatarUrl; private String externUserId; private Long id; private String name; public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } } public static class Author { private String avatarUrl; private String externUserId; private Long id; private String name; public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } @Override public ListMergeRequestsResponse getInstance(UnmarshallerContext context) { return ListMergeRequestsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListOrganizationSecurityScoresRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListOrganizationSecurityScoresRequest extends RoaAcsRequest<ListOrganizationSecurityScoresResponse> { private String accessToken; public ListOrganizationSecurityScoresRequest() { super("codeup", "2020-04-14", "ListOrganizationSecurityScores"); setUriPattern("/api/v4/organization/security/scores"); setMethod(MethodType.GET); } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } @Override public Class<ListOrganizationSecurityScoresResponse> getResponseClass() { return ListOrganizationSecurityScoresResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListOrganizationSecurityScoresResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListOrganizationSecurityScoresResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListOrganizationSecurityScoresResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private List<ResultItem> result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Boolean enable; private Long id; private String organizationId; private OrganizationSecurityScore organizationSecurityScore; public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } public OrganizationSecurityScore getOrganizationSecurityScore() { return this.organizationSecurityScore; } public void setOrganizationSecurityScore(OrganizationSecurityScore organizationSecurityScore) { this.organizationSecurityScore = organizationSecurityScore; } public static class OrganizationSecurityScore { private Integer authorityControlScore; private Integer codeContentScore; private Integer memberBehaviorScore; private String level; public Integer getAuthorityControlScore() { return this.authorityControlScore; } public void setAuthorityControlScore(Integer authorityControlScore) { this.authorityControlScore = authorityControlScore; } public Integer getCodeContentScore() { return this.codeContentScore; } public void setCodeContentScore(Integer codeContentScore) { this.codeContentScore = codeContentScore; } public Integer getMemberBehaviorScore() { return this.memberBehaviorScore; } public void setMemberBehaviorScore(Integer memberBehaviorScore) { this.memberBehaviorScore = memberBehaviorScore; } public String getLevel() { return this.level; } public void setLevel(String level) { this.level = level; } } } @Override public ListOrganizationSecurityScoresResponse getInstance(UnmarshallerContext context) { return ListOrganizationSecurityScoresResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListOrganizationsRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListOrganizationsRequest extends RoaAcsRequest<ListOrganizationsResponse> { private Integer accessLevel; private Integer minAccessLevel; private String accessToken; public ListOrganizationsRequest() { super("codeup", "2020-04-14", "ListOrganizations"); setUriPattern("/api/v4/organization"); setMethod(MethodType.GET); } public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; if(accessLevel != null){ putQueryParameter("AccessLevel", accessLevel.toString()); } } public Integer getMinAccessLevel() { return this.minAccessLevel; } public void setMinAccessLevel(Integer minAccessLevel) { this.minAccessLevel = minAccessLevel; if(minAccessLevel != null){ putQueryParameter("MinAccessLevel", minAccessLevel.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } @Override public Class<ListOrganizationsResponse> getResponseClass() { return ListOrganizationsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListOrganizationsResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListOrganizationsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListOrganizationsResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private List<ResultItem> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String organizationId; private String organizationName; private String organizationRole; private Integer accessLevel; public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } public String getOrganizationName() { return this.organizationName; } public void setOrganizationName(String organizationName) { this.organizationName = organizationName; } public String getOrganizationRole() { return this.organizationRole; } public void setOrganizationRole(String organizationRole) { this.organizationRole = organizationRole; } public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; } } @Override public ListOrganizationsResponse getInstance(UnmarshallerContext context) { return ListOrganizationsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoriesRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRepositoriesRequest extends RoaAcsRequest<ListRepositoriesResponse> { private String accessToken; private Boolean archive; private String sort; private String organizationId; private String search; private Long pageSize; private Long page; private String order; public ListRepositoriesRequest() { super("codeup", "2020-04-14", "ListRepositories"); setUriPattern("/api/v3/projects/all"); setMethod(MethodType.GET); } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Boolean getArchive() { return this.archive; } public void setArchive(Boolean archive) { this.archive = archive; if(archive != null){ putQueryParameter("Archive", archive.toString()); } } public String getSort() { return this.sort; } public void setSort(String sort) { this.sort = sort; if(sort != null){ putQueryParameter("Sort", sort); } } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSearch() { return this.search; } public void setSearch(String search) { this.search = search; if(search != null){ putQueryParameter("Search", search); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public String getOrder() { return this.order; } public void setOrder(String order) { this.order = order; if(order != null){ putQueryParameter("Order", order); } } @Override public Class<ListRepositoriesResponse> getResponseClass() { return ListRepositoriesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoriesResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListRepositoriesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListRepositoriesResponse extends AcsResponse { private Integer errorCode; private String errorMessage; private String requestId; private Boolean success; private Long total; private List<ResultItem> result; public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Long id; private String description; private String visibilityLevel; private String webUrl; private String name; private String nameWithNamespace; private String path; private String pathWithNamespace; private String createdAt; private String lastActivityAt; private Boolean archive; private String avatarUrl; private Boolean demoProjectStatus; private Integer accessLevel; private String importStatus; private Long namespaceId; private String updatedAt; private Long starCount; private Boolean star; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getVisibilityLevel() { return this.visibilityLevel; } public void setVisibilityLevel(String visibilityLevel) { this.visibilityLevel = visibilityLevel; } public String getWebUrl() { return this.webUrl; } public void setWebUrl(String webUrl) { this.webUrl = webUrl; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getNameWithNamespace() { return this.nameWithNamespace; } public void setNameWithNamespace(String nameWithNamespace) { this.nameWithNamespace = nameWithNamespace; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public String getPathWithNamespace() { return this.pathWithNamespace; } public void setPathWithNamespace(String pathWithNamespace) { this.pathWithNamespace = pathWithNamespace; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getLastActivityAt() { return this.lastActivityAt; } public void setLastActivityAt(String lastActivityAt) { this.lastActivityAt = lastActivityAt; } public Boolean getArchive() { return this.archive; } public void setArchive(Boolean archive) { this.archive = archive; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public Boolean getDemoProjectStatus() { return this.demoProjectStatus; } public void setDemoProjectStatus(Boolean demoProjectStatus) { this.demoProjectStatus = demoProjectStatus; } public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; } public String getImportStatus() { return this.importStatus; } public void setImportStatus(String importStatus) { this.importStatus = importStatus; } public Long getNamespaceId() { return this.namespaceId; } public void setNamespaceId(Long namespaceId) { this.namespaceId = namespaceId; } public String getUpdatedAt() { return this.updatedAt; } public void setUpdatedAt(String updatedAt) { this.updatedAt = updatedAt; } public Long getStarCount() { return this.starCount; } public void setStarCount(Long starCount) { this.starCount = starCount; } public Boolean getStar() { return this.star; } public void setStar(Boolean star) { this.star = star; } } @Override public ListRepositoriesResponse getInstance(UnmarshallerContext context) { return ListRepositoriesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryBranchesRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRepositoryBranchesRequest extends RoaAcsRequest<ListRepositoryBranchesResponse> { private String organizationId; private String search; private String subUserId; private Long pageSize; private String accessToken; private Long page; private Long projectId; public ListRepositoryBranchesRequest() { super("codeup", "2020-04-14", "ListRepositoryBranches"); setUriPattern("/api/v3/projects/[ProjectId]/repository/branches"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSearch() { return this.search; } public void setSearch(String search) { this.search = search; if(search != null){ putQueryParameter("Search", search); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<ListRepositoryBranchesResponse> getResponseClass() { return ListRepositoryBranchesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryBranchesResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListRepositoryBranchesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListRepositoryBranchesResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Long total; private List<ResultItem> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String branchName; private Boolean protectedBranch; private CommitInfo commitInfo; public String getBranchName() { return this.branchName; } public void setBranchName(String branchName) { this.branchName = branchName; } public Boolean getProtectedBranch() { return this.protectedBranch; } public void setProtectedBranch(Boolean protectedBranch) { this.protectedBranch = protectedBranch; } public CommitInfo getCommitInfo() { return this.commitInfo; } public void setCommitInfo(CommitInfo commitInfo) { this.commitInfo = commitInfo; } public static class CommitInfo { private String id; private String shortId; private String title; private String authorName; private String authorEmail; private String createdAt; private String message; private String authorDate; private String committedDate; private String committerEmail; private String committerName; private List<String> parentIds; public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getShortId() { return this.shortId; } public void setShortId(String shortId) { this.shortId = shortId; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public String getAuthorName() { return this.authorName; } public void setAuthorName(String authorName) { this.authorName = authorName; } public String getAuthorEmail() { return this.authorEmail; } public void setAuthorEmail(String authorEmail) { this.authorEmail = authorEmail; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getAuthorDate() { return this.authorDate; } public void setAuthorDate(String authorDate) { this.authorDate = authorDate; } public String getCommittedDate() { return this.committedDate; } public void setCommittedDate(String committedDate) { this.committedDate = committedDate; } public String getCommitterEmail() { return this.committerEmail; } public void setCommitterEmail(String committerEmail) { this.committerEmail = committerEmail; } public String getCommitterName() { return this.committerName; } public void setCommitterName(String committerName) { this.committerName = committerName; } public List<String> getParentIds() { return this.parentIds; } public void setParentIds(List<String> parentIds) { this.parentIds = parentIds; } } } @Override public ListRepositoryBranchesResponse getInstance(UnmarshallerContext context) { return ListRepositoryBranchesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryCommitDiffRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRepositoryCommitDiffRequest extends RoaAcsRequest<ListRepositoryCommitDiffResponse> { private String organizationId; private String accessToken; private Integer contextLine; private Long projectId; private String sha; public ListRepositoryCommitDiffRequest() { super("codeup", "2020-04-14", "ListRepositoryCommitDiff"); setUriPattern("/api/v3/projects/[ProjectId]/repository/commits/[Sha]/diff"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Integer getContextLine() { return this.contextLine; } public void setContextLine(Integer contextLine) { this.contextLine = contextLine; if(contextLine != null){ putQueryParameter("ContextLine", contextLine.toString()); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } public String getSha() { return this.sha; } public void setSha(String sha) { this.sha = sha; if(sha != null){ putPathParameter("Sha", sha); } } @Override public Class<ListRepositoryCommitDiffResponse> getResponseClass() { return ListRepositoryCommitDiffResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryCommitDiffResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListRepositoryCommitDiffResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListRepositoryCommitDiffResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private List<ResultItem> result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String aMode; private String bMode; private Boolean deletedFile; private String diff; private Boolean isBinary; private Boolean isNewLfs; private Boolean isOldLfs; private Boolean newFile; private String newId; private String newPath; private String oldId; private String oldPath; private Boolean renamedFile; public String getAMode() { return this.aMode; } public void setAMode(String aMode) { this.aMode = aMode; } public String getBMode() { return this.bMode; } public void setBMode(String bMode) { this.bMode = bMode; } public Boolean getDeletedFile() { return this.deletedFile; } public void setDeletedFile(Boolean deletedFile) { this.deletedFile = deletedFile; } public String getDiff() { return this.diff; } public void setDiff(String diff) { this.diff = diff; } public Boolean getIsBinary() { return this.isBinary; } public void setIsBinary(Boolean isBinary) { this.isBinary = isBinary; } public Boolean getIsNewLfs() { return this.isNewLfs; } public void setIsNewLfs(Boolean isNewLfs) { this.isNewLfs = isNewLfs; } public Boolean getIsOldLfs() { return this.isOldLfs; } public void setIsOldLfs(Boolean isOldLfs) { this.isOldLfs = isOldLfs; } public Boolean getNewFile() { return this.newFile; } public void setNewFile(Boolean newFile) { this.newFile = newFile; } public String getNewId() { return this.newId; } public void setNewId(String newId) { this.newId = newId; } public String getNewPath() { return this.newPath; } public void setNewPath(String newPath) { this.newPath = newPath; } public String getOldId() { return this.oldId; } public void setOldId(String oldId) { this.oldId = oldId; } public String getOldPath() { return this.oldPath; } public void setOldPath(String oldPath) { this.oldPath = oldPath; } public Boolean getRenamedFile() { return this.renamedFile; } public void setRenamedFile(Boolean renamedFile) { this.renamedFile = renamedFile; } } @Override public ListRepositoryCommitDiffResponse getInstance(UnmarshallerContext context) { return ListRepositoryCommitDiffResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryCommitsRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRepositoryCommitsRequest extends RoaAcsRequest<ListRepositoryCommitsResponse> { private String accessToken; private Boolean showSignature; private String refName; private String organizationId; private String path; private String search; private Long pageSize; private Long page; private Long projectId; public ListRepositoryCommitsRequest() { super("codeup", "2020-04-14", "ListRepositoryCommits"); setUriPattern("/api/v4/projects/[ProjectId]/repository/commits"); setMethod(MethodType.GET); } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Boolean getShowSignature() { return this.showSignature; } public void setShowSignature(Boolean showSignature) { this.showSignature = showSignature; if(showSignature != null){ putQueryParameter("ShowSignature", showSignature.toString()); } } public String getRefName() { return this.refName; } public void setRefName(String refName) { this.refName = refName; if(refName != null){ putQueryParameter("RefName", refName); } } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; if(path != null){ putQueryParameter("Path", path); } } public String getSearch() { return this.search; } public void setSearch(String search) { this.search = search; if(search != null){ putQueryParameter("Search", search); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<ListRepositoryCommitsResponse> getResponseClass() { return ListRepositoryCommitsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryCommitsResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListRepositoryCommitsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListRepositoryCommitsResponse extends AcsResponse { private String errorCode; private String errorMessage; private String requestId; private Boolean success; private Long total; private List<ResultItem> result; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } 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 Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String authorDate; private String authorEmail; private String authorName; private String committedDate; private String committerEmail; private String committerName; private String createdAt; private String id; private String message; private String shortId; private String title; private List<String> parentIds; private Signature signature; public String getAuthorDate() { return this.authorDate; } public void setAuthorDate(String authorDate) { this.authorDate = authorDate; } public String getAuthorEmail() { return this.authorEmail; } public void setAuthorEmail(String authorEmail) { this.authorEmail = authorEmail; } public String getAuthorName() { return this.authorName; } public void setAuthorName(String authorName) { this.authorName = authorName; } public String getCommittedDate() { return this.committedDate; } public void setCommittedDate(String committedDate) { this.committedDate = committedDate; } public String getCommitterEmail() { return this.committerEmail; } public void setCommitterEmail(String committerEmail) { this.committerEmail = committerEmail; } public String getCommitterName() { return this.committerName; } public void setCommitterName(String committerName) { this.committerName = committerName; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getShortId() { return this.shortId; } public void setShortId(String shortId) { this.shortId = shortId; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public List<String> getParentIds() { return this.parentIds; } public void setParentIds(List<String> parentIds) { this.parentIds = parentIds; } public Signature getSignature() { return this.signature; } public void setSignature(Signature signature) { this.signature = signature; } public static class Signature { private String gpgKeyId; private String verificationStatus; public String getGpgKeyId() { return this.gpgKeyId; } public void setGpgKeyId(String gpgKeyId) { this.gpgKeyId = gpgKeyId; } public String getVerificationStatus() { return this.verificationStatus; } public void setVerificationStatus(String verificationStatus) { this.verificationStatus = verificationStatus; } } } @Override public ListRepositoryCommitsResponse getInstance(UnmarshallerContext context) { return ListRepositoryCommitsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryMemberRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRepositoryMemberRequest extends RoaAcsRequest<ListRepositoryMemberResponse> { private String organizationId; private String subUserId; private String query; private Long pageSize; private String accessToken; private Long page; private Long projectId; public ListRepositoryMemberRequest() { super("codeup", "2020-04-14", "ListRepositoryMember"); setUriPattern("/api/v3/projects/[ProjectId]/members"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getQuery() { return this.query; } public void setQuery(String query) { this.query = query; if(query != null){ putQueryParameter("Query", query); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<ListRepositoryMemberResponse> getResponseClass() { return ListRepositoryMemberResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryMemberResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListRepositoryMemberResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListRepositoryMemberResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Long total; private List<ResultItem> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Integer accessLevel; private String externUserId; private Long id; private String state; private String avatarUrl; private String email; private String name; private String username; public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; } } @Override public ListRepositoryMemberResponse getInstance(UnmarshallerContext context) { return ListRepositoryMemberResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryMemberWithInheritedRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRepositoryMemberWithInheritedRequest extends RoaAcsRequest<ListRepositoryMemberWithInheritedResponse> { private String organizationId; private String accessToken; private Long projectId; public ListRepositoryMemberWithInheritedRequest() { super("codeup", "2020-04-14", "ListRepositoryMemberWithInherited"); setUriPattern("/api/v4/projects/[ProjectId]/all_members"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<ListRepositoryMemberWithInheritedResponse> getResponseClass() { return ListRepositoryMemberWithInheritedResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryMemberWithInheritedResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListRepositoryMemberWithInheritedResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListRepositoryMemberWithInheritedResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private List<ResultItem> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Integer accessLevel; private String externUserId; private Long id; private String state; private String avatarUrl; private String email; private String name; private String username; private Inherited inherited; public Integer getAccessLevel() { return this.accessLevel; } public void setAccessLevel(Integer accessLevel) { this.accessLevel = accessLevel; } public String getExternUserId() { return this.externUserId; } public void setExternUserId(String externUserId) { this.externUserId = externUserId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; } public Inherited getInherited() { return this.inherited; } public void setInherited(Inherited inherited) { this.inherited = inherited; } public static class Inherited { private Long id; private String name; private String path; private String nameWithNamespace; private String pathWithNamespace; private String type; private String visibilityLevel; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public String getNameWithNamespace() { return this.nameWithNamespace; } public void setNameWithNamespace(String nameWithNamespace) { this.nameWithNamespace = nameWithNamespace; } public String getPathWithNamespace() { return this.pathWithNamespace; } public void setPathWithNamespace(String pathWithNamespace) { this.pathWithNamespace = pathWithNamespace; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getVisibilityLevel() { return this.visibilityLevel; } public void setVisibilityLevel(String visibilityLevel) { this.visibilityLevel = visibilityLevel; } } } @Override public ListRepositoryMemberWithInheritedResponse getInstance(UnmarshallerContext context) { return ListRepositoryMemberWithInheritedResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryTagsRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRepositoryTagsRequest extends RoaAcsRequest<ListRepositoryTagsResponse> { private String accessToken; private Boolean showSignature; private String sort; private String organizationId; private String search; private Long pageSize; private Long page; private Long projectId; public ListRepositoryTagsRequest() { super("codeup", "2020-04-14", "ListRepositoryTags"); setUriPattern("/api/v4/projects/[ProjectId]/repository/tags"); setMethod(MethodType.GET); } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Boolean getShowSignature() { return this.showSignature; } public void setShowSignature(Boolean showSignature) { this.showSignature = showSignature; if(showSignature != null){ putQueryParameter("ShowSignature", showSignature.toString()); } } public String getSort() { return this.sort; } public void setSort(String sort) { this.sort = sort; if(sort != null){ putQueryParameter("Sort", sort); } } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getSearch() { return this.search; } public void setSearch(String search) { this.search = search; if(search != null){ putQueryParameter("Search", search); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<ListRepositoryTagsResponse> getResponseClass() { return ListRepositoryTagsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryTagsResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListRepositoryTagsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListRepositoryTagsResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private Long total; private List<ResultItem> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String id; private String name; private String message; private Commit commit; private Signature signature; public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Commit getCommit() { return this.commit; } public void setCommit(Commit commit) { this.commit = commit; } public Signature getSignature() { return this.signature; } public void setSignature(Signature signature) { this.signature = signature; } public static class Commit { private String id; private String shortId; private String title; private String authorName; private String authorEmail; private String createdAt; private String message; private String authoredDate; private String committedDate; private String committerEmail; private String committerName; private List<String> parentIds; private Signature1 signature1; public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getShortId() { return this.shortId; } public void setShortId(String shortId) { this.shortId = shortId; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public String getAuthorName() { return this.authorName; } public void setAuthorName(String authorName) { this.authorName = authorName; } public String getAuthorEmail() { return this.authorEmail; } public void setAuthorEmail(String authorEmail) { this.authorEmail = authorEmail; } public String getCreatedAt() { return this.createdAt; } public void setCreatedAt(String createdAt) { this.createdAt = createdAt; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getAuthoredDate() { return this.authoredDate; } public void setAuthoredDate(String authoredDate) { this.authoredDate = authoredDate; } public String getCommittedDate() { return this.committedDate; } public void setCommittedDate(String committedDate) { this.committedDate = committedDate; } public String getCommitterEmail() { return this.committerEmail; } public void setCommitterEmail(String committerEmail) { this.committerEmail = committerEmail; } public String getCommitterName() { return this.committerName; } public void setCommitterName(String committerName) { this.committerName = committerName; } public List<String> getParentIds() { return this.parentIds; } public void setParentIds(List<String> parentIds) { this.parentIds = parentIds; } public Signature1 getSignature1() { return this.signature1; } public void setSignature1(Signature1 signature1) { this.signature1 = signature1; } public static class Signature1 { private String gpgKeyId; private String verificationStatus; public String getGpgKeyId() { return this.gpgKeyId; } public void setGpgKeyId(String gpgKeyId) { this.gpgKeyId = gpgKeyId; } public String getVerificationStatus() { return this.verificationStatus; } public void setVerificationStatus(String verificationStatus) { this.verificationStatus = verificationStatus; } } } public static class Signature { private String gpgKeyId; private String verificationStatus; public String getGpgKeyId() { return this.gpgKeyId; } public void setGpgKeyId(String gpgKeyId) { this.gpgKeyId = gpgKeyId; } public String getVerificationStatus() { return this.verificationStatus; } public void setVerificationStatus(String verificationStatus) { this.verificationStatus = verificationStatus; } } } @Override public ListRepositoryTagsResponse getInstance(UnmarshallerContext context) { return ListRepositoryTagsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryTreeRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRepositoryTreeRequest extends RoaAcsRequest<ListRepositoryTreeResponse> { private String organizationId; private String path; private String subUserId; private String accessToken; private String type; private Long projectId; private String refName; public ListRepositoryTreeRequest() { super("codeup", "2020-04-14", "ListRepositoryTree"); setUriPattern("/api/v4/projects/[ProjectId]/repository/tree"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; if(path != null){ putQueryParameter("Path", path); } } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; if(subUserId != null){ putQueryParameter("SubUserId", subUserId); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } public String getRefName() { return this.refName; } public void setRefName(String refName) { this.refName = refName; if(refName != null){ putQueryParameter("RefName", refName); } } @Override public Class<ListRepositoryTreeResponse> getResponseClass() { return ListRepositoryTreeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryTreeResponse.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.codeup.model.v20200414; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.codeup.transform.v20200414.ListRepositoryTreeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListRepositoryTreeResponse extends AcsResponse { private String requestId; private String errorCode; private Boolean success; private String errorMessage; private List<ResultItem> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String path; private String id; private String name; private String mode; private String type; public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getMode() { return this.mode; } public void setMode(String mode) { this.mode = mode; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } } @Override public ListRepositoryTreeResponse getInstance(UnmarshallerContext context) { return ListRepositoryTreeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model
java-sources/com/aliyun/aliyun-java-sdk-codeup/0.1.3/com/aliyuncs/codeup/model/v20200414/ListRepositoryWebhookRequest.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.codeup.model.v20200414; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRepositoryWebhookRequest extends RoaAcsRequest<ListRepositoryWebhookResponse> { private String organizationId; private Long pageSize; private String accessToken; private Long page; private Long projectId; public ListRepositoryWebhookRequest() { super("codeup", "2020-04-14", "ListRepositoryWebhook"); setUriPattern("/api/v3/projects/[ProjectId]/hooks"); setMethod(MethodType.GET); } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putQueryParameter("OrganizationId", organizationId); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getAccessToken() { return this.accessToken; } public void setAccessToken(String accessToken) { this.accessToken = accessToken; if(accessToken != null){ putQueryParameter("AccessToken", accessToken); } } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putPathParameter("ProjectId", projectId.toString()); } } @Override public Class<ListRepositoryWebhookResponse> getResponseClass() { return ListRepositoryWebhookResponse.class; } }