index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetInstanceEndpointRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetInstanceEndpointRequest extends RpcAcsRequest<GetInstanceEndpointResponse> {
private String instanceId;
private String endpointType;
private String moduleName;
public GetInstanceEndpointRequest() {
super("cr", "2018-12-01", "GetInstanceEndpoint", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getEndpointType() {
return this.endpointType;
}
public void setEndpointType(String endpointType) {
this.endpointType = endpointType;
if(endpointType != null){
putQueryParameter("EndpointType", endpointType);
}
}
public String getModuleName() {
return this.moduleName;
}
public void setModuleName(String moduleName) {
this.moduleName = moduleName;
if(moduleName != null){
putQueryParameter("ModuleName", moduleName);
}
}
@Override
public Class<GetInstanceEndpointResponse> getResponseClass() {
return GetInstanceEndpointResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetInstanceEndpointResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetInstanceEndpointResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetInstanceEndpointResponse extends AcsResponse {
private String status;
private String requestId;
private String code;
private Boolean isSuccess;
private Boolean aclEnable;
private Boolean enable;
private List<Endpoints> domains;
private List<AclEntriesItem> aclEntries;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Boolean getAclEnable() {
return this.aclEnable;
}
public void setAclEnable(Boolean aclEnable) {
this.aclEnable = aclEnable;
}
public Boolean getEnable() {
return this.enable;
}
public void setEnable(Boolean enable) {
this.enable = enable;
}
public List<Endpoints> getDomains() {
return this.domains;
}
public void setDomains(List<Endpoints> domains) {
this.domains = domains;
}
public List<AclEntriesItem> getAclEntries() {
return this.aclEntries;
}
public void setAclEntries(List<AclEntriesItem> aclEntries) {
this.aclEntries = aclEntries;
}
public static class Endpoints {
private String type;
private String domain;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
}
public static class AclEntriesItem {
private String comment;
private String entry;
public String getComment() {
return this.comment;
}
public void setComment(String comment) {
this.comment = comment;
}
public String getEntry() {
return this.entry;
}
public void setEntry(String entry) {
this.entry = entry;
}
}
@Override
public GetInstanceEndpointResponse getInstance(UnmarshallerContext context) {
return GetInstanceEndpointResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetInstanceRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetInstanceRequest extends RpcAcsRequest<GetInstanceResponse> {
private String instanceId;
public GetInstanceRequest() {
super("cr", "2018-12-01", "GetInstance", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetInstanceResponse> getResponseClass() {
return GetInstanceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetInstanceResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetInstanceResponse extends AcsResponse {
private Long modifiedTime;
private String requestId;
private Long createTime;
private String instanceName;
private String instanceSpecification;
private String code;
private String instanceStatus;
private String instanceId;
private Boolean isSuccess;
public Long getModifiedTime() {
return this.modifiedTime;
}
public void setModifiedTime(Long modifiedTime) {
this.modifiedTime = modifiedTime;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public String getInstanceSpecification() {
return this.instanceSpecification;
}
public void setInstanceSpecification(String instanceSpecification) {
this.instanceSpecification = instanceSpecification;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getInstanceStatus() {
return this.instanceStatus;
}
public void setInstanceStatus(String instanceStatus) {
this.instanceStatus = instanceStatus;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
@Override
public GetInstanceResponse getInstance(UnmarshallerContext context) {
return GetInstanceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetInstanceUsageRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetInstanceUsageRequest extends RpcAcsRequest<GetInstanceUsageResponse> {
private String instanceId;
public GetInstanceUsageRequest() {
super("cr", "2018-12-01", "GetInstanceUsage", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetInstanceUsageResponse> getResponseClass() {
return GetInstanceUsageResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetInstanceUsageResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetInstanceUsageResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetInstanceUsageResponse extends AcsResponse {
private String namespaceUsage;
private String repoQuota;
private String requestId;
private String chartNamespaceQuota;
private String repoUsage;
private String namespaceQuota;
private String code;
private Boolean isSuccess;
private String chartRepoUsage;
private String chartNamespaceUsage;
private String chartRepoQuota;
public String getNamespaceUsage() {
return this.namespaceUsage;
}
public void setNamespaceUsage(String namespaceUsage) {
this.namespaceUsage = namespaceUsage;
}
public String getRepoQuota() {
return this.repoQuota;
}
public void setRepoQuota(String repoQuota) {
this.repoQuota = repoQuota;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getChartNamespaceQuota() {
return this.chartNamespaceQuota;
}
public void setChartNamespaceQuota(String chartNamespaceQuota) {
this.chartNamespaceQuota = chartNamespaceQuota;
}
public String getRepoUsage() {
return this.repoUsage;
}
public void setRepoUsage(String repoUsage) {
this.repoUsage = repoUsage;
}
public String getNamespaceQuota() {
return this.namespaceQuota;
}
public void setNamespaceQuota(String namespaceQuota) {
this.namespaceQuota = namespaceQuota;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getChartRepoUsage() {
return this.chartRepoUsage;
}
public void setChartRepoUsage(String chartRepoUsage) {
this.chartRepoUsage = chartRepoUsage;
}
public String getChartNamespaceUsage() {
return this.chartNamespaceUsage;
}
public void setChartNamespaceUsage(String chartNamespaceUsage) {
this.chartNamespaceUsage = chartNamespaceUsage;
}
public String getChartRepoQuota() {
return this.chartRepoQuota;
}
public void setChartRepoQuota(String chartRepoQuota) {
this.chartRepoQuota = chartRepoQuota;
}
@Override
public GetInstanceUsageResponse getInstance(UnmarshallerContext context) {
return GetInstanceUsageResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetInstanceVpcEndpointRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetInstanceVpcEndpointRequest extends RpcAcsRequest<GetInstanceVpcEndpointResponse> {
private String instanceId;
private String moduleName;
public GetInstanceVpcEndpointRequest() {
super("cr", "2018-12-01", "GetInstanceVpcEndpoint", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getModuleName() {
return this.moduleName;
}
public void setModuleName(String moduleName) {
this.moduleName = moduleName;
if(moduleName != null){
putQueryParameter("ModuleName", moduleName);
}
}
@Override
public Class<GetInstanceVpcEndpointResponse> getResponseClass() {
return GetInstanceVpcEndpointResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetInstanceVpcEndpointResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetInstanceVpcEndpointResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetInstanceVpcEndpointResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
private Boolean enable;
private List<LinkedVpcsItem> linkedVpcs;
private List<String> domains;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getEnable() {
return this.enable;
}
public void setEnable(Boolean enable) {
this.enable = enable;
}
public List<LinkedVpcsItem> getLinkedVpcs() {
return this.linkedVpcs;
}
public void setLinkedVpcs(List<LinkedVpcsItem> linkedVpcs) {
this.linkedVpcs = linkedVpcs;
}
public List<String> getDomains() {
return this.domains;
}
public void setDomains(List<String> domains) {
this.domains = domains;
}
public static class LinkedVpcsItem {
private String status;
private String vpcId;
private String ip;
private Boolean defaultAccess;
private String vswitchId;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getVpcId() {
return this.vpcId;
}
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
}
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public Boolean getDefaultAccess() {
return this.defaultAccess;
}
public void setDefaultAccess(Boolean defaultAccess) {
this.defaultAccess = defaultAccess;
}
public String getVswitchId() {
return this.vswitchId;
}
public void setVswitchId(String vswitchId) {
this.vswitchId = vswitchId;
}
}
@Override
public GetInstanceVpcEndpointResponse getInstance(UnmarshallerContext context) {
return GetInstanceVpcEndpointResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetNamespaceRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetNamespaceRequest extends RpcAcsRequest<GetNamespaceResponse> {
private String namespaceName;
private String instanceId;
private String namespaceId;
public GetNamespaceRequest() {
super("cr", "2018-12-01", "GetNamespace", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getNamespaceName() {
return this.namespaceName;
}
public void setNamespaceName(String namespaceName) {
this.namespaceName = namespaceName;
if(namespaceName != null){
putQueryParameter("NamespaceName", namespaceName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getNamespaceId() {
return this.namespaceId;
}
public void setNamespaceId(String namespaceId) {
this.namespaceId = namespaceId;
if(namespaceId != null){
putQueryParameter("NamespaceId", namespaceId);
}
}
@Override
public Class<GetNamespaceResponse> getResponseClass() {
return GetNamespaceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetNamespaceResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetNamespaceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetNamespaceResponse extends AcsResponse {
private String defaultRepoType;
private String namespaceId;
private String namespaceStatus;
private String requestId;
private String code;
private String instanceId;
private Boolean autoCreateRepo;
private Boolean isSuccess;
private String namespaceName;
public String getDefaultRepoType() {
return this.defaultRepoType;
}
public void setDefaultRepoType(String defaultRepoType) {
this.defaultRepoType = defaultRepoType;
}
public String getNamespaceId() {
return this.namespaceId;
}
public void setNamespaceId(String namespaceId) {
this.namespaceId = namespaceId;
}
public String getNamespaceStatus() {
return this.namespaceStatus;
}
public void setNamespaceStatus(String namespaceStatus) {
this.namespaceStatus = namespaceStatus;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Boolean getAutoCreateRepo() {
return this.autoCreateRepo;
}
public void setAutoCreateRepo(Boolean autoCreateRepo) {
this.autoCreateRepo = autoCreateRepo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getNamespaceName() {
return this.namespaceName;
}
public void setNamespaceName(String namespaceName) {
this.namespaceName = namespaceName;
}
@Override
public GetNamespaceResponse getInstance(UnmarshallerContext context) {
return GetNamespaceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoBuildRecordRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRepoBuildRecordRequest extends RpcAcsRequest<GetRepoBuildRecordResponse> {
private String buildRecordId;
private String instanceId;
public GetRepoBuildRecordRequest() {
super("cr", "2018-12-01", "GetRepoBuildRecord", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getBuildRecordId() {
return this.buildRecordId;
}
public void setBuildRecordId(String buildRecordId) {
this.buildRecordId = buildRecordId;
if(buildRecordId != null){
putQueryParameter("BuildRecordId", buildRecordId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetRepoBuildRecordResponse> getResponseClass() {
return GetRepoBuildRecordResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoBuildRecordResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetRepoBuildRecordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRepoBuildRecordResponse extends AcsResponse {
private String status;
private Long endTime;
private Long startTime;
private String requestId;
private String code;
private Boolean isSuccess;
private String buildRecordId;
private Image image;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getBuildRecordId() {
return this.buildRecordId;
}
public void setBuildRecordId(String buildRecordId) {
this.buildRecordId = buildRecordId;
}
public Image getImage() {
return this.image;
}
public void setImage(Image image) {
this.image = image;
}
public static class Image {
private String repoNamespaceName;
private String imageTag;
private String repoName;
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
}
public String getImageTag() {
return this.imageTag;
}
public void setImageTag(String imageTag) {
this.imageTag = imageTag;
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
}
}
@Override
public GetRepoBuildRecordResponse getInstance(UnmarshallerContext context) {
return GetRepoBuildRecordResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoBuildRecordStatusRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRepoBuildRecordStatusRequest extends RpcAcsRequest<GetRepoBuildRecordStatusResponse> {
private String buildRecordId;
private String repoId;
private String instanceId;
public GetRepoBuildRecordStatusRequest() {
super("cr", "2018-12-01", "GetRepoBuildRecordStatus", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getBuildRecordId() {
return this.buildRecordId;
}
public void setBuildRecordId(String buildRecordId) {
this.buildRecordId = buildRecordId;
if(buildRecordId != null){
putQueryParameter("BuildRecordId", buildRecordId);
}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetRepoBuildRecordStatusResponse> getResponseClass() {
return GetRepoBuildRecordStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoBuildRecordStatusResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetRepoBuildRecordStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRepoBuildRecordStatusResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
private String buildStatus;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getBuildStatus() {
return this.buildStatus;
}
public void setBuildStatus(String buildStatus) {
this.buildStatus = buildStatus;
}
@Override
public GetRepoBuildRecordStatusResponse getInstance(UnmarshallerContext context) {
return GetRepoBuildRecordStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoSourceCodeRepoRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRepoSourceCodeRepoRequest extends RpcAcsRequest<GetRepoSourceCodeRepoResponse> {
private String repoId;
private String instanceId;
public GetRepoSourceCodeRepoRequest() {
super("cr", "2018-12-01", "GetRepoSourceCodeRepo", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetRepoSourceCodeRepoResponse> getResponseClass() {
return GetRepoSourceCodeRepoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoSourceCodeRepoResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetRepoSourceCodeRepoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRepoSourceCodeRepoResponse extends AcsResponse {
private String codeRepoType;
private String repoId;
private String requestId;
private String codeRepoNamespaceName;
private String overseaBuild;
private String code;
private String codeRepoName;
private String autoBuild;
private Boolean isSuccess;
private String disableCacheBuild;
private String codeRepoDomain;
public String getCodeRepoType() {
return this.codeRepoType;
}
public void setCodeRepoType(String codeRepoType) {
this.codeRepoType = codeRepoType;
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCodeRepoNamespaceName() {
return this.codeRepoNamespaceName;
}
public void setCodeRepoNamespaceName(String codeRepoNamespaceName) {
this.codeRepoNamespaceName = codeRepoNamespaceName;
}
public String getOverseaBuild() {
return this.overseaBuild;
}
public void setOverseaBuild(String overseaBuild) {
this.overseaBuild = overseaBuild;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getCodeRepoName() {
return this.codeRepoName;
}
public void setCodeRepoName(String codeRepoName) {
this.codeRepoName = codeRepoName;
}
public String getAutoBuild() {
return this.autoBuild;
}
public void setAutoBuild(String autoBuild) {
this.autoBuild = autoBuild;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getDisableCacheBuild() {
return this.disableCacheBuild;
}
public void setDisableCacheBuild(String disableCacheBuild) {
this.disableCacheBuild = disableCacheBuild;
}
public String getCodeRepoDomain() {
return this.codeRepoDomain;
}
public void setCodeRepoDomain(String codeRepoDomain) {
this.codeRepoDomain = codeRepoDomain;
}
@Override
public GetRepoSourceCodeRepoResponse getInstance(UnmarshallerContext context) {
return GetRepoSourceCodeRepoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoSyncTaskRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRepoSyncTaskRequest extends RpcAcsRequest<GetRepoSyncTaskResponse> {
private String syncTaskId;
private String instanceId;
public GetRepoSyncTaskRequest() {
super("cr", "2018-12-01", "GetRepoSyncTask", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSyncTaskId() {
return this.syncTaskId;
}
public void setSyncTaskId(String syncTaskId) {
this.syncTaskId = syncTaskId;
if(syncTaskId != null){
putQueryParameter("SyncTaskId", syncTaskId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetRepoSyncTaskResponse> getResponseClass() {
return GetRepoSyncTaskResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoSyncTaskResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetRepoSyncTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRepoSyncTaskResponse extends AcsResponse {
private String syncRuleId;
private Long progress;
private String requestId;
private Long syncedSize;
private String taskStatus;
private Boolean syncTransAccelerate;
private Boolean crossUser;
private String syncTaskId;
private String syncBatchTaskId;
private String code;
private Boolean isSuccess;
private String taskTrigger;
private List<LayerTasksItem> layerTasks;
private ImageFrom imageFrom;
private ImageTo imageTo;
public String getSyncRuleId() {
return this.syncRuleId;
}
public void setSyncRuleId(String syncRuleId) {
this.syncRuleId = syncRuleId;
}
public Long getProgress() {
return this.progress;
}
public void setProgress(Long progress) {
this.progress = progress;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getSyncedSize() {
return this.syncedSize;
}
public void setSyncedSize(Long syncedSize) {
this.syncedSize = syncedSize;
}
public String getTaskStatus() {
return this.taskStatus;
}
public void setTaskStatus(String taskStatus) {
this.taskStatus = taskStatus;
}
public Boolean getSyncTransAccelerate() {
return this.syncTransAccelerate;
}
public void setSyncTransAccelerate(Boolean syncTransAccelerate) {
this.syncTransAccelerate = syncTransAccelerate;
}
public Boolean getCrossUser() {
return this.crossUser;
}
public void setCrossUser(Boolean crossUser) {
this.crossUser = crossUser;
}
public String getSyncTaskId() {
return this.syncTaskId;
}
public void setSyncTaskId(String syncTaskId) {
this.syncTaskId = syncTaskId;
}
public String getSyncBatchTaskId() {
return this.syncBatchTaskId;
}
public void setSyncBatchTaskId(String syncBatchTaskId) {
this.syncBatchTaskId = syncBatchTaskId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getTaskTrigger() {
return this.taskTrigger;
}
public void setTaskTrigger(String taskTrigger) {
this.taskTrigger = taskTrigger;
}
public List<LayerTasksItem> getLayerTasks() {
return this.layerTasks;
}
public void setLayerTasks(List<LayerTasksItem> layerTasks) {
this.layerTasks = layerTasks;
}
public ImageFrom getImageFrom() {
return this.imageFrom;
}
public void setImageFrom(ImageFrom imageFrom) {
this.imageFrom = imageFrom;
}
public ImageTo getImageTo() {
return this.imageTo;
}
public void setImageTo(ImageTo imageTo) {
this.imageTo = imageTo;
}
public static class LayerTasksItem {
private String taskStatus;
private String digest;
private Long syncedSize;
private Long size;
private String syncLayerTaskId;
private String artifactDigest;
public String getTaskStatus() {
return this.taskStatus;
}
public void setTaskStatus(String taskStatus) {
this.taskStatus = taskStatus;
}
public String getDigest() {
return this.digest;
}
public void setDigest(String digest) {
this.digest = digest;
}
public Long getSyncedSize() {
return this.syncedSize;
}
public void setSyncedSize(Long syncedSize) {
this.syncedSize = syncedSize;
}
public Long getSize() {
return this.size;
}
public void setSize(Long size) {
this.size = size;
}
public String getSyncLayerTaskId() {
return this.syncLayerTaskId;
}
public void setSyncLayerTaskId(String syncLayerTaskId) {
this.syncLayerTaskId = syncLayerTaskId;
}
public String getArtifactDigest() {
return this.artifactDigest;
}
public void setArtifactDigest(String artifactDigest) {
this.artifactDigest = artifactDigest;
}
}
public static class ImageFrom {
private String repoNamespaceName;
private String instanceId;
private String imageTag;
private String repoName;
private String regionId;
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getImageTag() {
return this.imageTag;
}
public void setImageTag(String imageTag) {
this.imageTag = imageTag;
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
public static class ImageTo {
private String repoNamespaceName;
private String instanceId;
private String imageTag;
private String repoName;
private String regionId;
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getImageTag() {
return this.imageTag;
}
public void setImageTag(String imageTag) {
this.imageTag = imageTag;
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
@Override
public GetRepoSyncTaskResponse getInstance(UnmarshallerContext context) {
return GetRepoSyncTaskResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoTagLayersRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRepoTagLayersRequest extends RpcAcsRequest<GetRepoTagLayersResponse> {
private String repoId;
private String instanceId;
private String digest;
private String tag;
public GetRepoTagLayersRequest() {
super("cr", "2018-12-01", "GetRepoTagLayers", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getDigest() {
return this.digest;
}
public void setDigest(String digest) {
this.digest = digest;
if(digest != null){
putQueryParameter("Digest", digest);
}
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
if(tag != null){
putQueryParameter("Tag", tag);
}
}
@Override
public Class<GetRepoTagLayersResponse> getResponseClass() {
return GetRepoTagLayersResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoTagLayersResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetRepoTagLayersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRepoTagLayersResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
private List<LayersItem> layers;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<LayersItem> getLayers() {
return this.layers;
}
public void setLayers(List<LayersItem> layers) {
this.layers = layers;
}
public static class LayersItem {
private String blobDigest;
private Integer layerIndex;
private String layerInstruction;
private String layerCMD;
private Long blobSize;
public String getBlobDigest() {
return this.blobDigest;
}
public void setBlobDigest(String blobDigest) {
this.blobDigest = blobDigest;
}
public Integer getLayerIndex() {
return this.layerIndex;
}
public void setLayerIndex(Integer layerIndex) {
this.layerIndex = layerIndex;
}
public String getLayerInstruction() {
return this.layerInstruction;
}
public void setLayerInstruction(String layerInstruction) {
this.layerInstruction = layerInstruction;
}
public String getLayerCMD() {
return this.layerCMD;
}
public void setLayerCMD(String layerCMD) {
this.layerCMD = layerCMD;
}
public Long getBlobSize() {
return this.blobSize;
}
public void setBlobSize(Long blobSize) {
this.blobSize = blobSize;
}
}
@Override
public GetRepoTagLayersResponse getInstance(UnmarshallerContext context) {
return GetRepoTagLayersResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoTagManifestRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRepoTagManifestRequest extends RpcAcsRequest<GetRepoTagManifestResponse> {
private String repoId;
private Integer schemaVersion;
private String instanceId;
private String tag;
public GetRepoTagManifestRequest() {
super("cr", "2018-12-01", "GetRepoTagManifest", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public Integer getSchemaVersion() {
return this.schemaVersion;
}
public void setSchemaVersion(Integer schemaVersion) {
this.schemaVersion = schemaVersion;
if(schemaVersion != null){
putQueryParameter("SchemaVersion", schemaVersion.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
if(tag != null){
putQueryParameter("Tag", tag);
}
}
@Override
public Class<GetRepoTagManifestResponse> getResponseClass() {
return GetRepoTagManifestResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoTagManifestResponse.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.cr.model.v20181201;
import java.util.List;
import java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetRepoTagManifestResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRepoTagManifestResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
private Manifest manifest;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Manifest getManifest() {
return this.manifest;
}
public void setManifest(Manifest manifest) {
this.manifest = manifest;
}
public static class Manifest {
private String tag;
private String name;
private String mediaType;
private Integer schemaVersion;
private String architecture;
private List<FsLayersItem> fsLayers;
private List<HistoryItem> history;
private List<SignaturesItem> signatures;
private List<LayersItem> layers;
private Config config;
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
}
public Integer getSchemaVersion() {
return this.schemaVersion;
}
public void setSchemaVersion(Integer schemaVersion) {
this.schemaVersion = schemaVersion;
}
public String getArchitecture() {
return this.architecture;
}
public void setArchitecture(String architecture) {
this.architecture = architecture;
}
public List<FsLayersItem> getFsLayers() {
return this.fsLayers;
}
public void setFsLayers(List<FsLayersItem> fsLayers) {
this.fsLayers = fsLayers;
}
public List<HistoryItem> getHistory() {
return this.history;
}
public void setHistory(List<HistoryItem> history) {
this.history = history;
}
public List<SignaturesItem> getSignatures() {
return this.signatures;
}
public void setSignatures(List<SignaturesItem> signatures) {
this.signatures = signatures;
}
public List<LayersItem> getLayers() {
return this.layers;
}
public void setLayers(List<LayersItem> layers) {
this.layers = layers;
}
public Config getConfig() {
return this.config;
}
public void setConfig(Config config) {
this.config = config;
}
public static class FsLayersItem {
private String blobSum;
public String getBlobSum() {
return this.blobSum;
}
public void setBlobSum(String blobSum) {
this.blobSum = blobSum;
}
}
public static class HistoryItem {
private Map<Object,Object> v1Compatibility;
public Map<Object,Object> getV1Compatibility() {
return this.v1Compatibility;
}
public void setV1Compatibility(Map<Object,Object> v1Compatibility) {
this.v1Compatibility = v1Compatibility;
}
}
public static class SignaturesItem {
private String signature;
private Map<Object,Object> header;
private String _protected;
public String getSignature() {
return this.signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
public Map<Object,Object> getHeader() {
return this.header;
}
public void setHeader(Map<Object,Object> header) {
this.header = header;
}
public String get_Protected() {
return this._protected;
}
public void set_Protected(String _protected) {
this._protected = _protected;
}
}
public static class LayersItem {
private String digest;
private String mediaType;
private Long size;
public String getDigest() {
return this.digest;
}
public void setDigest(String digest) {
this.digest = digest;
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
}
public Long getSize() {
return this.size;
}
public void setSize(Long size) {
this.size = size;
}
}
public static class Config {
private String digest;
private String mediaType;
private Long size;
public String getDigest() {
return this.digest;
}
public void setDigest(String digest) {
this.digest = digest;
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
}
public Long getSize() {
return this.size;
}
public void setSize(Long size) {
this.size = size;
}
}
}
@Override
public GetRepoTagManifestResponse getInstance(UnmarshallerContext context) {
return GetRepoTagManifestResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoTagRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRepoTagRequest extends RpcAcsRequest<GetRepoTagResponse> {
private String repoId;
private String instanceId;
private String tag;
public GetRepoTagRequest() {
super("cr", "2018-12-01", "GetRepoTag", "acr");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
if(tag != null){
putQueryParameter("Tag", tag);
}
}
@Override
public Class<GetRepoTagResponse> getResponseClass() {
return GetRepoTagResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoTagResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetRepoTagResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRepoTagResponse extends AcsResponse {
private String status;
private Long imageCreate;
private Long imageSize;
private String requestId;
private String digest;
private String code;
private Long imageUpdate;
private String tag;
private Boolean isSuccess;
private String imageId;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Long getImageCreate() {
return this.imageCreate;
}
public void setImageCreate(Long imageCreate) {
this.imageCreate = imageCreate;
}
public Long getImageSize() {
return this.imageSize;
}
public void setImageSize(Long imageSize) {
this.imageSize = imageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getDigest() {
return this.digest;
}
public void setDigest(String digest) {
this.digest = digest;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Long getImageUpdate() {
return this.imageUpdate;
}
public void setImageUpdate(Long imageUpdate) {
this.imageUpdate = imageUpdate;
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getImageId() {
return this.imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
@Override
public GetRepoTagResponse getInstance(UnmarshallerContext context) {
return GetRepoTagResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoTagScanStatusRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRepoTagScanStatusRequest extends RpcAcsRequest<GetRepoTagScanStatusResponse> {
private String repoId;
private String scanTaskId;
private String instanceId;
private String digest;
private String tag;
public GetRepoTagScanStatusRequest() {
super("cr", "2018-12-01", "GetRepoTagScanStatus", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getScanTaskId() {
return this.scanTaskId;
}
public void setScanTaskId(String scanTaskId) {
this.scanTaskId = scanTaskId;
if(scanTaskId != null){
putQueryParameter("ScanTaskId", scanTaskId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getDigest() {
return this.digest;
}
public void setDigest(String digest) {
this.digest = digest;
if(digest != null){
putQueryParameter("Digest", digest);
}
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
if(tag != null){
putQueryParameter("Tag", tag);
}
}
@Override
public Class<GetRepoTagScanStatusResponse> getResponseClass() {
return GetRepoTagScanStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoTagScanStatusResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetRepoTagScanStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRepoTagScanStatusResponse extends AcsResponse {
private String status;
private String code;
private Boolean isSuccess;
private String requestId;
private String scanService;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getScanService() {
return this.scanService;
}
public void setScanService(String scanService) {
this.scanService = scanService;
}
@Override
public GetRepoTagScanStatusResponse getInstance(UnmarshallerContext context) {
return GetRepoTagScanStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoTagScanSummaryRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRepoTagScanSummaryRequest extends RpcAcsRequest<GetRepoTagScanSummaryResponse> {
private String repoId;
private String scanTaskId;
private String instanceId;
private String digest;
private String tag;
public GetRepoTagScanSummaryRequest() {
super("cr", "2018-12-01", "GetRepoTagScanSummary", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getScanTaskId() {
return this.scanTaskId;
}
public void setScanTaskId(String scanTaskId) {
this.scanTaskId = scanTaskId;
if(scanTaskId != null){
putQueryParameter("ScanTaskId", scanTaskId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getDigest() {
return this.digest;
}
public void setDigest(String digest) {
this.digest = digest;
if(digest != null){
putQueryParameter("Digest", digest);
}
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
if(tag != null){
putQueryParameter("Tag", tag);
}
}
@Override
public Class<GetRepoTagScanSummaryResponse> getResponseClass() {
return GetRepoTagScanSummaryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepoTagScanSummaryResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetRepoTagScanSummaryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRepoTagScanSummaryResponse extends AcsResponse {
private Integer unknownSeverity;
private String requestId;
private Integer totalSeverity;
private String code;
private Integer mediumSeverity;
private Boolean isSuccess;
private Integer highSeverity;
private Integer lowSeverity;
public Integer getUnknownSeverity() {
return this.unknownSeverity;
}
public void setUnknownSeverity(Integer unknownSeverity) {
this.unknownSeverity = unknownSeverity;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalSeverity() {
return this.totalSeverity;
}
public void setTotalSeverity(Integer totalSeverity) {
this.totalSeverity = totalSeverity;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getMediumSeverity() {
return this.mediumSeverity;
}
public void setMediumSeverity(Integer mediumSeverity) {
this.mediumSeverity = mediumSeverity;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getHighSeverity() {
return this.highSeverity;
}
public void setHighSeverity(Integer highSeverity) {
this.highSeverity = highSeverity;
}
public Integer getLowSeverity() {
return this.lowSeverity;
}
public void setLowSeverity(Integer lowSeverity) {
this.lowSeverity = lowSeverity;
}
@Override
public GetRepoTagScanSummaryResponse getInstance(UnmarshallerContext context) {
return GetRepoTagScanSummaryResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepositoryRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRepositoryRequest extends RpcAcsRequest<GetRepositoryResponse> {
private String repoId;
private String instanceId;
private String repoNamespaceName;
private String repoName;
public GetRepositoryRequest() {
super("cr", "2018-12-01", "GetRepository", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
if(repoNamespaceName != null){
putQueryParameter("RepoNamespaceName", repoNamespaceName);
}
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
if(repoName != null){
putQueryParameter("RepoName", repoName);
}
}
@Override
public Class<GetRepositoryResponse> getResponseClass() {
return GetRepositoryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/GetRepositoryResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.GetRepositoryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRepositoryResponse extends AcsResponse {
private String summary;
private Long createTime;
private Boolean isSuccess;
private String instanceId;
private String repoStatus;
private String repoType;
private String repoBuildType;
private Long modifiedTime;
private String requestId;
private String repoId;
private String code;
private String repoNamespaceName;
private Boolean tagImmutability;
private String repoName;
private String detail;
public String getSummary() {
return this.summary;
}
public void setSummary(String summary) {
this.summary = summary;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getRepoStatus() {
return this.repoStatus;
}
public void setRepoStatus(String repoStatus) {
this.repoStatus = repoStatus;
}
public String getRepoType() {
return this.repoType;
}
public void setRepoType(String repoType) {
this.repoType = repoType;
}
public String getRepoBuildType() {
return this.repoBuildType;
}
public void setRepoBuildType(String repoBuildType) {
this.repoBuildType = repoBuildType;
}
public Long getModifiedTime() {
return this.modifiedTime;
}
public void setModifiedTime(Long modifiedTime) {
this.modifiedTime = modifiedTime;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
}
public Boolean getTagImmutability() {
return this.tagImmutability;
}
public void setTagImmutability(Boolean tagImmutability) {
this.tagImmutability = tagImmutability;
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
}
public String getDetail() {
return this.detail;
}
public void setDetail(String detail) {
this.detail = detail;
}
@Override
public GetRepositoryResponse getInstance(UnmarshallerContext context) {
return GetRepositoryResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListArtifactBuildTaskLogRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListArtifactBuildTaskLogRequest extends RpcAcsRequest<ListArtifactBuildTaskLogResponse> {
private String instanceId;
private String buildTaskId;
private Integer pageSize;
private Integer page;
public ListArtifactBuildTaskLogRequest() {
super("cr", "2018-12-01", "ListArtifactBuildTaskLog", "acr");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getBuildTaskId() {
return this.buildTaskId;
}
public void setBuildTaskId(String buildTaskId) {
this.buildTaskId = buildTaskId;
if(buildTaskId != null){
putQueryParameter("BuildTaskId", buildTaskId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Integer getPage() {
return this.page;
}
public void setPage(Integer page) {
this.page = page;
if(page != null){
putQueryParameter("Page", page.toString());
}
}
@Override
public Class<ListArtifactBuildTaskLogResponse> getResponseClass() {
return ListArtifactBuildTaskLogResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListArtifactBuildTaskLogResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListArtifactBuildTaskLogResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListArtifactBuildTaskLogResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
private Integer totalCount;
private List<BuildTaskLogsItem> buildTaskLogs;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<BuildTaskLogsItem> getBuildTaskLogs() {
return this.buildTaskLogs;
}
public void setBuildTaskLogs(List<BuildTaskLogsItem> buildTaskLogs) {
this.buildTaskLogs = buildTaskLogs;
}
public static class BuildTaskLogsItem {
private String message;
private Integer lineNumber;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Integer getLineNumber() {
return this.lineNumber;
}
public void setLineNumber(Integer lineNumber) {
this.lineNumber = lineNumber;
}
}
@Override
public ListArtifactBuildTaskLogResponse getInstance(UnmarshallerContext context) {
return ListArtifactBuildTaskLogResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListChainInstanceRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListChainInstanceRequest extends RpcAcsRequest<ListChainInstanceResponse> {
private String instanceId;
private String repoNamespaceName;
private String repoName;
private Integer pageNo;
private Integer pageSize;
public ListChainInstanceRequest() {
super("cr", "2018-12-01", "ListChainInstance", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
if(repoNamespaceName != null){
putQueryParameter("RepoNamespaceName", repoNamespaceName);
}
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
if(repoName != null){
putQueryParameter("RepoName", repoName);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListChainInstanceResponse> getResponseClass() {
return ListChainInstanceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListChainInstanceResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListChainInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListChainInstanceResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private String instanceId;
private Integer pageSize;
private Integer totalCount;
private List<ChainInstancesItem> chainInstances;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<ChainInstancesItem> getChainInstances() {
return this.chainInstances;
}
public void setChainInstances(List<ChainInstancesItem> chainInstances) {
this.chainInstances = chainInstances;
}
public static class ChainInstancesItem {
private Long endTime;
private String status;
private Long startTime;
private String result;
private String chainInstanceId;
private String repoNamespaceName;
private String repoName;
private Chain chain;
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public String getResult() {
return this.result;
}
public void setResult(String result) {
this.result = result;
}
public String getChainInstanceId() {
return this.chainInstanceId;
}
public void setChainInstanceId(String chainInstanceId) {
this.chainInstanceId = chainInstanceId;
}
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
}
public Chain getChain() {
return this.chain;
}
public void setChain(Chain chain) {
this.chain = chain;
}
public static class Chain {
private String chainId;
private String chainName;
private Long version;
public String getChainId() {
return this.chainId;
}
public void setChainId(String chainId) {
this.chainId = chainId;
}
public String getChainName() {
return this.chainName;
}
public void setChainName(String chainName) {
this.chainName = chainName;
}
public Long getVersion() {
return this.version;
}
public void setVersion(Long version) {
this.version = version;
}
}
}
@Override
public ListChainInstanceResponse getInstance(UnmarshallerContext context) {
return ListChainInstanceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListChainRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListChainRequest extends RpcAcsRequest<ListChainResponse> {
private String instanceId;
private String repoNamespaceName;
private String repoName;
private Integer pageNo;
private Integer pageSize;
public ListChainRequest() {
super("cr", "2018-12-01", "ListChain", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
if(repoNamespaceName != null){
putQueryParameter("RepoNamespaceName", repoNamespaceName);
}
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
if(repoName != null){
putQueryParameter("RepoName", repoName);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListChainResponse> getResponseClass() {
return ListChainResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListChainResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListChainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListChainResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private Integer totalCount;
private List<ChainsItem> chains;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<ChainsItem> getChains() {
return this.chains;
}
public void setChains(List<ChainsItem> chains) {
this.chains = chains;
}
public static class ChainsItem {
private Long modifiedTime;
private String scopeId;
private String description;
private Long createTime;
private String scopeType;
private String chainId;
private String instanceId;
private String name;
public Long getModifiedTime() {
return this.modifiedTime;
}
public void setModifiedTime(Long modifiedTime) {
this.modifiedTime = modifiedTime;
}
public String getScopeId() {
return this.scopeId;
}
public void setScopeId(String scopeId) {
this.scopeId = scopeId;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getScopeType() {
return this.scopeType;
}
public void setScopeType(String scopeType) {
this.scopeType = scopeType;
}
public String getChainId() {
return this.chainId;
}
public void setChainId(String chainId) {
this.chainId = chainId;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
@Override
public ListChainResponse getInstance(UnmarshallerContext context) {
return ListChainResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListChartNamespaceRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListChartNamespaceRequest extends RpcAcsRequest<ListChartNamespaceResponse> {
private String namespaceName;
private String instanceId;
private Integer pageNo;
private Integer pageSize;
private String namespaceStatus;
public ListChartNamespaceRequest() {
super("cr", "2018-12-01", "ListChartNamespace", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getNamespaceName() {
return this.namespaceName;
}
public void setNamespaceName(String namespaceName) {
this.namespaceName = namespaceName;
if(namespaceName != null){
putQueryParameter("NamespaceName", namespaceName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getNamespaceStatus() {
return this.namespaceStatus;
}
public void setNamespaceStatus(String namespaceStatus) {
this.namespaceStatus = namespaceStatus;
if(namespaceStatus != null){
putQueryParameter("NamespaceStatus", namespaceStatus);
}
}
@Override
public Class<ListChartNamespaceResponse> getResponseClass() {
return ListChartNamespaceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListChartNamespaceResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListChartNamespaceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListChartNamespaceResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private String totalCount;
private List<NamespacesItem> namespaces;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getTotalCount() {
return this.totalCount;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public List<NamespacesItem> getNamespaces() {
return this.namespaces;
}
public void setNamespaces(List<NamespacesItem> namespaces) {
this.namespaces = namespaces;
}
public static class NamespacesItem {
private String defaultRepoType;
private String namespaceStatus;
private String namespaceId;
private Boolean autoCreateRepo;
private String instanceId;
private String namespaceName;
public String getDefaultRepoType() {
return this.defaultRepoType;
}
public void setDefaultRepoType(String defaultRepoType) {
this.defaultRepoType = defaultRepoType;
}
public String getNamespaceStatus() {
return this.namespaceStatus;
}
public void setNamespaceStatus(String namespaceStatus) {
this.namespaceStatus = namespaceStatus;
}
public String getNamespaceId() {
return this.namespaceId;
}
public void setNamespaceId(String namespaceId) {
this.namespaceId = namespaceId;
}
public Boolean getAutoCreateRepo() {
return this.autoCreateRepo;
}
public void setAutoCreateRepo(Boolean autoCreateRepo) {
this.autoCreateRepo = autoCreateRepo;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getNamespaceName() {
return this.namespaceName;
}
public void setNamespaceName(String namespaceName) {
this.namespaceName = namespaceName;
}
}
@Override
public ListChartNamespaceResponse getInstance(UnmarshallerContext context) {
return ListChartNamespaceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListChartReleaseRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListChartReleaseRequest extends RpcAcsRequest<ListChartReleaseResponse> {
private String instanceId;
private String repoName;
private String repoNamespaceName;
private Integer pageNo;
private Integer pageSize;
private String chart;
public ListChartReleaseRequest() {
super("cr", "2018-12-01", "ListChartRelease", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
if(repoName != null){
putQueryParameter("RepoName", repoName);
}
}
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
if(repoNamespaceName != null){
putQueryParameter("RepoNamespaceName", repoNamespaceName);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getChart() {
return this.chart;
}
public void setChart(String chart) {
this.chart = chart;
if(chart != null){
putQueryParameter("Chart", chart);
}
}
@Override
public Class<ListChartReleaseResponse> getResponseClass() {
return ListChartReleaseResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListChartReleaseResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListChartReleaseResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListChartReleaseResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private String totalCount;
private List<ChartReleasesItem> chartReleases;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getTotalCount() {
return this.totalCount;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public List<ChartReleasesItem> getChartReleases() {
return this.chartReleases;
}
public void setChartReleases(List<ChartReleasesItem> chartReleases) {
this.chartReleases = chartReleases;
}
public static class ChartReleasesItem {
private String status;
private Long modifiedTime;
private String repoId;
private String release;
private String size;
private String instanceId;
private String chart;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Long getModifiedTime() {
return this.modifiedTime;
}
public void setModifiedTime(Long modifiedTime) {
this.modifiedTime = modifiedTime;
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
}
public String getRelease() {
return this.release;
}
public void setRelease(String release) {
this.release = release;
}
public String getSize() {
return this.size;
}
public void setSize(String size) {
this.size = size;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getChart() {
return this.chart;
}
public void setChart(String chart) {
this.chart = chart;
}
}
@Override
public ListChartReleaseResponse getInstance(UnmarshallerContext context) {
return ListChartReleaseResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListChartRepositoryRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListChartRepositoryRequest extends RpcAcsRequest<ListChartRepositoryResponse> {
private String instanceId;
private String repoName;
private String repoNamespaceName;
private Integer pageNo;
private Integer pageSize;
private String repoStatus;
public ListChartRepositoryRequest() {
super("cr", "2018-12-01", "ListChartRepository", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
if(repoName != null){
putQueryParameter("RepoName", repoName);
}
}
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
if(repoNamespaceName != null){
putQueryParameter("RepoNamespaceName", repoNamespaceName);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getRepoStatus() {
return this.repoStatus;
}
public void setRepoStatus(String repoStatus) {
this.repoStatus = repoStatus;
if(repoStatus != null){
putQueryParameter("RepoStatus", repoStatus);
}
}
@Override
public Class<ListChartRepositoryResponse> getResponseClass() {
return ListChartRepositoryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListChartRepositoryResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListChartRepositoryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListChartRepositoryResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private String totalCount;
private List<RepositoriesItem> repositories;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getTotalCount() {
return this.totalCount;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public List<RepositoriesItem> getRepositories() {
return this.repositories;
}
public void setRepositories(List<RepositoriesItem> repositories) {
this.repositories = repositories;
}
public static class RepositoriesItem {
private String summary;
private Long modifiedTime;
private String repoId;
private Long createTime;
private String repoNamespaceName;
private String instanceId;
private String repoType;
private String repoStatus;
private String repoName;
public String getSummary() {
return this.summary;
}
public void setSummary(String summary) {
this.summary = summary;
}
public Long getModifiedTime() {
return this.modifiedTime;
}
public void setModifiedTime(Long modifiedTime) {
this.modifiedTime = modifiedTime;
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getRepoType() {
return this.repoType;
}
public void setRepoType(String repoType) {
this.repoType = repoType;
}
public String getRepoStatus() {
return this.repoStatus;
}
public void setRepoStatus(String repoStatus) {
this.repoStatus = repoStatus;
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
}
}
@Override
public ListChartRepositoryResponse getInstance(UnmarshallerContext context) {
return ListChartRepositoryResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListEventCenterRecordRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListEventCenterRecordRequest extends RpcAcsRequest<ListEventCenterRecordResponse> {
private String instanceId;
private Integer pageNo;
private Integer pageSize;
private String eventType;
private String ruleId;
public ListEventCenterRecordRequest() {
super("cr", "2018-12-01", "ListEventCenterRecord", "acr");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getEventType() {
return this.eventType;
}
public void setEventType(String eventType) {
this.eventType = eventType;
if(eventType != null){
putQueryParameter("EventType", eventType);
}
}
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
if(ruleId != null){
putQueryParameter("RuleId", ruleId);
}
}
@Override
public Class<ListEventCenterRecordResponse> getResponseClass() {
return ListEventCenterRecordResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListEventCenterRecordResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListEventCenterRecordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListEventCenterRecordResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private Integer totalCount;
private List<RecordsItem> records;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<RecordsItem> getRecords() {
return this.records;
}
public void setRecords(List<RecordsItem> records) {
this.records = records;
}
public static class RecordsItem {
private String recordId;
private String ruleId;
private String instanceId;
private String ruleName;
private String namespace;
private String repoName;
private String tag;
private String eventChannel;
private String eventType;
private String eventNotifyMethod;
private String eventNotifyId;
private Long createTime;
private Long updateTime;
public String getRecordId() {
return this.recordId;
}
public void setRecordId(String recordId) {
this.recordId = recordId;
}
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
public String getNamespace() {
return this.namespace;
}
public void setNamespace(String namespace) {
this.namespace = namespace;
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public String getEventChannel() {
return this.eventChannel;
}
public void setEventChannel(String eventChannel) {
this.eventChannel = eventChannel;
}
public String getEventType() {
return this.eventType;
}
public void setEventType(String eventType) {
this.eventType = eventType;
}
public String getEventNotifyMethod() {
return this.eventNotifyMethod;
}
public void setEventNotifyMethod(String eventNotifyMethod) {
this.eventNotifyMethod = eventNotifyMethod;
}
public String getEventNotifyId() {
return this.eventNotifyId;
}
public void setEventNotifyId(String eventNotifyId) {
this.eventNotifyId = eventNotifyId;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public Long getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
}
}
@Override
public ListEventCenterRecordResponse getInstance(UnmarshallerContext context) {
return ListEventCenterRecordResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListEventCenterRuleNameRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListEventCenterRuleNameRequest extends RpcAcsRequest<ListEventCenterRuleNameResponse> {
private String instanceId;
public ListEventCenterRuleNameRequest() {
super("cr", "2018-12-01", "ListEventCenterRuleName", "acr");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ListEventCenterRuleNameResponse> getResponseClass() {
return ListEventCenterRuleNameResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListEventCenterRuleNameResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListEventCenterRuleNameResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListEventCenterRuleNameResponse extends AcsResponse {
private String requestId;
private String code;
private Boolean isSuccess;
private List<RuleNamesItem> ruleNames;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public List<RuleNamesItem> getRuleNames() {
return this.ruleNames;
}
public void setRuleNames(List<RuleNamesItem> ruleNames) {
this.ruleNames = ruleNames;
}
public static class RuleNamesItem {
private String ruleId;
private String ruleName;
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
}
@Override
public ListEventCenterRuleNameResponse getInstance(UnmarshallerContext context) {
return ListEventCenterRuleNameResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListInstanceEndpointRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListInstanceEndpointRequest extends RpcAcsRequest<ListInstanceEndpointResponse> {
private String instanceId;
private String moduleName;
public ListInstanceEndpointRequest() {
super("cr", "2018-12-01", "ListInstanceEndpoint", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getModuleName() {
return this.moduleName;
}
public void setModuleName(String moduleName) {
this.moduleName = moduleName;
if(moduleName != null){
putQueryParameter("ModuleName", moduleName);
}
}
@Override
public Class<ListInstanceEndpointResponse> getResponseClass() {
return ListInstanceEndpointResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListInstanceEndpointResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListInstanceEndpointResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListInstanceEndpointResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
private List<EndpointsItem> endpoints;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<EndpointsItem> getEndpoints() {
return this.endpoints;
}
public void setEndpoints(List<EndpointsItem> endpoints) {
this.endpoints = endpoints;
}
public static class EndpointsItem {
private String status;
private String endpointType;
private Boolean aclEnable;
private Boolean enable;
private List<DomainsItem> domains;
private List<LinkedVpcsItem> linkedVpcs;
private List<AclEntriesItem> aclEntries;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getEndpointType() {
return this.endpointType;
}
public void setEndpointType(String endpointType) {
this.endpointType = endpointType;
}
public Boolean getAclEnable() {
return this.aclEnable;
}
public void setAclEnable(Boolean aclEnable) {
this.aclEnable = aclEnable;
}
public Boolean getEnable() {
return this.enable;
}
public void setEnable(Boolean enable) {
this.enable = enable;
}
public List<DomainsItem> getDomains() {
return this.domains;
}
public void setDomains(List<DomainsItem> domains) {
this.domains = domains;
}
public List<LinkedVpcsItem> getLinkedVpcs() {
return this.linkedVpcs;
}
public void setLinkedVpcs(List<LinkedVpcsItem> linkedVpcs) {
this.linkedVpcs = linkedVpcs;
}
public List<AclEntriesItem> getAclEntries() {
return this.aclEntries;
}
public void setAclEntries(List<AclEntriesItem> aclEntries) {
this.aclEntries = aclEntries;
}
public static class DomainsItem {
private String type;
private String domain;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
}
public static class LinkedVpcsItem {
private String vpcId;
public String getVpcId() {
return this.vpcId;
}
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
}
}
public static class AclEntriesItem {
private String entry;
public String getEntry() {
return this.entry;
}
public void setEntry(String entry) {
this.entry = entry;
}
}
}
@Override
public ListInstanceEndpointResponse getInstance(UnmarshallerContext context) {
return ListInstanceEndpointResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListInstanceRegionRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListInstanceRegionRequest extends RpcAcsRequest<ListInstanceRegionResponse> {
private String lang;
public ListInstanceRegionRequest() {
super("cr", "2018-12-01", "ListInstanceRegion", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<ListInstanceRegionResponse> getResponseClass() {
return ListInstanceRegionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListInstanceRegionResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListInstanceRegionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListInstanceRegionResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
private List<RegionsItem> regions;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<RegionsItem> getRegions() {
return this.regions;
}
public void setRegions(List<RegionsItem> regions) {
this.regions = regions;
}
public static class RegionsItem {
private String localName;
private String regionId;
public String getLocalName() {
return this.localName;
}
public void setLocalName(String localName) {
this.localName = localName;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
@Override
public ListInstanceRegionResponse getInstance(UnmarshallerContext context) {
return ListInstanceRegionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListInstanceRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListInstanceRequest extends RpcAcsRequest<ListInstanceResponse> {
private String instanceStatus;
private String instanceName;
private Integer pageNo;
private Integer pageSize;
public ListInstanceRequest() {
super("cr", "2018-12-01", "ListInstance", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceStatus() {
return this.instanceStatus;
}
public void setInstanceStatus(String instanceStatus) {
this.instanceStatus = instanceStatus;
if(instanceStatus != null){
putQueryParameter("InstanceStatus", instanceStatus);
}
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
if(instanceName != null){
putQueryParameter("InstanceName", instanceName);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListInstanceResponse> getResponseClass() {
return ListInstanceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListInstanceResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListInstanceResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private Integer totalCount;
private List<InstancesItem> instances;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<InstancesItem> getInstances() {
return this.instances;
}
public void setInstances(List<InstancesItem> instances) {
this.instances = instances;
}
public static class InstancesItem {
private String modifiedTime;
private String instanceName;
private String createTime;
private String instanceSpecification;
private String instanceStatus;
private String instanceId;
private String regionId;
public String getModifiedTime() {
return this.modifiedTime;
}
public void setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getInstanceSpecification() {
return this.instanceSpecification;
}
public void setInstanceSpecification(String instanceSpecification) {
this.instanceSpecification = instanceSpecification;
}
public String getInstanceStatus() {
return this.instanceStatus;
}
public void setInstanceStatus(String instanceStatus) {
this.instanceStatus = instanceStatus;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
@Override
public ListInstanceResponse getInstance(UnmarshallerContext context) {
return ListInstanceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListNamespaceRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListNamespaceRequest extends RpcAcsRequest<ListNamespaceResponse> {
private String namespaceName;
private String instanceId;
private Integer pageNo;
private Integer pageSize;
private String namespaceStatus;
public ListNamespaceRequest() {
super("cr", "2018-12-01", "ListNamespace", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getNamespaceName() {
return this.namespaceName;
}
public void setNamespaceName(String namespaceName) {
this.namespaceName = namespaceName;
if(namespaceName != null){
putQueryParameter("NamespaceName", namespaceName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getNamespaceStatus() {
return this.namespaceStatus;
}
public void setNamespaceStatus(String namespaceStatus) {
this.namespaceStatus = namespaceStatus;
if(namespaceStatus != null){
putQueryParameter("NamespaceStatus", namespaceStatus);
}
}
@Override
public Class<ListNamespaceResponse> getResponseClass() {
return ListNamespaceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListNamespaceResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListNamespaceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListNamespaceResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private String totalCount;
private List<NamespacesItem> namespaces;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getTotalCount() {
return this.totalCount;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public List<NamespacesItem> getNamespaces() {
return this.namespaces;
}
public void setNamespaces(List<NamespacesItem> namespaces) {
this.namespaces = namespaces;
}
public static class NamespacesItem {
private String defaultRepoType;
private String namespaceStatus;
private String namespaceId;
private Boolean autoCreateRepo;
private String instanceId;
private String namespaceName;
public String getDefaultRepoType() {
return this.defaultRepoType;
}
public void setDefaultRepoType(String defaultRepoType) {
this.defaultRepoType = defaultRepoType;
}
public String getNamespaceStatus() {
return this.namespaceStatus;
}
public void setNamespaceStatus(String namespaceStatus) {
this.namespaceStatus = namespaceStatus;
}
public String getNamespaceId() {
return this.namespaceId;
}
public void setNamespaceId(String namespaceId) {
this.namespaceId = namespaceId;
}
public Boolean getAutoCreateRepo() {
return this.autoCreateRepo;
}
public void setAutoCreateRepo(Boolean autoCreateRepo) {
this.autoCreateRepo = autoCreateRepo;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getNamespaceName() {
return this.namespaceName;
}
public void setNamespaceName(String namespaceName) {
this.namespaceName = namespaceName;
}
}
@Override
public ListNamespaceResponse getInstance(UnmarshallerContext context) {
return ListNamespaceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoBuildRecordLogRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListRepoBuildRecordLogRequest extends RpcAcsRequest<ListRepoBuildRecordLogResponse> {
private String buildRecordId;
private String repoId;
private Integer offset;
private String instanceId;
public ListRepoBuildRecordLogRequest() {
super("cr", "2018-12-01", "ListRepoBuildRecordLog", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getBuildRecordId() {
return this.buildRecordId;
}
public void setBuildRecordId(String buildRecordId) {
this.buildRecordId = buildRecordId;
if(buildRecordId != null){
putQueryParameter("BuildRecordId", buildRecordId);
}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public Integer getOffset() {
return this.offset;
}
public void setOffset(Integer offset) {
this.offset = offset;
if(offset != null){
putQueryParameter("Offset", offset.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ListRepoBuildRecordLogResponse> getResponseClass() {
return ListRepoBuildRecordLogResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoBuildRecordLogResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListRepoBuildRecordLogResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListRepoBuildRecordLogResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private String totalCount;
private List<BuildRecordLogsItem> buildRecordLogs;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getTotalCount() {
return this.totalCount;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public List<BuildRecordLogsItem> getBuildRecordLogs() {
return this.buildRecordLogs;
}
public void setBuildRecordLogs(List<BuildRecordLogsItem> buildRecordLogs) {
this.buildRecordLogs = buildRecordLogs;
}
public static class BuildRecordLogsItem {
private Integer lineNumber;
private String message;
private String buildStage;
public Integer getLineNumber() {
return this.lineNumber;
}
public void setLineNumber(Integer lineNumber) {
this.lineNumber = lineNumber;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getBuildStage() {
return this.buildStage;
}
public void setBuildStage(String buildStage) {
this.buildStage = buildStage;
}
}
@Override
public ListRepoBuildRecordLogResponse getInstance(UnmarshallerContext context) {
return ListRepoBuildRecordLogResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoBuildRecordRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListRepoBuildRecordRequest extends RpcAcsRequest<ListRepoBuildRecordResponse> {
private String repoId;
private String instanceId;
private Integer pageNo;
private Integer pageSize;
public ListRepoBuildRecordRequest() {
super("cr", "2018-12-01", "ListRepoBuildRecord", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListRepoBuildRecordResponse> getResponseClass() {
return ListRepoBuildRecordResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoBuildRecordResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListRepoBuildRecordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListRepoBuildRecordResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private String totalCount;
private List<BuildRecordsItem> buildRecords;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getTotalCount() {
return this.totalCount;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public List<BuildRecordsItem> getBuildRecords() {
return this.buildRecords;
}
public void setBuildRecords(List<BuildRecordsItem> buildRecords) {
this.buildRecords = buildRecords;
}
public static class BuildRecordsItem {
private String endTime;
private String startTime;
private String buildStatus;
private String buildRecordId;
private Image image;
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getBuildStatus() {
return this.buildStatus;
}
public void setBuildStatus(String buildStatus) {
this.buildStatus = buildStatus;
}
public String getBuildRecordId() {
return this.buildRecordId;
}
public void setBuildRecordId(String buildRecordId) {
this.buildRecordId = buildRecordId;
}
public Image getImage() {
return this.image;
}
public void setImage(Image image) {
this.image = image;
}
public static class Image {
private String repoNamespaceName;
private String imageTag;
private String repoId;
private String repoName;
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
}
public String getImageTag() {
return this.imageTag;
}
public void setImageTag(String imageTag) {
this.imageTag = imageTag;
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
}
}
}
@Override
public ListRepoBuildRecordResponse getInstance(UnmarshallerContext context) {
return ListRepoBuildRecordResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoBuildRuleRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListRepoBuildRuleRequest extends RpcAcsRequest<ListRepoBuildRuleResponse> {
private String repoId;
private String instanceId;
private Integer pageNo;
private Integer pageSize;
public ListRepoBuildRuleRequest() {
super("cr", "2018-12-01", "ListRepoBuildRule", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListRepoBuildRuleResponse> getResponseClass() {
return ListRepoBuildRuleResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoBuildRuleResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListRepoBuildRuleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListRepoBuildRuleResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private String totalCount;
private List<BuildRulesItem> buildRules;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getTotalCount() {
return this.totalCount;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public List<BuildRulesItem> getBuildRules() {
return this.buildRules;
}
public void setBuildRules(List<BuildRulesItem> buildRules) {
this.buildRules = buildRules;
}
public static class BuildRulesItem {
private String dockerfileLocation;
private String buildRuleId;
private String pushType;
private String pushName;
private String imageTag;
private String dockerfileName;
private List<String> platforms;
private List<String> buildArgs;
public String getDockerfileLocation() {
return this.dockerfileLocation;
}
public void setDockerfileLocation(String dockerfileLocation) {
this.dockerfileLocation = dockerfileLocation;
}
public String getBuildRuleId() {
return this.buildRuleId;
}
public void setBuildRuleId(String buildRuleId) {
this.buildRuleId = buildRuleId;
}
public String getPushType() {
return this.pushType;
}
public void setPushType(String pushType) {
this.pushType = pushType;
}
public String getPushName() {
return this.pushName;
}
public void setPushName(String pushName) {
this.pushName = pushName;
}
public String getImageTag() {
return this.imageTag;
}
public void setImageTag(String imageTag) {
this.imageTag = imageTag;
}
public String getDockerfileName() {
return this.dockerfileName;
}
public void setDockerfileName(String dockerfileName) {
this.dockerfileName = dockerfileName;
}
public List<String> getPlatforms() {
return this.platforms;
}
public void setPlatforms(List<String> platforms) {
this.platforms = platforms;
}
public List<String> getBuildArgs() {
return this.buildArgs;
}
public void setBuildArgs(List<String> buildArgs) {
this.buildArgs = buildArgs;
}
}
@Override
public ListRepoBuildRuleResponse getInstance(UnmarshallerContext context) {
return ListRepoBuildRuleResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoSyncRuleRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListRepoSyncRuleRequest extends RpcAcsRequest<ListRepoSyncRuleResponse> {
private String namespaceName;
private String instanceId;
private String targetInstanceId;
private String repoName;
private Integer pageNo;
private Integer pageSize;
private String targetRegionId;
public ListRepoSyncRuleRequest() {
super("cr", "2018-12-01", "ListRepoSyncRule", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getNamespaceName() {
return this.namespaceName;
}
public void setNamespaceName(String namespaceName) {
this.namespaceName = namespaceName;
if(namespaceName != null){
putQueryParameter("NamespaceName", namespaceName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTargetInstanceId() {
return this.targetInstanceId;
}
public void setTargetInstanceId(String targetInstanceId) {
this.targetInstanceId = targetInstanceId;
if(targetInstanceId != null){
putQueryParameter("TargetInstanceId", targetInstanceId);
}
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
if(repoName != null){
putQueryParameter("RepoName", repoName);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getTargetRegionId() {
return this.targetRegionId;
}
public void setTargetRegionId(String targetRegionId) {
this.targetRegionId = targetRegionId;
if(targetRegionId != null){
putQueryParameter("TargetRegionId", targetRegionId);
}
}
@Override
public Class<ListRepoSyncRuleResponse> getResponseClass() {
return ListRepoSyncRuleResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoSyncRuleResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListRepoSyncRuleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListRepoSyncRuleResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private Integer totalCount;
private List<SyncRulesItem> syncRules;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<SyncRulesItem> getSyncRules() {
return this.syncRules;
}
public void setSyncRules(List<SyncRulesItem> syncRules) {
this.syncRules = syncRules;
}
public static class SyncRulesItem {
private String syncTrigger;
private Long createTime;
private String localRegionId;
private String syncScope;
private String tagFilter;
private String targetNamespaceName;
private String targetInstanceId;
private String targetRepoName;
private String syncRuleId;
private Long modifiedTime;
private String syncRuleName;
private String targetRegionId;
private String localInstanceId;
private String localNamespaceName;
private String localRepoName;
private String syncDirection;
private Boolean crossUser;
public String getSyncTrigger() {
return this.syncTrigger;
}
public void setSyncTrigger(String syncTrigger) {
this.syncTrigger = syncTrigger;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getLocalRegionId() {
return this.localRegionId;
}
public void setLocalRegionId(String localRegionId) {
this.localRegionId = localRegionId;
}
public String getSyncScope() {
return this.syncScope;
}
public void setSyncScope(String syncScope) {
this.syncScope = syncScope;
}
public String getTagFilter() {
return this.tagFilter;
}
public void setTagFilter(String tagFilter) {
this.tagFilter = tagFilter;
}
public String getTargetNamespaceName() {
return this.targetNamespaceName;
}
public void setTargetNamespaceName(String targetNamespaceName) {
this.targetNamespaceName = targetNamespaceName;
}
public String getTargetInstanceId() {
return this.targetInstanceId;
}
public void setTargetInstanceId(String targetInstanceId) {
this.targetInstanceId = targetInstanceId;
}
public String getTargetRepoName() {
return this.targetRepoName;
}
public void setTargetRepoName(String targetRepoName) {
this.targetRepoName = targetRepoName;
}
public String getSyncRuleId() {
return this.syncRuleId;
}
public void setSyncRuleId(String syncRuleId) {
this.syncRuleId = syncRuleId;
}
public Long getModifiedTime() {
return this.modifiedTime;
}
public void setModifiedTime(Long modifiedTime) {
this.modifiedTime = modifiedTime;
}
public String getSyncRuleName() {
return this.syncRuleName;
}
public void setSyncRuleName(String syncRuleName) {
this.syncRuleName = syncRuleName;
}
public String getTargetRegionId() {
return this.targetRegionId;
}
public void setTargetRegionId(String targetRegionId) {
this.targetRegionId = targetRegionId;
}
public String getLocalInstanceId() {
return this.localInstanceId;
}
public void setLocalInstanceId(String localInstanceId) {
this.localInstanceId = localInstanceId;
}
public String getLocalNamespaceName() {
return this.localNamespaceName;
}
public void setLocalNamespaceName(String localNamespaceName) {
this.localNamespaceName = localNamespaceName;
}
public String getLocalRepoName() {
return this.localRepoName;
}
public void setLocalRepoName(String localRepoName) {
this.localRepoName = localRepoName;
}
public String getSyncDirection() {
return this.syncDirection;
}
public void setSyncDirection(String syncDirection) {
this.syncDirection = syncDirection;
}
public Boolean getCrossUser() {
return this.crossUser;
}
public void setCrossUser(Boolean crossUser) {
this.crossUser = crossUser;
}
}
@Override
public ListRepoSyncRuleResponse getInstance(UnmarshallerContext context) {
return ListRepoSyncRuleResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoSyncTaskRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListRepoSyncTaskRequest extends RpcAcsRequest<ListRepoSyncTaskResponse> {
private String syncRecordId;
private String instanceId;
private String repoNamespaceName;
private String repoName;
private Integer pageNo;
private Integer pageSize;
private String tag;
public ListRepoSyncTaskRequest() {
super("cr", "2018-12-01", "ListRepoSyncTask", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSyncRecordId() {
return this.syncRecordId;
}
public void setSyncRecordId(String syncRecordId) {
this.syncRecordId = syncRecordId;
if(syncRecordId != null){
putQueryParameter("SyncRecordId", syncRecordId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
if(repoNamespaceName != null){
putQueryParameter("RepoNamespaceName", repoNamespaceName);
}
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
if(repoName != null){
putQueryParameter("RepoName", repoName);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
if(tag != null){
putQueryParameter("Tag", tag);
}
}
@Override
public Class<ListRepoSyncTaskResponse> getResponseClass() {
return ListRepoSyncTaskResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoSyncTaskResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListRepoSyncTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListRepoSyncTaskResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private String totalCount;
private List<SyncTasksItem> syncTasks;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getTotalCount() {
return this.totalCount;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public List<SyncTasksItem> getSyncTasks() {
return this.syncTasks;
}
public void setSyncTasks(List<SyncTasksItem> syncTasks) {
this.syncTasks = syncTasks;
}
public static class SyncTasksItem {
private Long modifedTime;
private String syncRuleId;
private String syncTaskId;
private String taskStatus;
private Long createTime;
private String syncBatchTaskId;
private Boolean crossUser;
private Boolean syncTransAccelerate;
private String taskTrigger;
private Boolean customLink;
private ImageFrom imageFrom;
private ImageTo imageTo;
public Long getModifedTime() {
return this.modifedTime;
}
public void setModifedTime(Long modifedTime) {
this.modifedTime = modifedTime;
}
public String getSyncRuleId() {
return this.syncRuleId;
}
public void setSyncRuleId(String syncRuleId) {
this.syncRuleId = syncRuleId;
}
public String getSyncTaskId() {
return this.syncTaskId;
}
public void setSyncTaskId(String syncTaskId) {
this.syncTaskId = syncTaskId;
}
public String getTaskStatus() {
return this.taskStatus;
}
public void setTaskStatus(String taskStatus) {
this.taskStatus = taskStatus;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getSyncBatchTaskId() {
return this.syncBatchTaskId;
}
public void setSyncBatchTaskId(String syncBatchTaskId) {
this.syncBatchTaskId = syncBatchTaskId;
}
public Boolean getCrossUser() {
return this.crossUser;
}
public void setCrossUser(Boolean crossUser) {
this.crossUser = crossUser;
}
public Boolean getSyncTransAccelerate() {
return this.syncTransAccelerate;
}
public void setSyncTransAccelerate(Boolean syncTransAccelerate) {
this.syncTransAccelerate = syncTransAccelerate;
}
public String getTaskTrigger() {
return this.taskTrigger;
}
public void setTaskTrigger(String taskTrigger) {
this.taskTrigger = taskTrigger;
}
public Boolean getCustomLink() {
return this.customLink;
}
public void setCustomLink(Boolean customLink) {
this.customLink = customLink;
}
public ImageFrom getImageFrom() {
return this.imageFrom;
}
public void setImageFrom(ImageFrom imageFrom) {
this.imageFrom = imageFrom;
}
public ImageTo getImageTo() {
return this.imageTo;
}
public void setImageTo(ImageTo imageTo) {
this.imageTo = imageTo;
}
public static class ImageFrom {
private String repoNamespaceName;
private String instanceId;
private String imageTag;
private String repoName;
private String regionId;
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getImageTag() {
return this.imageTag;
}
public void setImageTag(String imageTag) {
this.imageTag = imageTag;
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
public static class ImageTo {
private String repoNamespaceName;
private String instanceId;
private String imageTag;
private String repoName;
private String regionId;
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getImageTag() {
return this.imageTag;
}
public void setImageTag(String imageTag) {
this.imageTag = imageTag;
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
}
public String getRegionId() {
return this.regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId;
}
}
}
@Override
public ListRepoSyncTaskResponse getInstance(UnmarshallerContext context) {
return ListRepoSyncTaskResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoTagRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListRepoTagRequest extends RpcAcsRequest<ListRepoTagResponse> {
private String repoId;
private String instanceId;
private Integer pageNo;
private Integer pageSize;
public ListRepoTagRequest() {
super("cr", "2018-12-01", "ListRepoTag", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListRepoTagResponse> getResponseClass() {
return ListRepoTagResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoTagResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListRepoTagResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListRepoTagResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private String totalCount;
private List<ImagesItem> images;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getTotalCount() {
return this.totalCount;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public List<ImagesItem> getImages() {
return this.images;
}
public void setImages(List<ImagesItem> images) {
this.images = images;
}
public static class ImagesItem {
private String status;
private Long imageSize;
private String imageCreate;
private String digest;
private String imageUpdate;
private String tag;
private String imageId;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Long getImageSize() {
return this.imageSize;
}
public void setImageSize(Long imageSize) {
this.imageSize = imageSize;
}
public String getImageCreate() {
return this.imageCreate;
}
public void setImageCreate(String imageCreate) {
this.imageCreate = imageCreate;
}
public String getDigest() {
return this.digest;
}
public void setDigest(String digest) {
this.digest = digest;
}
public String getImageUpdate() {
return this.imageUpdate;
}
public void setImageUpdate(String imageUpdate) {
this.imageUpdate = imageUpdate;
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public String getImageId() {
return this.imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
}
}
@Override
public ListRepoTagResponse getInstance(UnmarshallerContext context) {
return ListRepoTagResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoTagScanResultRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListRepoTagScanResultRequest extends RpcAcsRequest<ListRepoTagScanResultResponse> {
private String repoId;
private String filterValue;
private String scanType;
private Integer pageSize;
private String digest;
private String tag;
private String severity;
private String scanTaskId;
private String instanceId;
private String vulQueryKey;
private Integer pageNo;
public ListRepoTagScanResultRequest() {
super("cr", "2018-12-01", "ListRepoTagScanResult", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getFilterValue() {
return this.filterValue;
}
public void setFilterValue(String filterValue) {
this.filterValue = filterValue;
if(filterValue != null){
putQueryParameter("FilterValue", filterValue);
}
}
public String getScanType() {
return this.scanType;
}
public void setScanType(String scanType) {
this.scanType = scanType;
if(scanType != null){
putQueryParameter("ScanType", scanType);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getDigest() {
return this.digest;
}
public void setDigest(String digest) {
this.digest = digest;
if(digest != null){
putQueryParameter("Digest", digest);
}
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
if(tag != null){
putQueryParameter("Tag", tag);
}
}
public String getSeverity() {
return this.severity;
}
public void setSeverity(String severity) {
this.severity = severity;
if(severity != null){
putQueryParameter("Severity", severity);
}
}
public String getScanTaskId() {
return this.scanTaskId;
}
public void setScanTaskId(String scanTaskId) {
this.scanTaskId = scanTaskId;
if(scanTaskId != null){
putQueryParameter("ScanTaskId", scanTaskId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getVulQueryKey() {
return this.vulQueryKey;
}
public void setVulQueryKey(String vulQueryKey) {
this.vulQueryKey = vulQueryKey;
if(vulQueryKey != null){
putQueryParameter("VulQueryKey", vulQueryKey);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
@Override
public Class<ListRepoTagScanResultResponse> getResponseClass() {
return ListRepoTagScanResultResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoTagScanResultResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListRepoTagScanResultResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListRepoTagScanResultResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private Integer totalCount;
private List<VulnerabilitiesItem> vulnerabilities;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<VulnerabilitiesItem> getVulnerabilities() {
return this.vulnerabilities;
}
public void setVulnerabilities(List<VulnerabilitiesItem> vulnerabilities) {
this.vulnerabilities = vulnerabilities;
}
public static class VulnerabilitiesItem {
private String severity;
private String addedBy;
private String cveName;
private String description;
private String feature;
private String version;
private String versionFormat;
private String cveLink;
private String versionFixed;
private String fixCmd;
private String cveLocation;
private String scanType;
private String aliasName;
public String getSeverity() {
return this.severity;
}
public void setSeverity(String severity) {
this.severity = severity;
}
public String getAddedBy() {
return this.addedBy;
}
public void setAddedBy(String addedBy) {
this.addedBy = addedBy;
}
public String getCveName() {
return this.cveName;
}
public void setCveName(String cveName) {
this.cveName = cveName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getFeature() {
return this.feature;
}
public void setFeature(String feature) {
this.feature = feature;
}
public String getVersion() {
return this.version;
}
public void setVersion(String version) {
this.version = version;
}
public String getVersionFormat() {
return this.versionFormat;
}
public void setVersionFormat(String versionFormat) {
this.versionFormat = versionFormat;
}
public String getCveLink() {
return this.cveLink;
}
public void setCveLink(String cveLink) {
this.cveLink = cveLink;
}
public String getVersionFixed() {
return this.versionFixed;
}
public void setVersionFixed(String versionFixed) {
this.versionFixed = versionFixed;
}
public String getFixCmd() {
return this.fixCmd;
}
public void setFixCmd(String fixCmd) {
this.fixCmd = fixCmd;
}
public String getCveLocation() {
return this.cveLocation;
}
public void setCveLocation(String cveLocation) {
this.cveLocation = cveLocation;
}
public String getScanType() {
return this.scanType;
}
public void setScanType(String scanType) {
this.scanType = scanType;
}
public String getAliasName() {
return this.aliasName;
}
public void setAliasName(String aliasName) {
this.aliasName = aliasName;
}
}
@Override
public ListRepoTagScanResultResponse getInstance(UnmarshallerContext context) {
return ListRepoTagScanResultResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoTriggerRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListRepoTriggerRequest extends RpcAcsRequest<ListRepoTriggerResponse> {
private String repoId;
private String instanceId;
public ListRepoTriggerRequest() {
super("cr", "2018-12-01", "ListRepoTrigger", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ListRepoTriggerResponse> getResponseClass() {
return ListRepoTriggerResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepoTriggerResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListRepoTriggerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListRepoTriggerResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
private List<TriggersItem> triggers;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<TriggersItem> getTriggers() {
return this.triggers;
}
public void setTriggers(List<TriggersItem> triggers) {
this.triggers = triggers;
}
public static class TriggersItem {
private String triggerName;
private String repoEvent;
private String triggerId;
private String triggerUrl;
private String triggerType;
private String triggerTag;
public String getTriggerName() {
return this.triggerName;
}
public void setTriggerName(String triggerName) {
this.triggerName = triggerName;
}
public String getRepoEvent() {
return this.repoEvent;
}
public void setRepoEvent(String repoEvent) {
this.repoEvent = repoEvent;
}
public String getTriggerId() {
return this.triggerId;
}
public void setTriggerId(String triggerId) {
this.triggerId = triggerId;
}
public String getTriggerUrl() {
return this.triggerUrl;
}
public void setTriggerUrl(String triggerUrl) {
this.triggerUrl = triggerUrl;
}
public String getTriggerType() {
return this.triggerType;
}
public void setTriggerType(String triggerType) {
this.triggerType = triggerType;
}
public String getTriggerTag() {
return this.triggerTag;
}
public void setTriggerTag(String triggerTag) {
this.triggerTag = triggerTag;
}
}
@Override
public ListRepoTriggerResponse getInstance(UnmarshallerContext context) {
return ListRepoTriggerResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepositoryRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ListRepositoryRequest extends RpcAcsRequest<ListRepositoryResponse> {
private String instanceId;
private String repoName;
private String repoNamespaceName;
private Integer pageNo;
private Integer pageSize;
private String repoStatus;
public ListRepositoryRequest() {
super("cr", "2018-12-01", "ListRepository", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
if(repoName != null){
putQueryParameter("RepoName", repoName);
}
}
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
if(repoNamespaceName != null){
putQueryParameter("RepoNamespaceName", repoNamespaceName);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getRepoStatus() {
return this.repoStatus;
}
public void setRepoStatus(String repoStatus) {
this.repoStatus = repoStatus;
if(repoStatus != null){
putQueryParameter("RepoStatus", repoStatus);
}
}
@Override
public Class<ListRepositoryResponse> getResponseClass() {
return ListRepositoryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ListRepositoryResponse.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.cr.model.v20181201;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ListRepositoryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListRepositoryResponse extends AcsResponse {
private String requestId;
private String code;
private Integer pageNo;
private Boolean isSuccess;
private Integer pageSize;
private String totalCount;
private List<RepositoriesItem> repositories;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getTotalCount() {
return this.totalCount;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public List<RepositoriesItem> getRepositories() {
return this.repositories;
}
public void setRepositories(List<RepositoriesItem> repositories) {
this.repositories = repositories;
}
public static class RepositoriesItem {
private String summary;
private String repoBuildType;
private Long modifiedTime;
private String repoId;
private Long createTime;
private String repoNamespaceName;
private Boolean tagImmutability;
private String instanceId;
private String repoType;
private String repoStatus;
private String repoName;
public String getSummary() {
return this.summary;
}
public void setSummary(String summary) {
this.summary = summary;
}
public String getRepoBuildType() {
return this.repoBuildType;
}
public void setRepoBuildType(String repoBuildType) {
this.repoBuildType = repoBuildType;
}
public Long getModifiedTime() {
return this.modifiedTime;
}
public void setModifiedTime(Long modifiedTime) {
this.modifiedTime = modifiedTime;
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
}
public Boolean getTagImmutability() {
return this.tagImmutability;
}
public void setTagImmutability(Boolean tagImmutability) {
this.tagImmutability = tagImmutability;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getRepoType() {
return this.repoType;
}
public void setRepoType(String repoType) {
this.repoType = repoType;
}
public String getRepoStatus() {
return this.repoStatus;
}
public void setRepoStatus(String repoStatus) {
this.repoStatus = repoStatus;
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
}
}
@Override
public ListRepositoryResponse getInstance(UnmarshallerContext context) {
return ListRepositoryResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ResetLoginPasswordRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class ResetLoginPasswordRequest extends RpcAcsRequest<ResetLoginPasswordResponse> {
private String password;
private String instanceId;
public ResetLoginPasswordRequest() {
super("cr", "2018-12-01", "ResetLoginPassword", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putQueryParameter("Password", password);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ResetLoginPasswordResponse> getResponseClass() {
return ResetLoginPasswordResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/ResetLoginPasswordResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.ResetLoginPasswordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ResetLoginPasswordResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ResetLoginPasswordResponse getInstance(UnmarshallerContext context) {
return ResetLoginPasswordResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateChainRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateChainRequest extends RpcAcsRequest<UpdateChainResponse> {
private String description;
private String instanceId;
private String chainId;
private String name;
private String chainConfig;
public UpdateChainRequest() {
super("cr", "2018-12-01", "UpdateChain", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putQueryParameter("Description", description);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getChainId() {
return this.chainId;
}
public void setChainId(String chainId) {
this.chainId = chainId;
if(chainId != null){
putQueryParameter("ChainId", chainId);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public String getChainConfig() {
return this.chainConfig;
}
public void setChainConfig(String chainConfig) {
this.chainConfig = chainConfig;
if(chainConfig != null){
putQueryParameter("ChainConfig", chainConfig);
}
}
@Override
public Class<UpdateChainResponse> getResponseClass() {
return UpdateChainResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateChainResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.UpdateChainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateChainResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateChainResponse getInstance(UnmarshallerContext context) {
return UpdateChainResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateChartNamespaceRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateChartNamespaceRequest extends RpcAcsRequest<UpdateChartNamespaceResponse> {
private String namespaceName;
private Boolean autoCreateRepo;
private String defaultRepoType;
private String instanceId;
public UpdateChartNamespaceRequest() {
super("cr", "2018-12-01", "UpdateChartNamespace", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getNamespaceName() {
return this.namespaceName;
}
public void setNamespaceName(String namespaceName) {
this.namespaceName = namespaceName;
if(namespaceName != null){
putQueryParameter("NamespaceName", namespaceName);
}
}
public Boolean getAutoCreateRepo() {
return this.autoCreateRepo;
}
public void setAutoCreateRepo(Boolean autoCreateRepo) {
this.autoCreateRepo = autoCreateRepo;
if(autoCreateRepo != null){
putQueryParameter("AutoCreateRepo", autoCreateRepo.toString());
}
}
public String getDefaultRepoType() {
return this.defaultRepoType;
}
public void setDefaultRepoType(String defaultRepoType) {
this.defaultRepoType = defaultRepoType;
if(defaultRepoType != null){
putQueryParameter("DefaultRepoType", defaultRepoType);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<UpdateChartNamespaceResponse> getResponseClass() {
return UpdateChartNamespaceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateChartNamespaceResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.UpdateChartNamespaceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateChartNamespaceResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateChartNamespaceResponse getInstance(UnmarshallerContext context) {
return UpdateChartNamespaceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateChartRepositoryRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateChartRepositoryRequest extends RpcAcsRequest<UpdateChartRepositoryResponse> {
private String repoType;
private String summary;
private String instanceId;
private String repoNamespaceName;
private String repoName;
public UpdateChartRepositoryRequest() {
super("cr", "2018-12-01", "UpdateChartRepository", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoType() {
return this.repoType;
}
public void setRepoType(String repoType) {
this.repoType = repoType;
if(repoType != null){
putQueryParameter("RepoType", repoType);
}
}
public String getSummary() {
return this.summary;
}
public void setSummary(String summary) {
this.summary = summary;
if(summary != null){
putQueryParameter("Summary", summary);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getRepoNamespaceName() {
return this.repoNamespaceName;
}
public void setRepoNamespaceName(String repoNamespaceName) {
this.repoNamespaceName = repoNamespaceName;
if(repoNamespaceName != null){
putQueryParameter("RepoNamespaceName", repoNamespaceName);
}
}
public String getRepoName() {
return this.repoName;
}
public void setRepoName(String repoName) {
this.repoName = repoName;
if(repoName != null){
putQueryParameter("RepoName", repoName);
}
}
@Override
public Class<UpdateChartRepositoryResponse> getResponseClass() {
return UpdateChartRepositoryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateChartRepositoryResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.UpdateChartRepositoryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateChartRepositoryResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateChartRepositoryResponse getInstance(UnmarshallerContext context) {
return UpdateChartRepositoryResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateEventCenterRuleRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateEventCenterRuleRequest extends RpcAcsRequest<UpdateEventCenterRuleResponse> {
private String eventScope;
private String ruleName;
private String eventChannel;
private String repoTagFilterPattern;
private String instanceId;
private String eventConfig;
@SerializedName("repoNames")
private List<String> repoNames;
private String eventType;
private String ruleId;
@SerializedName("namespaces")
private List<String> namespaces;
public UpdateEventCenterRuleRequest() {
super("cr", "2018-12-01", "UpdateEventCenterRule", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getEventScope() {
return this.eventScope;
}
public void setEventScope(String eventScope) {
this.eventScope = eventScope;
if(eventScope != null){
putQueryParameter("EventScope", eventScope);
}
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
if(ruleName != null){
putQueryParameter("RuleName", ruleName);
}
}
public String getEventChannel() {
return this.eventChannel;
}
public void setEventChannel(String eventChannel) {
this.eventChannel = eventChannel;
if(eventChannel != null){
putQueryParameter("EventChannel", eventChannel);
}
}
public String getRepoTagFilterPattern() {
return this.repoTagFilterPattern;
}
public void setRepoTagFilterPattern(String repoTagFilterPattern) {
this.repoTagFilterPattern = repoTagFilterPattern;
if(repoTagFilterPattern != null){
putQueryParameter("RepoTagFilterPattern", repoTagFilterPattern);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getEventConfig() {
return this.eventConfig;
}
public void setEventConfig(String eventConfig) {
this.eventConfig = eventConfig;
if(eventConfig != null){
putQueryParameter("EventConfig", eventConfig);
}
}
public List<String> getRepoNames() {
return this.repoNames;
}
public void setRepoNames(List<String> repoNames) {
this.repoNames = repoNames;
if (repoNames != null) {
putQueryParameter("RepoNames" , new Gson().toJson(repoNames));
}
}
public String getEventType() {
return this.eventType;
}
public void setEventType(String eventType) {
this.eventType = eventType;
if(eventType != null){
putQueryParameter("EventType", eventType);
}
}
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
if(ruleId != null){
putQueryParameter("RuleId", ruleId);
}
}
public List<String> getNamespaces() {
return this.namespaces;
}
public void setNamespaces(List<String> namespaces) {
this.namespaces = namespaces;
if (namespaces != null) {
putQueryParameter("Namespaces" , new Gson().toJson(namespaces));
}
}
@Override
public Class<UpdateEventCenterRuleResponse> getResponseClass() {
return UpdateEventCenterRuleResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateEventCenterRuleResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.UpdateEventCenterRuleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateEventCenterRuleResponse extends AcsResponse {
private String requestId;
private Integer code;
private String ruleId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
}
@Override
public UpdateEventCenterRuleResponse getInstance(UnmarshallerContext context) {
return UpdateEventCenterRuleResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateInstanceEndpointStatusRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateInstanceEndpointStatusRequest extends RpcAcsRequest<UpdateInstanceEndpointStatusResponse> {
private String instanceId;
private String endpointType;
private Boolean enable;
private String moduleName;
public UpdateInstanceEndpointStatusRequest() {
super("cr", "2018-12-01", "UpdateInstanceEndpointStatus", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getEndpointType() {
return this.endpointType;
}
public void setEndpointType(String endpointType) {
this.endpointType = endpointType;
if(endpointType != null){
putQueryParameter("EndpointType", endpointType);
}
}
public Boolean getEnable() {
return this.enable;
}
public void setEnable(Boolean enable) {
this.enable = enable;
if(enable != null){
putQueryParameter("Enable", enable.toString());
}
}
public String getModuleName() {
return this.moduleName;
}
public void setModuleName(String moduleName) {
this.moduleName = moduleName;
if(moduleName != null){
putQueryParameter("ModuleName", moduleName);
}
}
@Override
public Class<UpdateInstanceEndpointStatusResponse> getResponseClass() {
return UpdateInstanceEndpointStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateInstanceEndpointStatusResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.UpdateInstanceEndpointStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateInstanceEndpointStatusResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateInstanceEndpointStatusResponse getInstance(UnmarshallerContext context) {
return UpdateInstanceEndpointStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateNamespaceRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateNamespaceRequest extends RpcAcsRequest<UpdateNamespaceResponse> {
private String namespaceName;
private Boolean autoCreateRepo;
private String defaultRepoType;
private String instanceId;
public UpdateNamespaceRequest() {
super("cr", "2018-12-01", "UpdateNamespace", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getNamespaceName() {
return this.namespaceName;
}
public void setNamespaceName(String namespaceName) {
this.namespaceName = namespaceName;
if(namespaceName != null){
putQueryParameter("NamespaceName", namespaceName);
}
}
public Boolean getAutoCreateRepo() {
return this.autoCreateRepo;
}
public void setAutoCreateRepo(Boolean autoCreateRepo) {
this.autoCreateRepo = autoCreateRepo;
if(autoCreateRepo != null){
putQueryParameter("AutoCreateRepo", autoCreateRepo.toString());
}
}
public String getDefaultRepoType() {
return this.defaultRepoType;
}
public void setDefaultRepoType(String defaultRepoType) {
this.defaultRepoType = defaultRepoType;
if(defaultRepoType != null){
putQueryParameter("DefaultRepoType", defaultRepoType);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<UpdateNamespaceResponse> getResponseClass() {
return UpdateNamespaceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateNamespaceResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.UpdateNamespaceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateNamespaceResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateNamespaceResponse getInstance(UnmarshallerContext context) {
return UpdateNamespaceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateRepoBuildRuleRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateRepoBuildRuleRequest extends RpcAcsRequest<UpdateRepoBuildRuleResponse> {
private String repoId;
private String pushName;
private String dockerfileName;
private String buildRuleId;
private List<String> buildArgss;
private List<String> platformss;
private String imageTag;
private String dockerfileLocation;
private String instanceId;
private String pushType;
public UpdateRepoBuildRuleRequest() {
super("cr", "2018-12-01", "UpdateRepoBuildRule", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getPushName() {
return this.pushName;
}
public void setPushName(String pushName) {
this.pushName = pushName;
if(pushName != null){
putQueryParameter("PushName", pushName);
}
}
public String getDockerfileName() {
return this.dockerfileName;
}
public void setDockerfileName(String dockerfileName) {
this.dockerfileName = dockerfileName;
if(dockerfileName != null){
putQueryParameter("DockerfileName", dockerfileName);
}
}
public String getBuildRuleId() {
return this.buildRuleId;
}
public void setBuildRuleId(String buildRuleId) {
this.buildRuleId = buildRuleId;
if(buildRuleId != null){
putQueryParameter("BuildRuleId", buildRuleId);
}
}
public List<String> getBuildArgss() {
return this.buildArgss;
}
public void setBuildArgss(List<String> buildArgss) {
this.buildArgss = buildArgss;
if (buildArgss != null) {
for (int i = 0; i < buildArgss.size(); i++) {
putQueryParameter("BuildArgs." + (i + 1) , buildArgss.get(i));
}
}
}
public List<String> getPlatformss() {
return this.platformss;
}
public void setPlatformss(List<String> platformss) {
this.platformss = platformss;
if (platformss != null) {
for (int i = 0; i < platformss.size(); i++) {
putQueryParameter("Platforms." + (i + 1) , platformss.get(i));
}
}
}
public String getImageTag() {
return this.imageTag;
}
public void setImageTag(String imageTag) {
this.imageTag = imageTag;
if(imageTag != null){
putQueryParameter("ImageTag", imageTag);
}
}
public String getDockerfileLocation() {
return this.dockerfileLocation;
}
public void setDockerfileLocation(String dockerfileLocation) {
this.dockerfileLocation = dockerfileLocation;
if(dockerfileLocation != null){
putQueryParameter("DockerfileLocation", dockerfileLocation);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getPushType() {
return this.pushType;
}
public void setPushType(String pushType) {
this.pushType = pushType;
if(pushType != null){
putQueryParameter("PushType", pushType);
}
}
@Override
public Class<UpdateRepoBuildRuleResponse> getResponseClass() {
return UpdateRepoBuildRuleResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateRepoBuildRuleResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.UpdateRepoBuildRuleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateRepoBuildRuleResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
private String buildRuleId;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getBuildRuleId() {
return this.buildRuleId;
}
public void setBuildRuleId(String buildRuleId) {
this.buildRuleId = buildRuleId;
}
@Override
public UpdateRepoBuildRuleResponse getInstance(UnmarshallerContext context) {
return UpdateRepoBuildRuleResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateRepoSourceCodeRepoRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateRepoSourceCodeRepoRequest extends RpcAcsRequest<UpdateRepoSourceCodeRepoResponse> {
private String codeRepoType;
private String repoId;
private String autoBuild;
private String disableCacheBuild;
private String codeRepoId;
private String overseaBuild;
private String instanceId;
private String codeRepoNamespaceName;
private String codeRepoName;
public UpdateRepoSourceCodeRepoRequest() {
super("cr", "2018-12-01", "UpdateRepoSourceCodeRepo", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getCodeRepoType() {
return this.codeRepoType;
}
public void setCodeRepoType(String codeRepoType) {
this.codeRepoType = codeRepoType;
if(codeRepoType != null){
putQueryParameter("CodeRepoType", codeRepoType);
}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getAutoBuild() {
return this.autoBuild;
}
public void setAutoBuild(String autoBuild) {
this.autoBuild = autoBuild;
if(autoBuild != null){
putQueryParameter("AutoBuild", autoBuild);
}
}
public String getDisableCacheBuild() {
return this.disableCacheBuild;
}
public void setDisableCacheBuild(String disableCacheBuild) {
this.disableCacheBuild = disableCacheBuild;
if(disableCacheBuild != null){
putQueryParameter("DisableCacheBuild", disableCacheBuild);
}
}
public String getCodeRepoId() {
return this.codeRepoId;
}
public void setCodeRepoId(String codeRepoId) {
this.codeRepoId = codeRepoId;
if(codeRepoId != null){
putQueryParameter("CodeRepoId", codeRepoId);
}
}
public String getOverseaBuild() {
return this.overseaBuild;
}
public void setOverseaBuild(String overseaBuild) {
this.overseaBuild = overseaBuild;
if(overseaBuild != null){
putQueryParameter("OverseaBuild", overseaBuild);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getCodeRepoNamespaceName() {
return this.codeRepoNamespaceName;
}
public void setCodeRepoNamespaceName(String codeRepoNamespaceName) {
this.codeRepoNamespaceName = codeRepoNamespaceName;
if(codeRepoNamespaceName != null){
putQueryParameter("CodeRepoNamespaceName", codeRepoNamespaceName);
}
}
public String getCodeRepoName() {
return this.codeRepoName;
}
public void setCodeRepoName(String codeRepoName) {
this.codeRepoName = codeRepoName;
if(codeRepoName != null){
putQueryParameter("CodeRepoName", codeRepoName);
}
}
@Override
public Class<UpdateRepoSourceCodeRepoResponse> getResponseClass() {
return UpdateRepoSourceCodeRepoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateRepoSourceCodeRepoResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.UpdateRepoSourceCodeRepoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateRepoSourceCodeRepoResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateRepoSourceCodeRepoResponse getInstance(UnmarshallerContext context) {
return UpdateRepoSourceCodeRepoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateRepoTriggerRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateRepoTriggerRequest extends RpcAcsRequest<UpdateRepoTriggerResponse> {
private String repoId;
private String triggerTag;
private String triggerId;
private String triggerType;
private String triggerUrl;
private String instanceId;
private String triggerName;
public UpdateRepoTriggerRequest() {
super("cr", "2018-12-01", "UpdateRepoTrigger", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public String getTriggerTag() {
return this.triggerTag;
}
public void setTriggerTag(String triggerTag) {
this.triggerTag = triggerTag;
if(triggerTag != null){
putQueryParameter("TriggerTag", triggerTag);
}
}
public String getTriggerId() {
return this.triggerId;
}
public void setTriggerId(String triggerId) {
this.triggerId = triggerId;
if(triggerId != null){
putQueryParameter("TriggerId", triggerId);
}
}
public String getTriggerType() {
return this.triggerType;
}
public void setTriggerType(String triggerType) {
this.triggerType = triggerType;
if(triggerType != null){
putQueryParameter("TriggerType", triggerType);
}
}
public String getTriggerUrl() {
return this.triggerUrl;
}
public void setTriggerUrl(String triggerUrl) {
this.triggerUrl = triggerUrl;
if(triggerUrl != null){
putQueryParameter("TriggerUrl", triggerUrl);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTriggerName() {
return this.triggerName;
}
public void setTriggerName(String triggerName) {
this.triggerName = triggerName;
if(triggerName != null){
putQueryParameter("TriggerName", triggerName);
}
}
@Override
public Class<UpdateRepoTriggerResponse> getResponseClass() {
return UpdateRepoTriggerResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateRepoTriggerResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.UpdateRepoTriggerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateRepoTriggerResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateRepoTriggerResponse getInstance(UnmarshallerContext context) {
return UpdateRepoTriggerResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateRepositoryRequest.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.cr.model.v20181201;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.cr.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateRepositoryRequest extends RpcAcsRequest<UpdateRepositoryResponse> {
private String repoType;
private String summary;
private String repoId;
private Boolean tagImmutability;
private String instanceId;
private String detail;
public UpdateRepositoryRequest() {
super("cr", "2018-12-01", "UpdateRepository", "acr");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRepoType() {
return this.repoType;
}
public void setRepoType(String repoType) {
this.repoType = repoType;
if(repoType != null){
putQueryParameter("RepoType", repoType);
}
}
public String getSummary() {
return this.summary;
}
public void setSummary(String summary) {
this.summary = summary;
if(summary != null){
putQueryParameter("Summary", summary);
}
}
public String getRepoId() {
return this.repoId;
}
public void setRepoId(String repoId) {
this.repoId = repoId;
if(repoId != null){
putQueryParameter("RepoId", repoId);
}
}
public Boolean getTagImmutability() {
return this.tagImmutability;
}
public void setTagImmutability(Boolean tagImmutability) {
this.tagImmutability = tagImmutability;
if(tagImmutability != null){
putQueryParameter("TagImmutability", tagImmutability.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getDetail() {
return this.detail;
}
public void setDetail(String detail) {
this.detail = detail;
if(detail != null){
putQueryParameter("Detail", detail);
}
}
@Override
public Class<UpdateRepositoryResponse> getResponseClass() {
return UpdateRepositoryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20181201/UpdateRepositoryResponse.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.cr.model.v20181201;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cr.transform.v20181201.UpdateRepositoryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateRepositoryResponse extends AcsResponse {
private String code;
private Boolean isSuccess;
private String requestId;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateRepositoryResponse getInstance(UnmarshallerContext context) {
return UpdateRepositoryResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/transform/v20160607/CancelRepoBuildResponseUnmarshaller.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.cr.transform.v20160607;
import com.aliyuncs.cr.model.v20160607.CancelRepoBuildResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CancelRepoBuildResponseUnmarshaller {
public static CancelRepoBuildResponse unmarshall(CancelRepoBuildResponse cancelRepoBuildResponse, UnmarshallerContext _ctx) {
return cancelRepoBuildResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/transform/v20160607/CreateNamespaceResponseUnmarshaller.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.cr.transform.v20160607;
import com.aliyuncs.cr.model.v20160607.CreateNamespaceResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateNamespaceResponseUnmarshaller {
public static CreateNamespaceResponse unmarshall(CreateNamespaceResponse createNamespaceResponse, UnmarshallerContext _ctx) {
return createNamespaceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/transform/v20160607/CreateRepoBuildRuleResponseUnmarshaller.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.cr.transform.v20160607;
import com.aliyuncs.cr.model.v20160607.CreateRepoBuildRuleResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateRepoBuildRuleResponseUnmarshaller {
public static CreateRepoBuildRuleResponse unmarshall(CreateRepoBuildRuleResponse createRepoBuildRuleResponse, UnmarshallerContext _ctx) {
return createRepoBuildRuleResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/transform/v20160607/CreateRepoResponseUnmarshaller.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.cr.transform.v20160607;
import com.aliyuncs.cr.model.v20160607.CreateRepoResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateRepoResponseUnmarshaller {
public static CreateRepoResponse unmarshall(CreateRepoResponse createRepoResponse, UnmarshallerContext _ctx) {
return createRepoResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/transform/v20160607/CreateRepoWebhookResponseUnmarshaller.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.cr.transform.v20160607;
import com.aliyuncs.cr.model.v20160607.CreateRepoWebhookResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateRepoWebhookResponseUnmarshaller {
public static CreateRepoWebhookResponse unmarshall(CreateRepoWebhookResponse createRepoWebhookResponse, UnmarshallerContext _ctx) {
return createRepoWebhookResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/transform/v20160607/CreateUserInfoResponseUnmarshaller.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.cr.transform.v20160607;
import com.aliyuncs.cr.model.v20160607.CreateUserInfoResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateUserInfoResponseUnmarshaller {
public static CreateUserInfoResponse unmarshall(CreateUserInfoResponse createUserInfoResponse, UnmarshallerContext _ctx) {
return createUserInfoResponse;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.