public Map GetAllParams()

in src/main/java/com/aliyun/openservices/log/request/ListNextResourceRecordRequest.java [106:144]


    public Map<String, String> GetAllParams() {
        if (nextToken != null) {
            SetParam(Consts.CONST_NEXT_TOKEN, nextToken);
        }

        if (maxResults != null) {
            SetParam(Consts.CONST_MAX_RESULTS, maxResults.toString());
        }

        if (tag != null && !tag.isEmpty()) {
            SetParam(Consts.RESOURCE_RECORD_TAG, tag);
        }

        if (searchedValue != null && !searchedValue.isEmpty()) {
            SetParam(Consts.RESOURCE_SEARCHED_VALUE, searchedValue);
        }

        if (searchedJson != null && !searchedJson.isEmpty()) {
            SetParam(Consts.RESOURCE_SEARCHED_JSON, searchedJson);
        }

        if (jsonPath != null && !jsonPath.isEmpty()) {
            SetParam(Consts.RESOURCE_JSON_PATH, jsonPath);
        }

        if (jsonPathValue != null && !jsonPathValue.isEmpty()) {
            SetParam(Consts.RESOURCE_JSON_PATH_VALUE, jsonPathValue);
        }

        if (reverse) {
            SetParam(Consts.RESOURCE_REVERSE, "true");
        }

        if (recordIds != null && !recordIds.isEmpty()) {
            SetParam(Consts.RESOURCE_RECORD_IDS, Utils.join(",", recordIds));
        }

        return super.GetAllParams();
    }