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

com.aliyun.ice20201109.models.CreateDNADBRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class CreateDNADBRequest extends TeaModel {
    @NameInMap("Description")
    public String description;

    /**
     * example:
     * 

Video

*/ @NameInMap("Model") public String model; /** *

This parameter is required.

* * example: *

example name

*/ @NameInMap("Name") public String name; @NameInMap("OwnerAccount") public String ownerAccount; @NameInMap("OwnerId") public Long ownerId; @NameInMap("ResourceOwnerAccount") public String resourceOwnerAccount; @NameInMap("ResourceOwnerId") public Long resourceOwnerId; public static CreateDNADBRequest build(java.util.Map map) throws Exception { CreateDNADBRequest self = new CreateDNADBRequest(); return TeaModel.build(map, self); } public CreateDNADBRequest setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public CreateDNADBRequest setModel(String model) { this.model = model; return this; } public String getModel() { return this.model; } public CreateDNADBRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public CreateDNADBRequest setOwnerAccount(String ownerAccount) { this.ownerAccount = ownerAccount; return this; } public String getOwnerAccount() { return this.ownerAccount; } public CreateDNADBRequest setOwnerId(Long ownerId) { this.ownerId = ownerId; return this; } public Long getOwnerId() { return this.ownerId; } public CreateDNADBRequest setResourceOwnerAccount(String resourceOwnerAccount) { this.resourceOwnerAccount = resourceOwnerAccount; return this; } public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } public CreateDNADBRequest setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; return this; } public Long getResourceOwnerId() { return this.resourceOwnerId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy