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

com.aliyun.sdk.service.gpdb20160503.models.UpsertCollectionDataRequest 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 UpsertCollectionDataRequest} extends {@link RequestModel}
 *
 * 

UpsertCollectionDataRequest

*/ public class UpsertCollectionDataRequest 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") private String DBInstanceId; @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("Rows") private java.util.List < Rows> rows; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("WorkspaceId") private String workspaceId; private UpsertCollectionDataRequest(Builder builder) { super(builder); this.collection = builder.collection; this.DBInstanceId = builder.DBInstanceId; this.namespace = builder.namespace; this.namespacePassword = builder.namespacePassword; this.ownerId = builder.ownerId; this.regionId = builder.regionId; this.rows = builder.rows; this.workspaceId = builder.workspaceId; } public static Builder builder() { return new Builder(); } public static UpsertCollectionDataRequest 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 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 rows */ public java.util.List < Rows> getRows() { return this.rows; } /** * @return workspaceId */ public String getWorkspaceId() { return this.workspaceId; } public static final class Builder extends Request.Builder { private String collection; private String DBInstanceId; private String namespace; private String namespacePassword; private Long ownerId; private String regionId; private java.util.List < Rows> rows; private String workspaceId; private Builder() { super(); } private Builder(UpsertCollectionDataRequest request) { super(request); this.collection = request.collection; this.DBInstanceId = request.DBInstanceId; this.namespace = request.namespace; this.namespacePassword = request.namespacePassword; this.ownerId = request.ownerId; this.regionId = request.regionId; this.rows = request.rows; this.workspaceId = request.workspaceId; } /** * The name of the collection. */ public Builder collection(String collection) { this.putQueryParameter("Collection", collection); this.collection = collection; return this; } /** * The instance ID. *

* * > You can call the [DescribeDBInstances](~~86911~~) operation to query the information about all AnalyticDB for PostgreSQL instances within a region, including instance IDs. */ public Builder DBInstanceId(String DBInstanceId) { this.putQueryParameter("DBInstanceId", DBInstanceId); this.DBInstanceId = DBInstanceId; return this; } /** * The name of the namespace. */ public Builder namespace(String namespace) { this.putQueryParameter("Namespace", namespace); this.namespace = namespace; return this; } /** * The password of the namespace. */ 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; } /** * The region ID of the instance. *

* * > You can call the [DescribeRegions](~~86912~~) operation to query the most recent region list. */ public Builder regionId(String regionId) { this.putQueryParameter("RegionId", regionId); this.regionId = regionId; return this; } /** * Rows. */ public Builder rows(java.util.List < Rows> rows) { String rowsShrink = shrink(rows, "Rows", "json"); this.putBodyParameter("Rows", rowsShrink); this.rows = rows; return this; } /** * WorkspaceId. */ public Builder workspaceId(String workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); this.workspaceId = workspaceId; return this; } @Override public UpsertCollectionDataRequest build() { return new UpsertCollectionDataRequest(this); } } public static class Rows extends TeaModel { @com.aliyun.core.annotation.NameInMap("Id") private String id; @com.aliyun.core.annotation.NameInMap("Metadata") private java.util.Map < String, String > metadata; @com.aliyun.core.annotation.NameInMap("Vector") @com.aliyun.core.annotation.Validation(required = true) private java.util.List < Double > vector; private Rows(Builder builder) { this.id = builder.id; this.metadata = builder.metadata; this.vector = builder.vector; } public static Builder builder() { return new Builder(); } public static Rows create() { return builder().build(); } /** * @return id */ public String getId() { return this.id; } /** * @return metadata */ public java.util.Map < String, String > getMetadata() { return this.metadata; } /** * @return vector */ public java.util.List < Double > getVector() { return this.vector; } public static final class Builder { private String id; private java.util.Map < String, String > metadata; private java.util.List < Double > vector; /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Metadata. */ public Builder metadata(java.util.Map < String, String > metadata) { this.metadata = metadata; return this; } /** * Vector. */ public Builder vector(java.util.List < Double > vector) { this.vector = vector; return this; } public Rows build() { return new Rows(this); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy