public CompletableFuture getNisNetworkRanking()

in nis-20211216/src/main/java/com/aliyun/sdk/service/nis20211216/DefaultAsyncClient.java [360:371]


    public CompletableFuture<GetNisNetworkRankingResponse> getNisNetworkRanking(GetNisNetworkRankingRequest request) {
        try {
            this.handler.validateRequestModel(request);
            TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("GetNisNetworkRanking").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(false).setReqBodyType(BodyType.JSON).formModel(request);
            ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(GetNisNetworkRankingResponse.create());
            return this.handler.execute(params);
        } catch (Exception e) {
            CompletableFuture<GetNisNetworkRankingResponse> future = new CompletableFuture<>();
            future.completeExceptionally(e);
            return future;
        }
    }