public Map GetAllParams()

in src/main/java/com/aliyun/openservices/log/request/ListJobsRequest.java [99:123]


    public Map<String, String> GetAllParams() {
        final String name = getName();
        if (name != null && !name.isEmpty()) {
            SetParam(Consts.JOB_NAME, name);
        }
        if (displayName != null && !displayName.isEmpty()) {
            SetParam(Consts.DISPLAY_NAME, displayName);
        }
        if (type != null) {
            SetParam(Consts.JOB_TYPE, type.toString());
        }
        if (resourceProvider != null && !resourceProvider.isEmpty()) {
            SetParam(Consts.RESOURCE_PROVIDER, resourceProvider);
        }
        if (offset != null) {
            SetParam(Consts.CONST_OFFSET, offset.toString());
        }
        if (size != null) {
            SetParam(Consts.CONST_SIZE, size.toString());
        }
        if (logstore != null && !logstore.isEmpty()) {
            SetParam(Consts.LOGSTORE_KEY, logstore);
        }
        return super.GetAllParams();
    }