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

com.aliyun.openservices.log.request.ListLogStoresRequest Maven / Gradle / Ivy

There is a newer version: 0.6.115
Show newest version
/*
 * Copyright (C) Alibaba Cloud Computing All rights reserved.
 */
package com.aliyun.openservices.log.request;

import com.aliyun.openservices.log.common.Consts;

public class ListLogStoresRequest extends Request {

    private static final long serialVersionUID = 1380724751189149725L;

    public ListLogStoresRequest(String project, int offset, int size) {
        super(project);
        SetOffset(offset);
        SetSize(size);
    }

    public ListLogStoresRequest(String project, int offset, int size, String logstoreName) {
        super(project);
        SetOffset(offset);
        SetSize(size);
        SetLogstoreName(logstoreName);
    }

    public ListLogStoresRequest(String project, int offset, int size, String logstoreName, String telemetryType) {
        super(project);
        SetOffset(offset);
        SetSize(size);
        SetLogstoreName(logstoreName);
        SetTelemetryType(telemetryType);
    }

    public void SetOffset(int offset) {
        SetParam(Consts.CONST_OFFSET, String.valueOf(offset));
    }

    public void SetSize(int size) {
        SetParam(Consts.CONST_SIZE, String.valueOf(size));
    }

    public void SetLogstoreName(String logstoreName) {
        SetParam(Consts.CONST_LOGSTORE_NAME, logstoreName);
    }

    public void SetTelemetryType(String telemetryType) {
        SetParam(Consts.CONST_TETEMETRY_TYPE, telemetryType);
    }

    public void SetMode(String logstoreMode) {
        SetParam(Consts.CONST_LOGSTORE_MODE, logstoreMode);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy