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

com.byteplus.service.iam.IamConfig Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.byteplus.service.iam;

import com.byteplus.helper.Const;
import com.byteplus.model.ApiInfo;
import com.byteplus.model.Credentials;
import com.byteplus.model.ServiceInfo;
import org.apache.http.Header;
import org.apache.http.NameValuePair;
import org.apache.http.message.BasicHeader;
import org.apache.http.message.BasicNameValuePair;

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

public class IamConfig {

    public static ServiceInfo serviceInfo = new ServiceInfo(
            new HashMap() {
                {
                    put(Const.CONNECTION_TIMEOUT, 5000);
                    put(Const.SOCKET_TIMEOUT, 5000);
                    put(Const.Host, "open.byteplusapi.com");
                    put(Const.Header, new ArrayList
() { { add(new BasicHeader("Accept", "application/json")); } }); put(Const.Credentials, new Credentials(Const.REGION_AP_SINGAPORE_1, "iam")); } } ); public static Map apiInfoList = new HashMap() { { put(Const.CreateUser, new ApiInfo( new HashMap() { { put(Const.Method, "GET"); put(Const.Path, "/"); put(Const.Query, new ArrayList() { { add(new BasicNameValuePair("Action", Const.CreateUser)); add(new BasicNameValuePair("Version", "2018-01-01")); } }); } } )); put(Const.ListUsers, new ApiInfo( new HashMap() { { put(Const.Method, "GET"); put(Const.Path, "/"); put(Const.Query, new ArrayList() { { add(new BasicNameValuePair("Action", Const.ListUsers)); add(new BasicNameValuePair("Version", "2018-01-01")); } }); } } )); } }; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy