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

com.volcengine.service.stream.MonitorConfig Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
package com.volcengine.service.stream;

import com.volcengine.helper.Const;
import com.volcengine.model.ApiInfo;
import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;

public class MonitorConfig {
//    public static ServiceInfo serviceInfo = new ServiceInfo(
//            new HashMap() {
//                {
//                    put(Const.CONNECTION_TIMEOUT, 2000);
//                    put(Const.SOCKET_TIMEOUT, 2000);
//                    put(Const.Host, "mercury.volcengineapi.com");
//                    put(Const.Header, new ArrayList
() { // { // add(new BasicHeader("Accept", "application/json")); // } // }); // put(Const.Credentials, new Credentials(Const.REGION_CN_NORTH_1, "content")); // put(Const.Scheme, "https"); // } // } // ); public static Map apiInfoList = new HashMap() { { put(Const.SdkMonitor, new ApiInfo( new HashMap() { { put(Const.Method, "GET"); put(Const.Path, "/"); put(Const.Query, new ArrayList() { { add(new BasicNameValuePair("Action", Const.SdkMonitor)); add(new BasicNameValuePair("Version", Const.ContentVersion)); } }); } } )); } }; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy