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

com.aliyun.sls20201230.models.UpdateIndexRequest Maven / Gradle / Ivy

There is a newer version: 5.4.1
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sls20201230.models;

import com.aliyun.tea.*;

public class UpdateIndexRequest extends TeaModel {
    @NameInMap("keys")
    public java.util.Map keys;

    @NameInMap("line")
    public UpdateIndexRequestLine line;

    @NameInMap("log_reduce")
    public Boolean logReduce;

    @NameInMap("log_reduce_black_list")
    public java.util.List logReduceBlackList;

    @NameInMap("log_reduce_white_list")
    public java.util.List logReduceWhiteList;

    @NameInMap("max_text_len")
    public Integer maxTextLen;

    @NameInMap("ttl")
    public Integer ttl;

    public static UpdateIndexRequest build(java.util.Map map) throws Exception {
        UpdateIndexRequest self = new UpdateIndexRequest();
        return TeaModel.build(map, self);
    }

    public UpdateIndexRequest setKeys(java.util.Map keys) {
        this.keys = keys;
        return this;
    }
    public java.util.Map getKeys() {
        return this.keys;
    }

    public UpdateIndexRequest setLine(UpdateIndexRequestLine line) {
        this.line = line;
        return this;
    }
    public UpdateIndexRequestLine getLine() {
        return this.line;
    }

    public UpdateIndexRequest setLogReduce(Boolean logReduce) {
        this.logReduce = logReduce;
        return this;
    }
    public Boolean getLogReduce() {
        return this.logReduce;
    }

    public UpdateIndexRequest setLogReduceBlackList(java.util.List logReduceBlackList) {
        this.logReduceBlackList = logReduceBlackList;
        return this;
    }
    public java.util.List getLogReduceBlackList() {
        return this.logReduceBlackList;
    }

    public UpdateIndexRequest setLogReduceWhiteList(java.util.List logReduceWhiteList) {
        this.logReduceWhiteList = logReduceWhiteList;
        return this;
    }
    public java.util.List getLogReduceWhiteList() {
        return this.logReduceWhiteList;
    }

    public UpdateIndexRequest setMaxTextLen(Integer maxTextLen) {
        this.maxTextLen = maxTextLen;
        return this;
    }
    public Integer getMaxTextLen() {
        return this.maxTextLen;
    }

    public UpdateIndexRequest setTtl(Integer ttl) {
        this.ttl = ttl;
        return this;
    }
    public Integer getTtl() {
        return this.ttl;
    }

    public static class UpdateIndexRequestLine extends TeaModel {
        @NameInMap("caseSensitive")
        public Boolean caseSensitive;

        @NameInMap("chn")
        public Boolean chn;

        @NameInMap("exclude_keys")
        public java.util.List excludeKeys;

        @NameInMap("include_keys")
        public java.util.List includeKeys;

        @NameInMap("token")
        public java.util.List token;

        public static UpdateIndexRequestLine build(java.util.Map map) throws Exception {
            UpdateIndexRequestLine self = new UpdateIndexRequestLine();
            return TeaModel.build(map, self);
        }

        public UpdateIndexRequestLine setCaseSensitive(Boolean caseSensitive) {
            this.caseSensitive = caseSensitive;
            return this;
        }
        public Boolean getCaseSensitive() {
            return this.caseSensitive;
        }

        public UpdateIndexRequestLine setChn(Boolean chn) {
            this.chn = chn;
            return this;
        }
        public Boolean getChn() {
            return this.chn;
        }

        public UpdateIndexRequestLine setExcludeKeys(java.util.List excludeKeys) {
            this.excludeKeys = excludeKeys;
            return this;
        }
        public java.util.List getExcludeKeys() {
            return this.excludeKeys;
        }

        public UpdateIndexRequestLine setIncludeKeys(java.util.List includeKeys) {
            this.includeKeys = includeKeys;
            return this;
        }
        public java.util.List getIncludeKeys() {
            return this.includeKeys;
        }

        public UpdateIndexRequestLine setToken(java.util.List token) {
            this.token = token;
            return this;
        }
        public java.util.List getToken() {
            return this.token;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy