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

com.aliyun.sdk.service.gpdb20160503.models.UpsertChunksRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.gpdb20160503.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link UpsertChunksRequest} extends {@link RequestModel}
 *
 * 

UpsertChunksRequest

*/ public class UpsertChunksRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Collection") @com.aliyun.core.annotation.Validation(required = true) private String collection; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DBInstanceId") @com.aliyun.core.annotation.Validation(required = true) private String DBInstanceId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("FileName") private String fileName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Namespace") private String namespace; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("NamespacePassword") @com.aliyun.core.annotation.Validation(required = true) private String namespacePassword; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OwnerId") private Long ownerId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("RegionId") @com.aliyun.core.annotation.Validation(required = true) private String regionId; @com.aliyun.core.annotation.Body @com.aliyun.core.annotation.NameInMap("TextChunks") private java.util.List < TextChunks> textChunks; private UpsertChunksRequest(Builder builder) { super(builder); this.collection = builder.collection; this.DBInstanceId = builder.DBInstanceId; this.fileName = builder.fileName; this.namespace = builder.namespace; this.namespacePassword = builder.namespacePassword; this.ownerId = builder.ownerId; this.regionId = builder.regionId; this.textChunks = builder.textChunks; } public static Builder builder() { return new Builder(); } public static UpsertChunksRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return collection */ public String getCollection() { return this.collection; } /** * @return DBInstanceId */ public String getDBInstanceId() { return this.DBInstanceId; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return namespacePassword */ public String getNamespacePassword() { return this.namespacePassword; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return textChunks */ public java.util.List < TextChunks> getTextChunks() { return this.textChunks; } public static final class Builder extends Request.Builder { private String collection; private String DBInstanceId; private String fileName; private String namespace; private String namespacePassword; private Long ownerId; private String regionId; private java.util.List < TextChunks> textChunks; private Builder() { super(); } private Builder(UpsertChunksRequest request) { super(request); this.collection = request.collection; this.DBInstanceId = request.DBInstanceId; this.fileName = request.fileName; this.namespace = request.namespace; this.namespacePassword = request.namespacePassword; this.ownerId = request.ownerId; this.regionId = request.regionId; this.textChunks = request.textChunks; } /** * The name of the document collection. *

* * > You can call the [CreateDocumentCollection](~~2618448~~) operation to create a document collection and call the [ListDocumentCollections](~~2618452~~) operation to query a list of document collections. */ public Builder collection(String collection) { this.putQueryParameter("Collection", collection); this.collection = collection; return this; } /** * DBInstanceId. */ public Builder DBInstanceId(String DBInstanceId) { this.putQueryParameter("DBInstanceId", DBInstanceId); this.DBInstanceId = DBInstanceId; return this; } /** * FileName. */ public Builder fileName(String fileName) { this.putQueryParameter("FileName", fileName); this.fileName = fileName; return this; } /** * The name of the namespace. Default value: public. *

* * > You can call the [CreateNamespace](~~2401495~~) operation to create a namespace and call the [ListNamespaces](~~2401502~~) operation to query a list of namespaces. */ public Builder namespace(String namespace) { this.putQueryParameter("Namespace", namespace); this.namespace = namespace; return this; } /** * The password of the namespace. *

* * > This value is specified when you call the [CreateNamespace](~~2401495~~) operation. */ public Builder namespacePassword(String namespacePassword) { this.putQueryParameter("NamespacePassword", namespacePassword); this.namespacePassword = namespacePassword; return this; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; return this; } /** * RegionId. */ public Builder regionId(String regionId) { this.putQueryParameter("RegionId", regionId); this.regionId = regionId; return this; } /** * TextChunks. */ public Builder textChunks(java.util.List < TextChunks> textChunks) { String textChunksShrink = shrink(textChunks, "TextChunks", "json"); this.putBodyParameter("TextChunks", textChunksShrink); this.textChunks = textChunks; return this; } @Override public UpsertChunksRequest build() { return new UpsertChunksRequest(this); } } public static class TextChunks extends TeaModel { @com.aliyun.core.annotation.NameInMap("Content") @com.aliyun.core.annotation.Validation(required = true) private String content; @com.aliyun.core.annotation.NameInMap("Metadata") private java.util.Map < String, ? > metadata; private TextChunks(Builder builder) { this.content = builder.content; this.metadata = builder.metadata; } public static Builder builder() { return new Builder(); } public static TextChunks create() { return builder().build(); } /** * @return content */ public String getContent() { return this.content; } /** * @return metadata */ public java.util.Map < String, ? > getMetadata() { return this.metadata; } public static final class Builder { private String content; private java.util.Map < String, ? > metadata; /** * Content. */ public Builder content(String content) { this.content = content; return this; } /** * Metadata. */ public Builder metadata(java.util.Map < String, ? > metadata) { this.metadata = metadata; return this; } public TextChunks build() { return new TextChunks(this); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy