All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sas20181203.models.UpdateJenkinsImageRegistryNameRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class UpdateJenkinsImageRegistryNameRequest extends TeaModel {
    /**
     * 

The ID of the image repository.

*
*

> You can call the [PageImageRegistry](~~PageImageRegistry~~) operation to query the IDs of image repositories.

*/ @NameInMap("RegistryId") public Long registryId; /** *

The name of the image repository.

*/ @NameInMap("RegistryName") public String registryName; /** *

The source IP address of the request.

*/ @NameInMap("SourceIp") public String sourceIp; public static UpdateJenkinsImageRegistryNameRequest build(java.util.Map map) throws Exception { UpdateJenkinsImageRegistryNameRequest self = new UpdateJenkinsImageRegistryNameRequest(); return TeaModel.build(map, self); } public UpdateJenkinsImageRegistryNameRequest setRegistryId(Long registryId) { this.registryId = registryId; return this; } public Long getRegistryId() { return this.registryId; } public UpdateJenkinsImageRegistryNameRequest setRegistryName(String registryName) { this.registryName = registryName; return this; } public String getRegistryName() { return this.registryName; } public UpdateJenkinsImageRegistryNameRequest setSourceIp(String sourceIp) { this.sourceIp = sourceIp; return this; } public String getSourceIp() { return this.sourceIp; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy