Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 946 Bytes

README.md

File metadata and controls

46 lines (29 loc) · 946 Bytes

Health

(health())

Overview

Available Operations

getHealthCheck

Health Check

Example Usage

package hello.world;

import com.airbyte.api.Airbyte;
import com.airbyte.api.models.operations.GetHealthCheckResponse;
import java.lang.Exception;

public class Application {

    public static void main(String[] args) throws Exception {

        Airbyte sdk = Airbyte.builder()
            .build();

        GetHealthCheckResponse res = sdk.health().getHealthCheck()
                .call();

        // handle response
    }
}

Response

GetHealthCheckResponse

Errors

Error Type Status Code Content Type
models/errors/SDKError 4XX, 5XX */*