diff --git a/.circleci/continue_config.yml b/.circleci/continue_config.yml
index 4218f3d6a6..6af77d8cfb 100644
--- a/.circleci/continue_config.yml
+++ b/.circleci/continue_config.yml
@@ -251,18 +251,6 @@ jobs:
- ./dist/*.tar.gz
- ./dist/*.whl
- publish-client-python-reference:
- working_directory: ~/openlineage/client/python
- docker:
- - image: cimg/python:3.8
- steps:
- - *checkout_project_root
- - add_ssh_keys:
- fingerprints:
- - "7d:bc:78:35:09:c9:25:04:63:f9:eb:4b:f1:f4:d1:91"
- - run: pip install -U -e .[docs]
- - run: cd docs && make html && python convert.py && ./release-api-reference.sh
-
unit-test-integration-common:
working_directory: ~/openlineage/integration/common
docker:
@@ -1032,34 +1020,6 @@ jobs:
paths:
- ~/.gradle
- # REST
- publish-javadoc:
- working_directory: ~/openlineage/client/java
- docker:
- - image: cimg/openjdk:17.0
- steps:
- - *checkout_project_root
- - when:
- condition:
- equal: [ inactive, << pipeline.parameters.nightly-run >> ]
- steps:
- - add_ssh_keys:
- fingerprints:
- - "7d:bc:78:35:09:c9:25:04:63:f9:eb:4b:f1:f4:d1:91"
- - run: ./gradlew --console=plain javadoc
- - run: ./release-javadoc.sh
-
- publish-spec:
- working_directory: ~/openlineage
- docker:
- - image: cimg/base:2024.08
- steps:
- - *checkout_project_root
- - add_ssh_keys:
- fingerprints:
- - "7d:bc:78:35:09:c9:25:04:63:f9:eb:4b:f1:f4:d1:91"
- - run: spec/release.sh
-
build-proxy-fluentd:
working_directory: ~/openlineage/proxy/fluentd
docker:
diff --git a/.circleci/workflows/openlineage-integration-publish.yml b/.circleci/workflows/openlineage-integration-publish.yml
deleted file mode 100644
index ce6299963e..0000000000
--- a/.circleci/workflows/openlineage-integration-publish.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-workflows:
- openlineage-integration-publish:
- jobs:
- - publish-spec:
- filters:
- branches:
- only: main
- context: release
- - workflow_complete:
- filters:
- tags:
- only: /^[0-9]+(\.[0-9]+){2}(-rc\.[0-9]+)?$/
- requires:
- - publish-spec
diff --git a/.circleci/workflows/openlineage-java.yml b/.circleci/workflows/openlineage-java.yml
index 4737b2d399..d8c82ac57b 100644
--- a/.circleci/workflows/openlineage-java.yml
+++ b/.circleci/workflows/openlineage-java.yml
@@ -41,11 +41,6 @@ workflows:
- compile-integration-sql-java-linux-arm
- compile-integration-sql-java-linux-x86
- compile-integration-sql-java-macos
- - publish-javadoc:
- filters:
- branches:
- only: main
- context: release
- release-client-java:
filters:
tags:
@@ -72,6 +67,5 @@ workflows:
tags:
only: /^[0-9]+(\.[0-9]+){2}(-rc\.[0-9]+)?$/
requires:
- - publish-javadoc
- release-client-java
- release-integration-sql-java
\ No newline at end of file
diff --git a/.circleci/workflows/openlineage-python.yml b/.circleci/workflows/openlineage-python.yml
index 1785e2f1ef..0d90bb9a14 100644
--- a/.circleci/workflows/openlineage-python.yml
+++ b/.circleci/workflows/openlineage-python.yml
@@ -160,16 +160,6 @@ workflows:
only: /^[0-9]+(\.[0-9]+){2}(-rc\.[0-9]+)?$/
requires:
- unit-tests-client-python
- - publish-client-python-reference:
- filters:
- branches:
- only: main
- tags:
- only: /^[0-9]+(\.[0-9]+){2}(-rc\.[0-9]+)?$/
- context: release
- requires:
- - build-client-python
- - unit-tests-client-python
- build-integration-dbt:
filters:
branches:
@@ -196,7 +186,6 @@ workflows:
- build-integration-common
- integration-test-integration-airflow-failure
- integration-test-integration-airflow
- - publish-client-python-reference
- build-integration-dbt
- build-integration-dagster
- release-python:
diff --git a/.github/workflows/website-snapshot.yml b/.github/workflows/website-snapshot.yml
new file mode 100644
index 0000000000..af445c015b
--- /dev/null
+++ b/.github/workflows/website-snapshot.yml
@@ -0,0 +1,98 @@
+name: Build & Deploy spec to Github Pages
+
+on:
+ push:
+ branches:
+ - main
+ - docs-deploy # testing phase only
+
+permissions:
+ id-token: write
+
+jobs:
+ site-deploy:
+ name: Build and Publish To openlineage-site repo
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ path: 'source'
+ - uses: actions/checkout@v4
+ with:
+ repository: 'pawel-big-lebowski/openlineage-site'
+ path: 'target'
+ token: ${{ secrets.ACTIONS_GITHUB_TOKEN }}
+ - uses: actions/setup-node@v4
+ with:
+ node-version: 22
+ cache: "npm"
+ cache-dependency-path: source/website/package-lock.json
+ - uses: actions/setup-java@v4
+ with:
+ distribution: 'corretto'
+ java-version: '17'
+ - uses: shogo82148/actions-setup-perl@v1
+ with:
+ perl-version: "5.38"
+ - uses: actions/setup-python@v5
+ with:
+ python-version: '3.8'
+ - name: Regenerate Javadoc to website
+ run: |
+ cd source/client/java
+ ./gradlew javadoc
+ mkdir -p ../../website/static/apidocs/javadoc
+ cp -r build/docs/javadoc ../../website/static/apidocs
+ - name: Regenerate python documentation
+ run: |
+ cd source/client/python
+ pip install -U -e .[docs]
+ cd docs && make html && python convert.py
+ cp -r converted/* ../../../website/docs/development/developing/python/api-reference
+ - name: Install dependencies
+ run: |
+ cd source/website
+ yarn install --frozen-lockfile
+ - name: Generate openapi
+ run: |
+ SPEC_DIR="$(pwd)/source/website/static/spec"
+ APIDOC_DIR="$(pwd)/source/website/static/apidocs"
+ pushd $SPEC_DIR
+ LATEST_VERSION=$(find . -maxdepth 1 | grep -v 'facets' | grep '[0-9]*-[0-9]-[0-9]' | sort -Vr | head -1)
+ echo latest version is $LATEST_VERSION
+ rm -f ./OpenLineage.json 2>/dev/null
+ perl -i -pe"s/version: [[:alnum:]\.-]*/version: ${LATEST_VERSION:2}/g" ./OpenLineage.yml
+ echo Versions updated
+ mkdir "${LATEST_VERSION}/facets"
+ for i in $(ls -d ./facets/* | sort); do cp $i/*.json ${LATEST_VERSION}/facets; done;
+
+ echo "LATEST_VERSION=${LATEST_VERSION}" >> "$GITHUB_ENV"
+
+ pushd $LATEST_VERSION
+ ln -sf ../OpenLineage.yml .
+ popd
+ - name: Generate redoc
+ run: |
+ npm install @redocly/cli
+ npx redocly build-docs -o source/website/static/apidocs/openapi/index.html source/website/static/spec/$LATEST_VERSION/OpenLineage.yml --title "OpenLineage API Docs"
+ - name: Clean temp files
+ run: |
+ pushd source/website/static/spec/$LATEST_VERSION
+ rm -rf facets
+ rm OpenLineage.yml
+ popd
+ - name: Push target repo
+ run: |
+ rm -r target/*
+ cp -r source/website/* target
+ cd target
+ git config user.name "GitHub Action Website Snapshot"
+ git config user.email "<>"
+ git add .
+ if ! git diff-index --quiet HEAD; then
+ git commit -m "Refreshing website content from main repo.
+
+ Source commit:
+ https://github.com/${GITHUB_REPOSITORY}/commit/${GITHUB_SHA}"
+ git push
+ fi
\ No newline at end of file
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 0a53db25fa..a55ef8153d 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -107,3 +107,8 @@ repos:
files: ^client/java/src/.*\.java$
exclude: ".*test.*"
require_serial: true
+ - id: spec-changes
+ name: Verify spec changes committed to website
+ language: script
+ files: ^spec/
+ entry: .pre_commit/run-spec-snapshot.sh
\ No newline at end of file
diff --git a/.pre_commit/run-spec-snapshot.sh b/.pre_commit/run-spec-snapshot.sh
new file mode 100755
index 0000000000..e280a2a12a
--- /dev/null
+++ b/.pre_commit/run-spec-snapshot.sh
@@ -0,0 +1,45 @@
+#!/bin/bash
+
+# Copy changed spec JSON files to website static folder
+# This is necessary to keep within repo history of all the spec versions
+# Initialize CHANGE_DONE to 0 (no changes detected by default)
+CHANGE_DONE=0
+
+# Use process substitution to avoid subshell problem
+while read -r LINE; do
+ # Ignore registry files
+ if [[ $LINE =~ "registry.json" ]]; then
+ continue
+ fi
+
+ # Extract target file name from $id field in spec files using jq
+ URL=$(cat "$LINE" | jq -r '.["$id"]')
+
+ # Extract target location in website repo
+ LOC="website/static/${URL#*//*/}"
+ LOC_DIR="${LOC%/*}"
+
+ # Create dir if necessary, and copy files
+ mkdir -p "$LOC_DIR"
+ cp "$LINE" "$LOC"
+ echo $LOC
+ # Check if the file is tracked by Git
+ if git ls-files --error-unmatch "$LOC" &>/dev/null; then
+ # The file is tracked by Git
+ # Check if the copied file differs from the committed version and is not staged
+ if ! git diff --quiet HEAD -- "$LOC"; then
+ # Check if the differences are not already staged
+ if git diff --quiet --cached -- "$LOC"; then
+ echo "Change detected in $LINE: $LOC differs from committed version but is not staged"
+ CHANGE_DONE=1 # Mark as change detected
+ fi
+ fi
+ else
+ # The file is untracked by Git
+ echo "Change detected in $LINE: $LOC is untracked"
+ CHANGE_DONE=1 # Mark as change detected
+ fi
+done < <(git diff --name-only HEAD -- 'spec/*.json' 'spec/OpenLineage.yml')
+
+# Exit with the value of CHANGE_DONE (0 if no changes, 1 if there were changes)
+exit $CHANGE_DONE
\ No newline at end of file
diff --git a/client/java/release-javadoc.sh b/client/java/release-javadoc.sh
deleted file mode 100755
index 9bd9f70aca..0000000000
--- a/client/java/release-javadoc.sh
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/env bash
-#
-# Copyright 2018-2024 contributors to the OpenLineage project
-# SPDX-License-Identifier: Apache-2.0
-#
-
-set -e
-
-function git-website() {
- command git --git-dir "$WEBSITE_DIR/.git" --work-tree "$WEBSITE_DIR" $@
-}
-
-git config --global user.email "openlineage-bot-key@openlineage.io"
-git config --global user.name "OpenLineage deploy bot"
-
-WEBSITE_DIR=${WEBSITE_DIR:-$HOME/build/website}
-REPO="git@github.com:OpenLineage/docs"
-
-if [[ -d $WEBSITE_DIR ]]; then
- # Check if we're in git repository and the repository points at website
- if [[ $(git-website rev-parse --is-inside-work-tree) == "true" && $(git-website config --get remote.origin.url) == "$REPO" ]]; then
- # Make sure we're at the head of the main branch
- git checkout main
- git reset --hard origin/master
- else
- echo "$WEBSITE_DIR is not empty - failing"
- exit 1
- fi
-else
- git clone --depth 1 $REPO $WEBSITE_DIR
-fi
-
-# check if there are any changes in javadoc in the latest commit
-if [[ $(diff -qr $WEBSITE_DIR/static/apidocs/javadoc './build/docs/javadoc' | wc -l) -eq 0 ]]; then
- echo "no changes in javadoc detected, skipping publishing javadoc"
- exit 0
-fi
-
-echo "Changes detected, updating javadoc..."
-rm -rf $WEBSITE_DIR/static/apidocs/javadoc
-mv ./build/docs/javadoc $WEBSITE_DIR/static/apidocs
-
-# commit new spec and push
-git-website add -A static/apidocs/javadoc
-git --git-dir "$WEBSITE_DIR/.git" --work-tree "$WEBSITE_DIR" commit -m "openlineage javadoc update"
-git-website push
diff --git a/client/python/docs/release-api-reference.sh b/client/python/docs/release-api-reference.sh
deleted file mode 100755
index 019484436a..0000000000
--- a/client/python/docs/release-api-reference.sh
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/usr/bin/env bash
-#
-# Copyright 2018-2024 contributors to the OpenLineage project
-# SPDX-License-Identifier: Apache-2.0
-#
-
-set -e
-
-function git-website() {
- command git --git-dir "$WEBSITE_DIR/.git" --work-tree "$WEBSITE_DIR" $@
-}
-
-git config --global user.email "openlineage-bot-key@openlineage.io"
-git config --global user.name "OpenLineage deploy bot"
-
-WEBSITE_DIR=${WEBSITE_DIR:-$HOME/build/website}
-REFERENCE_DIR=/docs/development/developing/python/api-reference
-REPO="git@github.com:OpenLineage/docs"
-DEFAULT_BRANCH=main
-BRANCH_NAME=${BRANCH_NAME:-$DEFAULT_BRANCH}
-
-if [[ -d $WEBSITE_DIR ]]; then
- # Check if we're in git repository and the repository points at website
- if [[ $(git-website rev-parse --is-inside-work-tree) == "true" && $(git-website config --get remote.origin.url) == "$REPO" ]]; then
- # Make sure we're at the head of the main branch
- git checkout main
- git reset --hard origin/master
- else
- echo "$WEBSITE_DIR is not empty - failing"
- exit 1
- fi
-else
- git clone -b $BRANCH_NAME --depth 1 $REPO $WEBSITE_DIR
-fi
-
-# check if there are any changes in javadoc in the latest commit
-if [[ $(diff -qr --exclude _category_.json $WEBSITE_DIR$REFERENCE_DIR './converted' | wc -l) -eq 0 ]]; then
- echo "no changes in python client reference detected, skipping publishing"
- exit 0
-fi
-
-echo "Changes detected, updating python client reference..."
-mv ./converted/* $WEBSITE_DIR$REFERENCE_DIR/
-
-# commit new spec and push
-git-website add -A $WEBSITE_DIR$REFERENCE_DIR
-git --git-dir "$WEBSITE_DIR/.git" --work-tree "$WEBSITE_DIR" commit -s -m "openlineage python client reference update"
-git-website push
diff --git a/spec/release.sh b/spec/release.sh
deleted file mode 100755
index 138f0a6ba6..0000000000
--- a/spec/release.sh
+++ /dev/null
@@ -1,80 +0,0 @@
-#!/usr/bin/env bash
-#
-# Copyright 2018-2024 contributors to the OpenLineage project
-# SPDX-License-Identifier: Apache-2.0
-
-set -e
-
-function git-website() {
- command git --git-dir "$WEBSITE_DIR/.git" --work-tree "$WEBSITE_DIR" $@
-}
-
-git config --global user.email "openlineage-bot-key@openlineage.io"
-git config --global user.name "OpenLineage deploy bot"
-
-WEBSITE_DIR=${WEBSITE_DIR:-$HOME/build/website}
-REPO="git@github.com:OpenLineage/docs"
-
-if [[ -d $WEBSITE_DIR ]]; then
- # Check if we're in git repository and the repository points at website
- if [[ $(git-website rev-parse --is-inside-work-tree) == "true" && $(git-website config --get remote.origin.url) == "$REPO" ]]; then
- # Make sure we're at the head of the main branch
- git checkout main
- git reset --hard origin/master
- else
- echo "$WEBSITE_DIR is not empty - failing"
- exit 1
- fi
-else
- git clone --depth 1 $REPO $WEBSITE_DIR
-fi
-
-WEBSITE_COMMIT_FILE="$WEBSITE_DIR/.last_spec_commit_id"
-
-# Check on which commit we deployed spec last
-if [[ -f $WEBSITE_COMMIT_FILE ]]; then
- PREV_SPEC_COMMIT=$(cat "$WEBSITE_COMMIT_FILE")
-else
- # Before lifecycle state facet
- PREV_SPEC_COMMIT="d66c41872f3cc7f7cd5c99664d401e070e60ff48"
-fi
-
-# check if there are any changes in spec in the latest commit
-if git diff --name-only --exit-code $PREV_SPEC_COMMIT HEAD 'spec/*.json' 'spec/OpenLineage.yml' >> /dev/null; then
- echo "no changes in spec detected, skipping publishing spec"
- exit 0
-fi
-
-echo "Copying spec files from commit $PREV_SPEC_COMMIT"
-
-# Mark last commit on which we finished copying spec
-echo "$CIRCLE_SHA1" > "$WEBSITE_COMMIT_FILE"
-
-# Copy changed spec YML file to target location
-cp spec/OpenLineage.yml ${WEBSITE_DIR}/static/spec/OpenLineage.yml
-
-# Copy changed spec JSON files to target location
-git diff --name-only $PREV_SPEC_COMMIT HEAD 'spec/*.json' | while read LINE; do
-
- #ignore registry files
- if [[ $LINE =~ "registry.json" ]]; then
- continue
- fi
-
- # extract target file name from $id field in spec files
- URL=$(cat $LINE | jq -r '.["$id"]')
-
- # extract target location in website repo
- LOC="${WEBSITE_DIR}/static/${URL#*//*/}"
- LOC_DIR="${LOC%/*}"
-
- # create dir if necessary, and copy files
- mkdir -p $LOC_DIR
- cp $LINE $LOC
-done
-
-# commit new spec and push
-git-website add -A .last_spec_commit_id
-git-website add -A static/spec/
-git --git-dir "$WEBSITE_DIR/.git" --work-tree "$WEBSITE_DIR" commit -m "openlineage specification update"
-git-website push
diff --git a/website/CNAME b/website/CNAME
index 622635b5d7..01b43fe7e0 100644
--- a/website/CNAME
+++ b/website/CNAME
@@ -1 +1 @@
-openlineage.io
+openlineage.github.io
\ No newline at end of file
diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js
index 63e15d502c..151d736ca5 100644
--- a/website/docusaurus.config.js
+++ b/website/docusaurus.config.js
@@ -26,8 +26,8 @@ const linksSocial = [
const config = {
title: 'OpenLineage',
tagline: 'OpenLineage',
- url: 'https://openlineage.github.io',
- baseUrl: '/',
+ url: 'https://pawel-big-lebowski.github.io', // TODO: replace with openlineage.io in the next step
+ baseUrl: '/openlineage-site', // TODO: replace with / in the next step
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'throw',
favicon: 'img/favicon.ico',
diff --git a/website/plugins/home-blog-plugin.js b/website/plugins/home-blog-plugin.js
index 851322dd5d..b13e51c8bc 100644
--- a/website/plugins/home-blog-plugin.js
+++ b/website/plugins/home-blog-plugin.js
@@ -38,6 +38,29 @@ async function blogPluginExtended(...pluginArgs) {
},
});
+ // serve main page from / and /openlineage-site
+ data.actions.addRoute({
+ path: "/openlineage-site",
+ exact: true,
+
+ // The component to use for the "Home" page route
+ component: "@site/src/pages/home.tsx",
+
+ // These are the props that will be passed to our "Home" page component
+ modules: {
+ recentPosts: recentPosts.map((post) => ({
+ content: {
+ __import: true,
+ // The markdown file for the blog post will be loaded by webpack
+ path: post.metadata.source,
+ query: {
+ truncated: true,
+ },
+ },
+ })),
+ },
+ });
+
// Call the default overridden `contentLoaded` implementation
return blogPluginInstance.contentLoaded(data);
},
diff --git a/website/src/pages/home.tsx b/website/src/pages/home.tsx
index e96c9f3bfa..aa8a537fd2 100644
--- a/website/src/pages/home.tsx
+++ b/website/src/pages/home.tsx
@@ -28,7 +28,7 @@ export default function Main(): JSX.Element {
const Wall = ({ twoColumnWall = false, capitalizeTitleOnHome = false }) => {
const wall = useRef(null)
- const titleImage = '/img/background.svg';
+ const titleImage = 'img/background.svg';
const [state, changeState] = useState({
loaded: false,
supportsBlend: false,
@@ -151,7 +151,7 @@ const About = () => {
OpenLineage is an open platform for collection and analysis of data lineage. It tracks metadata about datasets, jobs, and runs, giving users the information required to identify the root cause of complex issues and understand the impact of changes. OpenLineage contains an open standard for lineage data collection, a metadata repository reference implementation (Marquez), libraries for common languages, and integrations with data pipeline tools.
{
Simple
{
Complex
-
-
-
-All Classes and Interfaces (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
All Classes and Interfaces Interfaces Classes Enum Classes Exceptions
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
A builder class that provides implementations to build composite meter registries.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Utility class to resolve hosts based on the dataset host resolver configured.
-
-
-
-
Interface used to resolve host name into more meaningful name that just host address.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Appends Openlineage events to a file specified.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Deprecated.
-
-
-
-
-
-
-
An exception thrown to indicate a client error relating to a http response.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Contains methods to merge different config classes.
-
-
-
-
MeterRegistryFactory is an interface that defines methods to build different types of meter
- registries from OpenLineage config.
-
-
-
-
MicrometerProvider is a class that manages global OpenLineage meter registry implementation that
- allows integrations to both add metrics backend from common OpenLineage config, or grab an
- instance of an initialized MeterRegistry.
-
-
-
-
-
-
Non-closing circuit breaker which always runs callable.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Interface for BaseEvent
-
-
-
-
Interface for BaseEvent
-
-
-
-
Interface for BaseFacet
-
-
-
-
Interface for BaseFacet
-
-
-
-
-
-
-
-
model class for ColumnLineageDatasetFacet
-
-
-
-
model class for ColumnLineageDatasetFacetFields
-
-
-
-
model class for ColumnLineageDatasetFacetFieldsAdditional
-
-
-
-
builder class for ColumnLineageDatasetFacetFieldsAdditional
-
-
-
-
model class for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-
-
-
builder class for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-
-
-
model class for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-
-
-
builder class for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-
-
-
builder class for ColumnLineageDatasetFacetFields
-
-
-
-
model class for DataQualityAssertionsDatasetFacet
-
-
-
-
model class for DataQualityAssertionsDatasetFacetAssertions
-
-
-
-
builder class for DataQualityAssertionsDatasetFacetAssertions
-
-
-
-
model class for DataQualityMetricsInputDatasetFacet
-
-
-
-
model class for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-
-
-
model class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-
-
-
builder class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-
-
-
model class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-
-
-
builder class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-
-
-
builder class for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-
-
-
-
-
-
-
model class for DatasetEvent
-
-
-
-
model class for DatasetEvent
-
-
-
-
Interface for DatasetFacet
-
-
-
-
model class for DatasetFacet
-
-
-
-
model class for DatasetFacets
-
-
-
-
model class for DatasetFacets
-
-
-
-
builder class for DatasetFacets
-
-
-
-
model class for DatasetVersionDatasetFacet
-
-
-
-
model class for DatasourceDatasetFacet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
model class for DocumentationDatasetFacet
-
-
-
-
model class for DocumentationJobFacet
-
-
-
-
model class for ErrorMessageRunFacet
-
-
-
-
model class for ExternalQueryRunFacet
-
-
-
-
model class for ExtractionErrorRunFacet
-
-
-
-
model class for ExtractionErrorRunFacetErrors
-
-
-
-
builder class for ExtractionErrorRunFacetErrors
-
-
-
-
model class for GcpCommonJobFacet
-
-
-
-
model class for GcpCommonJobFacetOrigin
-
-
-
-
builder class for GcpCommonJobFacetOrigin
-
-
-
-
model class for InputDataset
-
-
-
-
model class for InputDataset
-
-
-
-
builder class for InputDataset
-
-
-
-
Interface for InputDatasetFacet
-
-
-
-
model class for InputDatasetFacet
-
-
-
-
model class for InputDatasetInputFacets
-
-
-
-
model class for InputDatasetInputFacets
-
-
-
-
builder class for InputDatasetInputFacets
-
-
-
-
-
-
-
-
-
-
model class for JobEvent
-
-
-
-
model class for JobEvent
-
-
-
-
Interface for JobFacet
-
-
-
-
model class for JobFacet
-
-
-
-
model class for JobFacets
-
-
-
-
model class for JobFacets
-
-
-
-
builder class for JobFacets
-
-
-
-
model class for JobTypeJobFacet
-
-
-
-
model class for LifecycleStateChangeDatasetFacet
-
-
-
-
-
-
model class for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-
-
-
builder class for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-
-
-
model class for NominalTimeRunFacet
-
-
-
-
model class for OutputDataset
-
-
-
-
model class for OutputDataset
-
-
-
-
builder class for OutputDataset
-
-
-
-
Interface for OutputDatasetFacet
-
-
-
-
model class for OutputDatasetFacet
-
-
-
-
model class for OutputDatasetOutputFacets
-
-
-
-
model class for OutputDatasetOutputFacets
-
-
-
-
builder class for OutputDatasetOutputFacets
-
-
-
-
model class for OutputStatisticsOutputDatasetFacet
-
-
-
-
model class for OwnershipDatasetFacet
-
-
-
-
model class for OwnershipDatasetFacetOwners
-
-
-
-
builder class for OwnershipDatasetFacetOwners
-
-
-
-
model class for OwnershipJobFacet
-
-
-
-
model class for OwnershipJobFacetOwners
-
-
-
-
builder class for OwnershipJobFacetOwners
-
-
-
-
model class for ParentRunFacet
-
-
-
-
model class for ParentRunFacetJob
-
-
-
-
builder class for ParentRunFacetJob
-
-
-
-
model class for ParentRunFacetRun
-
-
-
-
builder class for ParentRunFacetRun
-
-
-
-
model class for ProcessingEngineRunFacet
-
-
-
-
-
-
-
-
-
-
model class for RunEvent
-
-
-
-
model class for RunEvent
-
-
-
-
-
-
-
-
Interface for RunFacet
-
-
-
-
model class for RunFacet
-
-
-
-
model class for RunFacets
-
-
-
-
model class for RunFacets
-
-
-
-
builder class for RunFacets
-
-
-
-
model class for SchemaDatasetFacet
-
-
-
-
model class for SchemaDatasetFacetFields
-
-
-
-
builder class for SchemaDatasetFacetFields
-
-
-
-
model class for SourceCodeJobFacet
-
-
-
-
model class for SourceCodeLocationJobFacet
-
-
-
-
model class for SQLJobFacet
-
-
-
-
model class for StaticDataset
-
-
-
-
model class for StaticDataset
-
-
-
-
builder class for StaticDataset
-
-
-
-
model class for StorageDatasetFacet
-
-
-
-
model class for SymlinksDatasetFacet
-
-
-
-
model class for SymlinksDatasetFacetIdentifiers
-
-
-
-
builder class for SymlinksDatasetFacetIdentifiers
-
-
-
-
-
-
-
-
An exception thrown to indicate a client error.
-
-
-
-
Utility class for
OpenLineageClient
that provides common functionalities for object
- mapping, JSON and YAML parsing, and URI manipulation.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Class used to access static Runtime properties.
-
-
-
-
-
-
-
-
-
-
This class implements the MetricsBuilder interface with SimpleMeterRegistry as its type.
-
-
-
-
-
-
Static circuit breaker used mainly for the integration tests.
-
-
-
-
-
-
-
-
StatsDMetricsBuilder is a class that implements the
MeterRegistryFactory
interface
- specifically for
StatsdMeterRegistry
.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Class used to generate UUID values.
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/allpackages-index.html b/website/static/apidocs/javadoc/allpackages-index.html
deleted file mode 100644
index ee7c0b3a30..0000000000
--- a/website/static/apidocs/javadoc/allpackages-index.html
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
-All Packages (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-Package Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/constant-values.html b/website/static/apidocs/javadoc/constant-values.html
deleted file mode 100644
index 8ea66199de..0000000000
--- a/website/static/apidocs/javadoc/constant-values.html
+++ /dev/null
@@ -1,104 +0,0 @@
-
-
-
-
-Constant Field Values (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-io.openlineage.*
-
-
-
-
-
-
-
-
public static final int
-
-
1000
-
-
-
-
-
-
-
-
-
public static final int
-
-
10
-
public static final int
-
-
20
-
-
-
-
-
-
-
-
-
public static final int
-
-
20
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/deprecated-list.html b/website/static/apidocs/javadoc/deprecated-list.html
deleted file mode 100644
index 1e34936668..0000000000
--- a/website/static/apidocs/javadoc/deprecated-list.html
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
-Deprecated List (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
diff --git a/website/static/apidocs/javadoc/element-list b/website/static/apidocs/javadoc/element-list
deleted file mode 100644
index 94e0030369..0000000000
--- a/website/static/apidocs/javadoc/element-list
+++ /dev/null
@@ -1,10 +0,0 @@
-io.openlineage.client
-io.openlineage.client.circuitBreaker
-io.openlineage.client.dataset
-io.openlineage.client.dataset.namespace.resolver
-io.openlineage.client.metrics
-io.openlineage.client.transports
-io.openlineage.client.utils
-io.openlineage.client.utils.filesystem
-io.openlineage.client.utils.jdbc
-io.openlineage.server
diff --git a/website/static/apidocs/javadoc/help-doc.html b/website/static/apidocs/javadoc/help-doc.html
deleted file mode 100644
index 76d00a835e..0000000000
--- a/website/static/apidocs/javadoc/help-doc.html
+++ /dev/null
@@ -1,191 +0,0 @@
-
-
-
-
-API Help (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-JavaDoc Help
-
-
-
-
Navigation
-Starting from the
Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The
Index and Search box allow you to navigate to specific declarations and summary pages, including:
All Packages ,
All Classes and Interfaces
-
-Search
-You can search for definitions of modules, packages, types, fields, methods, system properties and other terms defined in the API, using some or all of the name, optionally using "camelCase" abbreviations. For example:
-
-j.l.obj
will match "java.lang.Object"
-InpStr
will match "java.io.InputStream"
-HM.cK
will match "java.util.HashMap.containsKey(Object)"
-
-Refer to the Javadoc Search Specification for a full description of search features.
-
-
-
-
-
Kinds of Pages
-The following sections describe the different kinds of pages in this collection.
-
-Overview
-The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.
-
-
-Package
-Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:
-
-Interfaces
-Classes
-Enum Classes
-Exceptions
-Errors
-Annotation Interfaces
-
-
-
-Class or Interface
-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.
-
-Class Inheritance Diagram
-Direct Subclasses
-All Known Subinterfaces
-All Known Implementing Classes
-Class or Interface Declaration
-Class or Interface Description
-
-
-
-Nested Class Summary
-Enum Constant Summary
-Field Summary
-Property Summary
-Constructor Summary
-Method Summary
-Required Element Summary
-Optional Element Summary
-
-
-
-Enum Constant Details
-Field Details
-Property Details
-Constructor Details
-Method Details
-Element Details
-
-Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.
-The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
-
-
-Other Files
-Packages and modules may contain pages with additional information related to the declarations nearby.
-
-
-Tree (Class Hierarchy)
-There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object
. Interfaces do not inherit from java.lang.Object
.
-
-When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
-When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
-
-
-
-Deprecated API
-The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to shortcomings, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
-
-
-
-
-All Packages
-The All Packages page contains an alphabetic index of all packages contained in the documentation.
-
-
-All Classes and Interfaces
-The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/index-all.html b/website/static/apidocs/javadoc/index-all.html
deleted file mode 100644
index d69cc5e089..0000000000
--- a/website/static/apidocs/javadoc/index-all.html
+++ /dev/null
@@ -1,4299 +0,0 @@
-
-
-
-
-Index (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-A B C D E F G H I J K L M N O P Q R S T U V W All Classes and Interfaces | All Packages | Constant Field Values | Serialized Form
-A
-
-ABORT - Enum constant in enum class io.openlineage.client.OpenLineage.RunEvent.EventType
-
-ABORT - Enum constant in enum class io.openlineage.server.OpenLineage.RunEvent.EventType
-
-addMeterRegistry(MeterRegistry) - Static method in class io.openlineage.client.metrics.MicrometerProvider
-
-Adds a MeterRegistry to the common OpenLineage meter registry.
-
-addMeterRegistryFromConfig(Map<String, Object>) - Static method in class io.openlineage.client.metrics.MicrometerProvider
-
-Adds a MeterRegistry to the common OpenLineage meter registry based on the provided
- configuration.
-
-ALTER - Enum constant in enum class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange
-
-apiKey(String) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-ApiKeyTokenProvider - Class in io.openlineage.client.transports
-
-ApiKeyTokenProvider() - Constructor for class io.openlineage.client.transports.ApiKeyTokenProvider
-
-assertion(String) - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder
-
-assertions(List<OpenLineage.DataQualityAssertionsDatasetFacetAssertions>) - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetBuilder
-
-
-B
-
-branch(String) - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacetBuilder
-
-build() - Method in class io.openlineage.client.circuitBreaker.CircuitBreakerFactory
-
-build() - Method in interface io.openlineage.client.OpenLineage.Builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetBuilder
-
-build an instance of ColumnLineageDatasetFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder
-
-build an instance of ColumnLineageDatasetFacetFieldsAdditional from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder
-
-build an instance of ColumnLineageDatasetFacetFieldsAdditionalInputFields from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder
-
-build an instance of ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsBuilder
-
-build an instance of ColumnLineageDatasetFacetFields from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder
-
-build an instance of DataQualityAssertionsDatasetFacetAssertions from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetBuilder
-
-build an instance of DataQualityAssertionsDatasetFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetBuilder
-
-build an instance of DataQualityMetricsInputDatasetFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder
-
-build an instance of DataQualityMetricsInputDatasetFacetColumnMetricsAdditional from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder
-
-build an instance of DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder
-
-build an instance of DataQualityMetricsInputDatasetFacetColumnMetrics from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.DatasetEventBuilder
-
-build an instance of DatasetEvent from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.DatasetFacetsBuilder
-
-build an instance of DatasetFacets from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.DatasetVersionDatasetFacetBuilder
-
-build an instance of DatasetVersionDatasetFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.DatasourceDatasetFacetBuilder
-
-build an instance of DatasourceDatasetFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.DocumentationDatasetFacetBuilder
-
-build an instance of DocumentationDatasetFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.DocumentationJobFacetBuilder
-
-build an instance of DocumentationJobFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ErrorMessageRunFacetBuilder
-
-build an instance of ErrorMessageRunFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ExternalQueryRunFacetBuilder
-
-build an instance of ExternalQueryRunFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetBuilder
-
-build an instance of ExtractionErrorRunFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetErrorsBuilder
-
-build an instance of ExtractionErrorRunFacetErrors from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacetBuilder
-
-build an instance of GcpCommonJobFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacetOriginBuilder
-
-build an instance of GcpCommonJobFacetOrigin from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.InputDatasetBuilder
-
-build an instance of InputDataset from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.InputDatasetInputFacetsBuilder
-
-build an instance of InputDatasetInputFacets from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.JobBuilder
-
-build an instance of Job from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.JobEventBuilder
-
-build an instance of JobEvent from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.JobFacetsBuilder
-
-build an instance of JobFacets from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.JobTypeJobFacetBuilder
-
-build an instance of JobTypeJobFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetBuilder
-
-build an instance of LifecycleStateChangeDatasetFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder
-
-build an instance of LifecycleStateChangeDatasetFacetPreviousIdentifier from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.NominalTimeRunFacetBuilder
-
-build an instance of NominalTimeRunFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.OutputDatasetBuilder
-
-build an instance of OutputDataset from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.OutputDatasetOutputFacetsBuilder
-
-build an instance of OutputDatasetOutputFacets from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacetBuilder
-
-build an instance of OutputStatisticsOutputDatasetFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacetBuilder
-
-build an instance of OwnershipDatasetFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacetOwnersBuilder
-
-build an instance of OwnershipDatasetFacetOwners from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacetBuilder
-
-build an instance of OwnershipJobFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacetOwnersBuilder
-
-build an instance of OwnershipJobFacetOwners from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ParentRunFacetBuilder
-
-build an instance of ParentRunFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ParentRunFacetJobBuilder
-
-build an instance of ParentRunFacetJob from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ParentRunFacetRunBuilder
-
-build an instance of ParentRunFacetRun from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.ProcessingEngineRunFacetBuilder
-
-build an instance of ProcessingEngineRunFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.RunBuilder
-
-build an instance of Run from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.RunEventBuilder
-
-build an instance of RunEvent from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.RunFacetsBuilder
-
-build an instance of RunFacets from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacetBuilder
-
-build an instance of SchemaDatasetFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacetFieldsBuilder
-
-build an instance of SchemaDatasetFacetFields from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.SourceCodeJobFacetBuilder
-
-build an instance of SourceCodeJobFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacetBuilder
-
-build an instance of SourceCodeLocationJobFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.SQLJobFacetBuilder
-
-build an instance of SQLJobFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.StaticDatasetBuilder
-
-build an instance of StaticDataset from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.StorageDatasetFacetBuilder
-
-build an instance of StorageDatasetFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacetBuilder
-
-build an instance of SymlinksDatasetFacet from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacetIdentifiersBuilder
-
-build an instance of SymlinksDatasetFacetIdentifiers from the fields set in the builder
-
-build() - Method in class io.openlineage.client.OpenLineageClient.Builder
-
-build() - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-build() - Method in class io.openlineage.client.transports.TransportFactory
-
-build() - Method in interface io.openlineage.server.OpenLineage.Builder
-
-build(CircuitBreakerConfig) - Method in interface io.openlineage.client.circuitBreaker.CircuitBreakerBuilder
-
-build(CircuitBreakerConfig) - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerBuilder
-
-build(CircuitBreakerConfig) - Method in class io.openlineage.client.circuitBreaker.NoOpCircuitBreakerBuilder
-
-build(CircuitBreakerConfig) - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerBuilder
-
-build(CircuitBreakerConfig) - Method in class io.openlineage.client.circuitBreaker.StaticCircuitBreakerBuilder
-
-build(TransportConfig) - Method in class io.openlineage.client.transports.ConsoleTransportBuilder
-
-build(TransportConfig) - Method in class io.openlineage.client.transports.FileTransportBuilder
-
-build(TransportConfig) - Method in class io.openlineage.client.transports.HttpTransportBuilder
-
-build(TransportConfig) - Method in class io.openlineage.client.transports.KafkaTransportBuilder
-
-build(TransportConfig) - Method in class io.openlineage.client.transports.KinesisTransportBuilder
-
-build(TransportConfig) - Method in interface io.openlineage.client.transports.TransportBuilder
-
-build(String, DatasetNamespaceResolverConfig) - Method in interface io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverBuilder
-
-build(String, DatasetNamespaceResolverConfig) - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverBuilder
-
-build(String, DatasetNamespaceResolverConfig) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverBuilder
-
-build(String, DatasetNamespaceResolverConfig) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverBuilder
-
-builder() - Static method in class io.openlineage.client.OpenLineageClient
-
-builder() - Static method in class io.openlineage.client.transports.HttpTransport
-
-bytes(Long) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetBuilder
-
-
-C
-
-canEqual(Object) - Method in class io.openlineage.client.circuitBreaker.CircuitBreakerState
-
-canEqual(Object) - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig
-
-canEqual(Object) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-canEqual(Object) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig
-
-CIRCUIT_CHECK_INTERVAL_IN_MILLIS - Static variable in interface io.openlineage.client.circuitBreaker.CircuitBreaker
-
-circuitBreaker - Variable in class io.openlineage.client.OpenLineageConfig
-
-circuitBreaker(CircuitBreaker) - Method in class io.openlineage.client.OpenLineageClient.Builder
-
-CircuitBreaker - Interface in io.openlineage.client.circuitBreaker
-
-CircuitBreakerBuilder - Interface in io.openlineage.client.circuitBreaker
-
-CircuitBreakerConfig - Interface in io.openlineage.client.circuitBreaker
-
-CircuitBreakerConfigTypeIdResolver - Class in io.openlineage.client.circuitBreaker
-
-CircuitBreakerConfigTypeIdResolver() - Constructor for class io.openlineage.client.circuitBreaker.CircuitBreakerConfigTypeIdResolver
-
-CircuitBreakerFactory - Class in io.openlineage.client.circuitBreaker
-
-CircuitBreakerFactory(CircuitBreakerConfig) - Constructor for class io.openlineage.client.circuitBreaker.CircuitBreakerFactory
-
-CircuitBreakerResolver - Class in io.openlineage.client.circuitBreaker
-
-CircuitBreakerResolver() - Constructor for class io.openlineage.client.circuitBreaker.CircuitBreakerResolver
-
-CircuitBreakerState - Class in io.openlineage.client.circuitBreaker
-
-CircuitBreakerState(boolean) - Constructor for class io.openlineage.client.circuitBreaker.CircuitBreakerState
-
-CircuitBreakerState(boolean, String) - Constructor for class io.openlineage.client.circuitBreaker.CircuitBreakerState
-
-CircuitBreakerState(boolean, Optional<String>) - Constructor for class io.openlineage.client.circuitBreaker.CircuitBreakerState
-
-clear() - Static method in class io.openlineage.client.metrics.MicrometerProvider
-
-Clears the global OpenLineage meter registry and creates a new instance of a
- CompositeMeterRegistry.
-
-Clients - Class in io.openlineage.client
-
-
-
-close() - Method in class io.openlineage.client.transports.HttpTransport
-
-column(String) - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder
-
-columnLineage(OpenLineage.ColumnLineageDatasetFacet) - Method in class io.openlineage.client.OpenLineage.DatasetFacetsBuilder
-
-ColumnLineageDatasetFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetBuilder
-
-ColumnLineageDatasetFacetFieldsAdditionalBuilder() - Constructor for class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder
-
-ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder() - Constructor for class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder
-
-ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder() - Constructor for class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder
-
-ColumnLineageDatasetFacetFieldsBuilder() - Constructor for class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsBuilder
-
-columnMetrics(OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetBuilder
-
-COMPLETE - Enum constant in enum class io.openlineage.client.OpenLineage.RunEvent.EventType
-
-COMPLETE - Enum constant in enum class io.openlineage.server.OpenLineage.RunEvent.EventType
-
-CompositeMeterRegistryFactory - Class in io.openlineage.client.metrics
-
-A builder class that provides implementations to build composite meter registries.
-
-CompositeMeterRegistryFactory() - Constructor for class io.openlineage.client.metrics.CompositeMeterRegistryFactory
-
-ConfigPathProvider - Interface in io.openlineage.client
-
-configureObjectMapper(String...) - Static method in class io.openlineage.client.OpenLineageClientUtils
-
-Configures the object mapper to exclude specified facets from being serialized.
-
-ConsoleConfig - Class in io.openlineage.client.transports
-
-ConsoleConfig() - Constructor for class io.openlineage.client.transports.ConsoleConfig
-
-ConsoleTransport - Class in io.openlineage.client.transports
-
-ConsoleTransport() - Constructor for class io.openlineage.client.transports.ConsoleTransport
-
-ConsoleTransportBuilder - Class in io.openlineage.client.transports
-
-ConsoleTransportBuilder() - Constructor for class io.openlineage.client.transports.ConsoleTransportBuilder
-
-convertValue(Object, Class<T>) - Static method in class io.openlineage.client.OpenLineageClientUtils
-
-Converts the value of an object from one type to another.
-
-count(Double) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder
-
-CREATE - Enum constant in enum class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange
-
-currentState() - Method in interface io.openlineage.client.circuitBreaker.CircuitBreaker
-
-currentState() - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreaker
-
-currentState() - Method in class io.openlineage.client.circuitBreaker.NoOpCircuitBreaker
-
-currentState() - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreaker
-
-currentState() - Method in class io.openlineage.client.circuitBreaker.StaticCircuitBreaker
-
-
-D
-
-dataQualityAssertions(OpenLineage.DataQualityAssertionsDatasetFacet) - Method in class io.openlineage.client.OpenLineage.InputDatasetInputFacetsBuilder
-
-DataQualityAssertionsDatasetFacetAssertionsBuilder() - Constructor for class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder
-
-DataQualityAssertionsDatasetFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetBuilder
-
-dataQualityMetrics(OpenLineage.DataQualityMetricsInputDatasetFacet) - Method in class io.openlineage.client.OpenLineage.InputDatasetInputFacetsBuilder
-
-DataQualityMetricsInputDatasetFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetBuilder
-
-DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder() - Constructor for class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder
-
-DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder() - Constructor for class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder
-
-DataQualityMetricsInputDatasetFacetColumnMetricsBuilder() - Constructor for class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder
-
-dataset(OpenLineage.StaticDataset) - Method in class io.openlineage.client.OpenLineage.DatasetEventBuilder
-
-datasetConfig - Variable in class io.openlineage.client.OpenLineageConfig
-
-DatasetConfig - Class in io.openlineage.client.dataset
-
-DatasetConfig() - Constructor for class io.openlineage.client.dataset.DatasetConfig
-
-DatasetConfig(Map<String, DatasetNamespaceResolverConfig>) - Constructor for class io.openlineage.client.dataset.DatasetConfig
-
-DatasetEvent(ZonedDateTime, URI, URI, OpenLineage.StaticDataset) - Constructor for class io.openlineage.server.OpenLineage.DatasetEvent
-
-DatasetEventBuilder() - Constructor for class io.openlineage.client.OpenLineage.DatasetEventBuilder
-
-DatasetFacet(URI, URI) - Constructor for class io.openlineage.server.OpenLineage.DatasetFacet
-
-DatasetFacets() - Constructor for class io.openlineage.server.OpenLineage.DatasetFacets
-
-DatasetFacetsBuilder() - Constructor for class io.openlineage.client.OpenLineage.DatasetFacetsBuilder
-
-DatasetIdentifier - Class in io.openlineage.client.utils
-
-DatasetIdentifier(String, String) - Constructor for class io.openlineage.client.utils.DatasetIdentifier
-
-DatasetIdentifier(String, String, List<DatasetIdentifier.Symlink>) - Constructor for class io.openlineage.client.utils.DatasetIdentifier
-
-DatasetIdentifier.Symlink - Class in io.openlineage.client.utils
-
-DatasetIdentifier.SymlinkType - Enum Class in io.openlineage.client.utils
-
-DatasetNamespaceCombinedResolver - Class in io.openlineage.client.dataset.namespace.resolver
-
-Utility class to resolve hosts based on the dataset host resolver configured.
-
-DatasetNamespaceCombinedResolver(DatasetConfig) - Constructor for class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceCombinedResolver
-
-DatasetNamespaceCombinedResolver(OpenLineageConfig) - Constructor for class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceCombinedResolver
-
-DatasetNamespaceResolver - Interface in io.openlineage.client.dataset.namespace.resolver
-
-Interface used to resolve host name into more meaningful name that just host address.
-
-DatasetNamespaceResolverBuilder - Interface in io.openlineage.client.dataset.namespace.resolver
-
-DatasetNamespaceResolverConfig - Interface in io.openlineage.client.dataset.namespace.resolver
-
-DatasetNamespaceResolverConfigTypeIdResolver - Class in io.openlineage.client.dataset.namespace.resolver
-
-DatasetNamespaceResolverConfigTypeIdResolver() - Constructor for class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverConfigTypeIdResolver
-
-DatasetNamespaceResolverLoader - Class in io.openlineage.client.dataset.namespace.resolver
-
-DatasetNamespaceResolverLoader() - Constructor for class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverLoader
-
-datasetVersion(String) - Method in class io.openlineage.client.OpenLineage.DatasetVersionDatasetFacetBuilder
-
-DatasetVersionDatasetFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.DatasetVersionDatasetFacetBuilder
-
-dataSource(OpenLineage.DatasourceDatasetFacet) - Method in class io.openlineage.client.OpenLineage.DatasetFacetsBuilder
-
-DatasourceDatasetFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.DatasourceDatasetFacetBuilder
-
-DEFAULT_GC_CPU_THRESHOLD - Static variable in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-DEFAULT_MEMORY_THRESHOLD - Static variable in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-DEFAULT_MEMORY_THRESHOLD - Static variable in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-DefaultConfigPathProvider - Class in io.openlineage.client
-
-DefaultConfigPathProvider() - Constructor for class io.openlineage.client.DefaultConfigPathProvider
-
-DefaultDatasetFacet(URI, Boolean) - Constructor for class io.openlineage.client.OpenLineage.DefaultDatasetFacet
-
-DefaultInputDatasetFacet(URI) - Constructor for class io.openlineage.client.OpenLineage.DefaultInputDatasetFacet
-
-DefaultJobFacet(URI, Boolean) - Constructor for class io.openlineage.client.OpenLineage.DefaultJobFacet
-
-DefaultOutputDatasetFacet(URI) - Constructor for class io.openlineage.client.OpenLineage.DefaultOutputDatasetFacet
-
-DefaultRunFacet(URI) - Constructor for class io.openlineage.client.OpenLineage.DefaultRunFacet
-
-DerbyJdbcExtractor - Class in io.openlineage.client.utils.jdbc
-
-DerbyJdbcExtractor() - Constructor for class io.openlineage.client.utils.jdbc.DerbyJdbcExtractor
-
-description(String) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder
-
-description(String) - Method in class io.openlineage.client.OpenLineage.DocumentationDatasetFacetBuilder
-
-description(String) - Method in class io.openlineage.client.OpenLineage.DocumentationJobFacetBuilder
-
-description(String) - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacetFieldsBuilder
-
-DisabledFacetsMixin() - Constructor for class io.openlineage.client.OpenLineageClientUtils.DisabledFacetsMixin
-
-disableFacets(String...) - Method in class io.openlineage.client.OpenLineageClient.Builder
-
-displayName(String) - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacetBuilder
-
-distinctCount(Long) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder
-
-documentation(OpenLineage.DocumentationDatasetFacet) - Method in class io.openlineage.client.OpenLineage.DatasetFacetsBuilder
-
-documentation(OpenLineage.DocumentationJobFacet) - Method in class io.openlineage.client.OpenLineage.JobFacetsBuilder
-
-DocumentationDatasetFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.DocumentationDatasetFacetBuilder
-
-DocumentationJobFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.DocumentationJobFacetBuilder
-
-DROP - Enum constant in enum class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange
-
-
-E
-
-emit(OpenLineage.DatasetEvent) - Method in class io.openlineage.client.OpenLineageClient
-
-Emit the given dataset event to HTTP backend.
-
-emit(OpenLineage.DatasetEvent) - Method in class io.openlineage.client.transports.ConsoleTransport
-
-emit(OpenLineage.DatasetEvent) - Method in class io.openlineage.client.transports.FileTransport
-
-emit(OpenLineage.DatasetEvent) - Method in class io.openlineage.client.transports.HttpTransport
-
-emit(OpenLineage.DatasetEvent) - Method in class io.openlineage.client.transports.KafkaTransport
-
-emit(OpenLineage.DatasetEvent) - Method in class io.openlineage.client.transports.KinesisTransport
-
-emit(OpenLineage.DatasetEvent) - Method in class io.openlineage.client.transports.NoopTransport
-
-emit(OpenLineage.DatasetEvent) - Method in class io.openlineage.client.transports.Transport
-
-emit(OpenLineage.JobEvent) - Method in class io.openlineage.client.OpenLineageClient
-
-Emit the given run event to HTTP backend.
-
-emit(OpenLineage.JobEvent) - Method in class io.openlineage.client.transports.ConsoleTransport
-
-emit(OpenLineage.JobEvent) - Method in class io.openlineage.client.transports.FileTransport
-
-emit(OpenLineage.JobEvent) - Method in class io.openlineage.client.transports.HttpTransport
-
-emit(OpenLineage.JobEvent) - Method in class io.openlineage.client.transports.KafkaTransport
-
-emit(OpenLineage.JobEvent) - Method in class io.openlineage.client.transports.KinesisTransport
-
-emit(OpenLineage.JobEvent) - Method in class io.openlineage.client.transports.NoopTransport
-
-emit(OpenLineage.JobEvent) - Method in class io.openlineage.client.transports.Transport
-
-emit(OpenLineage.RunEvent) - Method in class io.openlineage.client.OpenLineageClient
-
-Emit the given run event to HTTP backend.
-
-emit(OpenLineage.RunEvent) - Method in class io.openlineage.client.transports.ConsoleTransport
-
-emit(OpenLineage.RunEvent) - Method in class io.openlineage.client.transports.FileTransport
-
-emit(OpenLineage.RunEvent) - Method in class io.openlineage.client.transports.HttpTransport
-
-emit(OpenLineage.RunEvent) - Method in class io.openlineage.client.transports.KafkaTransport
-
-emit(OpenLineage.RunEvent) - Method in class io.openlineage.client.transports.KinesisTransport
-
-emit(OpenLineage.RunEvent) - Method in class io.openlineage.client.transports.NoopTransport
-
-emit(OpenLineage.RunEvent) - Method in class io.openlineage.client.transports.Transport
-
-Environment - Class in io.openlineage.client
-
-Environment() - Constructor for class io.openlineage.client.Environment
-
-equals(Object) - Method in class io.openlineage.client.circuitBreaker.CircuitBreakerState
-
-equals(Object) - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-equals(Object) - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-equals(Object) - Method in class io.openlineage.client.circuitBreaker.StaticCircuitBreakerConfig
-
-equals(Object) - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig
-
-equals(Object) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-equals(Object) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig
-
-equals(Object) - Method in class io.openlineage.client.utils.DatasetIdentifier
-
-equals(Object) - Method in class io.openlineage.client.utils.DatasetIdentifier.Symlink
-
-errorMessage(OpenLineage.ErrorMessageRunFacet) - Method in class io.openlineage.client.OpenLineage.RunFacetsBuilder
-
-errorMessage(String) - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetErrorsBuilder
-
-ErrorMessageRunFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.ErrorMessageRunFacetBuilder
-
-errors(List<OpenLineage.ExtractionErrorRunFacetErrors>) - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetBuilder
-
-eventTime(ZonedDateTime) - Method in class io.openlineage.client.OpenLineage.DatasetEventBuilder
-
-eventTime(ZonedDateTime) - Method in class io.openlineage.client.OpenLineage.JobEventBuilder
-
-eventTime(ZonedDateTime) - Method in class io.openlineage.client.OpenLineage.RunEventBuilder
-
-eventType(OpenLineage.RunEvent.EventType) - Method in class io.openlineage.client.OpenLineage.RunEventBuilder
-
-ExecutorCircuitBreaker - Class in io.openlineage.client.circuitBreaker
-
-ExecutorCircuitBreaker(Integer) - Constructor for class io.openlineage.client.circuitBreaker.ExecutorCircuitBreaker
-
-ExecutorCircuitBreaker(Integer, Duration) - Constructor for class io.openlineage.client.circuitBreaker.ExecutorCircuitBreaker
-
-externalQuery(OpenLineage.ExternalQueryRunFacet) - Method in class io.openlineage.client.OpenLineage.RunFacetsBuilder
-
-externalQueryId(String) - Method in class io.openlineage.client.OpenLineage.ExternalQueryRunFacetBuilder
-
-ExternalQueryRunFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.ExternalQueryRunFacetBuilder
-
-extract(String, Properties) - Method in class io.openlineage.client.utils.jdbc.DerbyJdbcExtractor
-
-extract(String, Properties) - Method in class io.openlineage.client.utils.jdbc.GenericJdbcExtractor
-
-extract(String, Properties) - Method in interface io.openlineage.client.utils.jdbc.JdbcExtractor
-
-extract(String, Properties) - Method in class io.openlineage.client.utils.jdbc.MySqlJdbcExtractor
-
-extract(String, Properties) - Method in class io.openlineage.client.utils.jdbc.OracleJdbcExtractor
-
-extract(String, Properties) - Method in class io.openlineage.client.utils.jdbc.OverridingJdbcExtractor
-
-extract(String, Properties) - Method in class io.openlineage.client.utils.jdbc.PostgresJdbcExtractor
-
-extract(String, Properties) - Method in class io.openlineage.client.utils.jdbc.SqlServerJdbcExtractor
-
-extract(String, Properties) - Method in class io.openlineage.client.utils.jdbc.TeradataJdbcExtractor
-
-extract(URI) - Method in interface io.openlineage.client.utils.filesystem.FilesystemDatasetExtractor
-
-extract(URI) - Method in class io.openlineage.client.utils.filesystem.GenericFilesystemDatasetExtractor
-
-extract(URI) - Method in class io.openlineage.client.utils.filesystem.LocalFilesystemDatasetExtractor
-
-extract(URI) - Method in class io.openlineage.client.utils.filesystem.ObjectStorageDatasetExtractor
-
-extract(URI, String) - Method in interface io.openlineage.client.utils.filesystem.FilesystemDatasetExtractor
-
-extract(URI, String) - Method in class io.openlineage.client.utils.filesystem.GenericFilesystemDatasetExtractor
-
-extract(URI, String) - Method in class io.openlineage.client.utils.filesystem.LocalFilesystemDatasetExtractor
-
-extract(URI, String) - Method in class io.openlineage.client.utils.filesystem.ObjectStorageDatasetExtractor
-
-extractionError(OpenLineage.ExtractionErrorRunFacet) - Method in class io.openlineage.client.OpenLineage.RunFacetsBuilder
-
-ExtractionErrorRunFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetBuilder
-
-ExtractionErrorRunFacetErrorsBuilder() - Constructor for class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetErrorsBuilder
-
-
-F
-
-facets(OpenLineage.DatasetFacets) - Method in class io.openlineage.client.OpenLineage.InputDatasetBuilder
-
-facets(OpenLineage.DatasetFacets) - Method in class io.openlineage.client.OpenLineage.OutputDatasetBuilder
-
-facets(OpenLineage.DatasetFacets) - Method in class io.openlineage.client.OpenLineage.StaticDatasetBuilder
-
-facets(OpenLineage.JobFacets) - Method in class io.openlineage.client.OpenLineage.JobBuilder
-
-facets(OpenLineage.RunFacets) - Method in class io.openlineage.client.OpenLineage.RunBuilder
-
-facetsConfig - Variable in class io.openlineage.client.OpenLineageConfig
-
-FacetsConfig - Class in io.openlineage.client.transports
-
-FacetsConfig() - Constructor for class io.openlineage.client.transports.FacetsConfig
-
-FacetsConfig(String[], String[], Map<String, Boolean>) - Constructor for class io.openlineage.client.transports.FacetsConfig
-
-FAIL - Enum constant in enum class io.openlineage.client.OpenLineage.RunEvent.EventType
-
-FAIL - Enum constant in enum class io.openlineage.server.OpenLineage.RunEvent.EventType
-
-failedTasks(Long) - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetBuilder
-
-field(String) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder
-
-fields(OpenLineage.ColumnLineageDatasetFacetFields) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetBuilder
-
-fields(List<OpenLineage.SchemaDatasetFacetFields>) - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacetBuilder
-
-fields(List<OpenLineage.SchemaDatasetFacetFields>) - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacetFieldsBuilder
-
-FileConfig - Class in io.openlineage.client.transports
-
-FileConfig() - Constructor for class io.openlineage.client.transports.FileConfig
-
-FileConfig(String) - Constructor for class io.openlineage.client.transports.FileConfig
-
-fileCount(Long) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetBuilder
-
-fileCount(Long) - Method in class io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacetBuilder
-
-fileFormat(String) - Method in class io.openlineage.client.OpenLineage.StorageDatasetFacetBuilder
-
-FilesystemDatasetExtractor - Interface in io.openlineage.client.utils.filesystem
-
-FilesystemDatasetUtils - Class in io.openlineage.client.utils.filesystem
-
-FilesystemDatasetUtils() - Constructor for class io.openlineage.client.utils.filesystem.FilesystemDatasetUtils
-
-FileTransport - Class in io.openlineage.client.transports
-
-Appends Openlineage events to a file specified.
-
-FileTransport(FileConfig) - Constructor for class io.openlineage.client.transports.FileTransport
-
-FileTransportBuilder - Class in io.openlineage.client.transports
-
-FileTransportBuilder() - Constructor for class io.openlineage.client.transports.FileTransportBuilder
-
-freeMemory() - Static method in class io.openlineage.client.utils.RuntimeUtils
-
-fromJson(String, TypeReference<T>) - Static method in class io.openlineage.client.OpenLineageClientUtils
-
-Converts the provided JSON string to an instance of the specified type.
-
-fromLocation(URI) - Static method in class io.openlineage.client.utils.filesystem.FilesystemDatasetUtils
-
-Get DatasetIdentifier from table location URI
-
-fromLocationAndName(URI, String) - Static method in class io.openlineage.client.utils.filesystem.FilesystemDatasetUtils
-
-Get DatasetIdentifier from table location URI and name
-
-
-G
-
-gcp_common(OpenLineage.GcpCommonJobFacet) - Method in class io.openlineage.client.OpenLineage.JobFacetsBuilder
-
-GcpCommonJobFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.GcpCommonJobFacetBuilder
-
-GcpCommonJobFacetOriginBuilder() - Constructor for class io.openlineage.client.OpenLineage.GcpCommonJobFacetOriginBuilder
-
-generateNewUUID() - Static method in class io.openlineage.client.utils.UUIDUtils
-
-Generate new UUID.
-
-generateNewUUID(Instant) - Static method in class io.openlineage.client.utils.UUIDUtils
-
-Generate new UUID for an instant of time.
-
-GenericFilesystemDatasetExtractor - Class in io.openlineage.client.utils.filesystem
-
-GenericFilesystemDatasetExtractor() - Constructor for class io.openlineage.client.utils.filesystem.GenericFilesystemDatasetExtractor
-
-GenericJdbcExtractor - Class in io.openlineage.client.utils.jdbc
-
-GenericJdbcExtractor() - Constructor for class io.openlineage.client.utils.jdbc.GenericJdbcExtractor
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacet
-
-get_deleted() - Method in interface io.openlineage.client.OpenLineage.DatasetFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.DatasetVersionDatasetFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.DatasourceDatasetFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.DefaultDatasetFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.DefaultJobFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.DocumentationDatasetFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.DocumentationJobFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacet
-
-get_deleted() - Method in interface io.openlineage.client.OpenLineage.JobFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.JobTypeJobFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.SourceCodeJobFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.SQLJobFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.StorageDatasetFacet
-
-get_deleted() - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacet
-
-get_deleted() - Method in class io.openlineage.server.OpenLineage.DatasetFacet
-
-get_deleted() - Method in class io.openlineage.server.OpenLineage.JobFacet
-
-get_producer() - Method in interface io.openlineage.client.OpenLineage.BaseFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacet
-
-get_producer() - Method in interface io.openlineage.client.OpenLineage.DatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.DatasetVersionDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.DatasourceDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.DefaultDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.DefaultInputDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.DefaultJobFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.DefaultOutputDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.DefaultRunFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.DocumentationDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.DocumentationJobFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.ErrorMessageRunFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.ExternalQueryRunFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacet
-
-get_producer() - Method in interface io.openlineage.client.OpenLineage.InputDatasetFacet
-
-get_producer() - Method in interface io.openlineage.client.OpenLineage.JobFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.JobTypeJobFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.NominalTimeRunFacet
-
-get_producer() - Method in interface io.openlineage.client.OpenLineage.OutputDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.ParentRunFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.ProcessingEngineRunFacet
-
-get_producer() - Method in interface io.openlineage.client.OpenLineage.RunFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.SourceCodeJobFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.SQLJobFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.StorageDatasetFacet
-
-get_producer() - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacet
-
-get_producer() - Method in interface io.openlineage.server.OpenLineage.BaseFacet
-
-get_producer() - Method in class io.openlineage.server.OpenLineage.DatasetFacet
-
-get_producer() - Method in class io.openlineage.server.OpenLineage.InputDatasetFacet
-
-get_producer() - Method in class io.openlineage.server.OpenLineage.JobFacet
-
-get_producer() - Method in class io.openlineage.server.OpenLineage.OutputDatasetFacet
-
-get_producer() - Method in class io.openlineage.server.OpenLineage.RunFacet
-
-get_schemaURL() - Method in interface io.openlineage.client.OpenLineage.BaseFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacet
-
-get_schemaURL() - Method in interface io.openlineage.client.OpenLineage.DatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.DatasetVersionDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.DatasourceDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.DefaultDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.DefaultInputDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.DefaultJobFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.DefaultOutputDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.DefaultRunFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.DocumentationDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.DocumentationJobFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.ErrorMessageRunFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.ExternalQueryRunFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacet
-
-get_schemaURL() - Method in interface io.openlineage.client.OpenLineage.InputDatasetFacet
-
-get_schemaURL() - Method in interface io.openlineage.client.OpenLineage.JobFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.JobTypeJobFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.NominalTimeRunFacet
-
-get_schemaURL() - Method in interface io.openlineage.client.OpenLineage.OutputDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.ParentRunFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.ProcessingEngineRunFacet
-
-get_schemaURL() - Method in interface io.openlineage.client.OpenLineage.RunFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.SourceCodeJobFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.SQLJobFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.StorageDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacet
-
-get_schemaURL() - Method in interface io.openlineage.server.OpenLineage.BaseFacet
-
-get_schemaURL() - Method in class io.openlineage.server.OpenLineage.DatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.server.OpenLineage.InputDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.server.OpenLineage.JobFacet
-
-get_schemaURL() - Method in class io.openlineage.server.OpenLineage.OutputDatasetFacet
-
-get_schemaURL() - Method in class io.openlineage.server.OpenLineage.RunFacet
-
-getAdditionalProperties() - Method in interface io.openlineage.client.OpenLineage.BaseFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFields
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditional
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-getAdditionalProperties() - Method in interface io.openlineage.client.OpenLineage.DatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DatasetFacets
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DatasetVersionDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DatasourceDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DefaultDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DefaultInputDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DefaultJobFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DefaultOutputDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DefaultRunFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DocumentationDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.DocumentationJobFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.ErrorMessageRunFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.ExternalQueryRunFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacet
-
-getAdditionalProperties() - Method in interface io.openlineage.client.OpenLineage.InputDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.InputDatasetInputFacets
-
-getAdditionalProperties() - Method in interface io.openlineage.client.OpenLineage.JobFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.JobFacets
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.JobTypeJobFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.NominalTimeRunFacet
-
-getAdditionalProperties() - Method in interface io.openlineage.client.OpenLineage.OutputDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.OutputDatasetOutputFacets
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.ParentRunFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.ProcessingEngineRunFacet
-
-getAdditionalProperties() - Method in interface io.openlineage.client.OpenLineage.RunFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.RunFacets
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.SourceCodeJobFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.SQLJobFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.StorageDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacet
-
-getAdditionalProperties() - Method in interface io.openlineage.server.OpenLineage.BaseEvent
-
-getAdditionalProperties() - Method in interface io.openlineage.server.OpenLineage.BaseFacet
-
-getAdditionalProperties() - Method in interface io.openlineage.server.OpenLineage.Dataset
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.DatasetEvent
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.DatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.DatasetFacets
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.InputDataset
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.InputDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.InputDatasetInputFacets
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.Job
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.JobEvent
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.JobFacet
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.JobFacets
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.OutputDataset
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.OutputDatasetFacet
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.OutputDatasetOutputFacets
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.Run
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.RunEvent
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.RunFacet
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.RunFacets
-
-getAdditionalProperties() - Method in class io.openlineage.server.OpenLineage.StaticDataset
-
-getApiKey() - Method in class io.openlineage.client.transports.ApiKeyTokenProvider
-
-getAssertion() - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetAssertions
-
-getAssertions() - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacet
-
-getAuth() - Method in class io.openlineage.client.transports.HttpConfig
-
-getAuth() - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-getAuthority() - Method in class io.openlineage.client.utils.jdbc.JdbcLocation
-
-getBody() - Method in exception io.openlineage.client.transports.HttpTransportResponseException
-
-getBranch() - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet
-
-getBytes() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacet
-
-getCheckIntervalMillis() - Method in interface io.openlineage.client.circuitBreaker.CircuitBreaker
-
-getCheckIntervalMillis() - Method in class io.openlineage.client.circuitBreaker.ExecutorCircuitBreaker
-
-getCircuitBreaker() - Method in class io.openlineage.client.OpenLineageConfig
-
-getCircuitCheckIntervalInMillis() - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-getCircuitCheckIntervalInMillis() - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-getCircuitCheckIntervalInMillis() - Method in class io.openlineage.client.circuitBreaker.StaticCircuitBreakerConfig
-
-getColumn() - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetAssertions
-
-getColumnLineage() - Method in class io.openlineage.client.OpenLineage.DatasetFacets
-
-getColumnMetrics() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacet
-
-getCompression() - Method in class io.openlineage.client.transports.HttpConfig
-
-getCompression() - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-getConfig() - Method in interface io.openlineage.client.circuitBreaker.CircuitBreakerBuilder
-
-getConfig() - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerBuilder
-
-getConfig() - Method in class io.openlineage.client.circuitBreaker.NoOpCircuitBreakerBuilder
-
-getConfig() - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerBuilder
-
-getConfig() - Method in class io.openlineage.client.circuitBreaker.StaticCircuitBreakerBuilder
-
-getConfig() - Method in interface io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverBuilder
-
-getConfig() - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverBuilder
-
-getConfig() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverBuilder
-
-getConfig() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverBuilder
-
-getConfig() - Method in class io.openlineage.client.transports.ConsoleTransportBuilder
-
-getConfig() - Method in class io.openlineage.client.transports.FileTransportBuilder
-
-getConfig() - Method in class io.openlineage.client.transports.HttpTransportBuilder
-
-getConfig() - Method in class io.openlineage.client.transports.KafkaTransportBuilder
-
-getConfig() - Method in class io.openlineage.client.transports.KinesisTransportBuilder
-
-getConfig() - Method in interface io.openlineage.client.transports.TransportBuilder
-
-getCount() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-getCustomEnvironmentVariables() - Method in class io.openlineage.client.transports.FacetsConfig
-
-getDatabase() - Method in class io.openlineage.client.utils.jdbc.JdbcLocation
-
-getDataQualityAssertions() - Method in class io.openlineage.client.OpenLineage.InputDatasetInputFacets
-
-getDataQualityMetrics() - Method in class io.openlineage.client.OpenLineage.InputDatasetInputFacets
-
-getDataset() - Method in class io.openlineage.client.OpenLineage.DatasetEvent
-
-getDataset() - Method in class io.openlineage.server.OpenLineage.DatasetEvent
-
-getDatasetConfig() - Method in class io.openlineage.client.OpenLineageConfig
-
-getDatasetIdentifier(String, String, Properties) - Static method in class io.openlineage.client.utils.jdbc.JdbcDatasetUtils
-
-Get DatasetIdentifier from JdbcUrl and JDBC properties for specified table.
-
-getDatasetIdentifier(String, List<String>, Properties) - Static method in class io.openlineage.client.utils.jdbc.JdbcDatasetUtils
-
-getDatasetVersion() - Method in class io.openlineage.client.OpenLineage.DatasetVersionDatasetFacet
-
-getDataSource() - Method in class io.openlineage.client.OpenLineage.DatasetFacets
-
-getDeprecatedDisabledFacets() - Method in class io.openlineage.client.transports.FacetsConfig
-
-Deprecated.
-
-getDescription() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-getDescription() - Method in class io.openlineage.client.OpenLineage.DocumentationDatasetFacet
-
-getDescription() - Method in class io.openlineage.client.OpenLineage.DocumentationJobFacet
-
-getDescription() - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacetFields
-
-getDisabledFacets() - Method in class io.openlineage.client.transports.FacetsConfig
-
-getDisplayName() - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacet
-
-getDistinctCount() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-getDocumentation() - Method in class io.openlineage.client.OpenLineage.DatasetFacets
-
-getDocumentation() - Method in class io.openlineage.client.OpenLineage.JobFacets
-
-getEffectiveDisabledFacets() - Method in class io.openlineage.client.transports.FacetsConfig
-
-Merges deprecated and new mechanism for disabled facets into one effective list
-
-getEndpoint() - Method in class io.openlineage.client.transports.HttpConfig
-
-getEndpoint() - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-getEnvironmentVariable(String) - Static method in class io.openlineage.client.Environment
-
-getErrorMessage() - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetErrors
-
-getErrorMessage() - Method in class io.openlineage.client.OpenLineage.RunFacets
-
-getErrors() - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacet
-
-getEventTime() - Method in interface io.openlineage.client.OpenLineage.BaseEvent
-
-getEventTime() - Method in class io.openlineage.client.OpenLineage.DatasetEvent
-
-getEventTime() - Method in class io.openlineage.client.OpenLineage.JobEvent
-
-getEventTime() - Method in class io.openlineage.client.OpenLineage.RunEvent
-
-getEventTime() - Method in interface io.openlineage.server.OpenLineage.BaseEvent
-
-getEventTime() - Method in class io.openlineage.server.OpenLineage.DatasetEvent
-
-getEventTime() - Method in class io.openlineage.server.OpenLineage.JobEvent
-
-getEventTime() - Method in class io.openlineage.server.OpenLineage.RunEvent
-
-getEventType() - Method in class io.openlineage.client.OpenLineage.RunEvent
-
-getEventType() - Method in class io.openlineage.server.OpenLineage.RunEvent
-
-getExternalQuery() - Method in class io.openlineage.client.OpenLineage.RunFacets
-
-getExternalQueryId() - Method in class io.openlineage.client.OpenLineage.ExternalQueryRunFacet
-
-getExtractionError() - Method in class io.openlineage.client.OpenLineage.RunFacets
-
-getFacets() - Method in interface io.openlineage.client.OpenLineage.Dataset
-
-getFacets() - Method in class io.openlineage.client.OpenLineage.InputDataset
-
-getFacets() - Method in class io.openlineage.client.OpenLineage.Job
-
-getFacets() - Method in class io.openlineage.client.OpenLineage.OutputDataset
-
-getFacets() - Method in class io.openlineage.client.OpenLineage.Run
-
-getFacets() - Method in class io.openlineage.client.OpenLineage.StaticDataset
-
-getFacets() - Method in interface io.openlineage.server.OpenLineage.Dataset
-
-getFacets() - Method in class io.openlineage.server.OpenLineage.InputDataset
-
-getFacets() - Method in class io.openlineage.server.OpenLineage.Job
-
-getFacets() - Method in class io.openlineage.server.OpenLineage.OutputDataset
-
-getFacets() - Method in class io.openlineage.server.OpenLineage.Run
-
-getFacets() - Method in class io.openlineage.server.OpenLineage.StaticDataset
-
-getFacetsConfig() - Method in class io.openlineage.client.OpenLineageConfig
-
-getFailedTasks() - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacet
-
-getField() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-getFields() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacet
-
-getFields() - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacet
-
-getFields() - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacetFields
-
-getFileCount() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacet
-
-getFileCount() - Method in class io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacet
-
-getFileFormat() - Method in class io.openlineage.client.OpenLineage.StorageDatasetFacet
-
-getGarbageCollectorMXBeans() - Static method in class io.openlineage.client.utils.RuntimeUtils
-
-getGcCpuThreshold() - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-getGcp_common() - Method in class io.openlineage.client.OpenLineage.JobFacets
-
-getHeaders() - Method in class io.openlineage.client.transports.HttpConfig
-
-getHeaders() - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-getHosts() - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig
-
-getIdentifiers() - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacet
-
-getInputFacets() - Method in class io.openlineage.client.OpenLineage.InputDataset
-
-getInputFacets() - Method in class io.openlineage.server.OpenLineage.InputDataset
-
-getInputFields() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditional
-
-getInputs() - Method in class io.openlineage.client.OpenLineage.JobEvent
-
-getInputs() - Method in class io.openlineage.client.OpenLineage.RunEvent
-
-getInputs() - Method in class io.openlineage.server.OpenLineage.JobEvent
-
-getInputs() - Method in class io.openlineage.server.OpenLineage.RunEvent
-
-getInstance() - Method in class io.openlineage.client.utils.jdbc.JdbcLocation
-
-getIntegration() - Method in class io.openlineage.client.OpenLineage.JobTypeJobFacet
-
-getJob() - Method in class io.openlineage.client.OpenLineage.JobEvent
-
-getJob() - Method in class io.openlineage.client.OpenLineage.ParentRunFacet
-
-getJob() - Method in class io.openlineage.client.OpenLineage.RunEvent
-
-getJob() - Method in class io.openlineage.server.OpenLineage.JobEvent
-
-getJob() - Method in class io.openlineage.server.OpenLineage.RunEvent
-
-getJobType() - Method in class io.openlineage.client.OpenLineage.JobFacets
-
-getJobType() - Method in class io.openlineage.client.OpenLineage.JobTypeJobFacet
-
-getLanguage() - Method in class io.openlineage.client.OpenLineage.SourceCodeJobFacet
-
-getLifecycleStateChange() - Method in class io.openlineage.client.OpenLineage.DatasetFacets
-
-getLifecycleStateChange() - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet
-
-getLocation() - Method in class io.openlineage.client.transports.FileConfig
-
-getMasking() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-getMatchingGroup() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-getMax() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-getMechanism() - Method in class io.openlineage.client.circuitBreaker.CircuitBreakerConfigTypeIdResolver
-
-getMechanism() - Method in class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverConfigTypeIdResolver
-
-getMechanism() - Method in class io.openlineage.client.transports.TokenProviderTypeIdResolver
-
-getMechanism() - Method in class io.openlineage.client.transports.TransportConfigTypeIdResolver
-
-getMemoryFractionUsage() - Static method in class io.openlineage.client.utils.RuntimeUtils
-
-getMemoryThreshold() - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-getMemoryThreshold() - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-getMessage() - Method in class io.openlineage.client.OpenLineage.ErrorMessageRunFacet
-
-getMessageKey() - Method in class io.openlineage.client.transports.KafkaConfig
-
-getMeterRegistry() - Static method in class io.openlineage.client.metrics.MicrometerProvider
-
-Returns the global OpenLineage meter registry.
-
-getMetricsConfig() - Method in class io.openlineage.client.OpenLineageConfig
-
-getMin() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-getName() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-getName() - Method in interface io.openlineage.client.OpenLineage.Dataset
-
-getName() - Method in class io.openlineage.client.OpenLineage.DatasourceDatasetFacet
-
-getName() - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacetOrigin
-
-getName() - Method in class io.openlineage.client.OpenLineage.InputDataset
-
-getName() - Method in class io.openlineage.client.OpenLineage.Job
-
-getName() - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-getName() - Method in class io.openlineage.client.OpenLineage.OutputDataset
-
-getName() - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacetOwners
-
-getName() - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacetOwners
-
-getName() - Method in class io.openlineage.client.OpenLineage.ParentRunFacetJob
-
-getName() - Method in class io.openlineage.client.OpenLineage.ProcessingEngineRunFacet
-
-getName() - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacetFields
-
-getName() - Method in class io.openlineage.client.OpenLineage.StaticDataset
-
-getName() - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacetIdentifiers
-
-getName() - Method in class io.openlineage.client.utils.DatasetIdentifier
-
-getName() - Method in class io.openlineage.client.utils.DatasetIdentifier.Symlink
-
-getName() - Method in interface io.openlineage.server.OpenLineage.Dataset
-
-getName() - Method in class io.openlineage.server.OpenLineage.InputDataset
-
-getName() - Method in class io.openlineage.server.OpenLineage.Job
-
-getName() - Method in class io.openlineage.server.OpenLineage.OutputDataset
-
-getName() - Method in class io.openlineage.server.OpenLineage.StaticDataset
-
-getNamespace() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-getNamespace() - Method in interface io.openlineage.client.OpenLineage.Dataset
-
-getNamespace() - Method in class io.openlineage.client.OpenLineage.InputDataset
-
-getNamespace() - Method in class io.openlineage.client.OpenLineage.Job
-
-getNamespace() - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-getNamespace() - Method in class io.openlineage.client.OpenLineage.OutputDataset
-
-getNamespace() - Method in class io.openlineage.client.OpenLineage.ParentRunFacetJob
-
-getNamespace() - Method in class io.openlineage.client.OpenLineage.StaticDataset
-
-getNamespace() - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacetIdentifiers
-
-getNamespace() - Method in class io.openlineage.client.utils.DatasetIdentifier
-
-getNamespace() - Method in class io.openlineage.client.utils.DatasetIdentifier.Symlink
-
-getNamespace() - Method in interface io.openlineage.server.OpenLineage.Dataset
-
-getNamespace() - Method in class io.openlineage.server.OpenLineage.InputDataset
-
-getNamespace() - Method in class io.openlineage.server.OpenLineage.Job
-
-getNamespace() - Method in class io.openlineage.server.OpenLineage.OutputDataset
-
-getNamespace() - Method in class io.openlineage.server.OpenLineage.StaticDataset
-
-getNamespaceResolvers() - Method in class io.openlineage.client.dataset.DatasetConfig
-
-getNominalEndTime() - Method in class io.openlineage.client.OpenLineage.NominalTimeRunFacet
-
-getNominalStartTime() - Method in class io.openlineage.client.OpenLineage.NominalTimeRunFacet
-
-getNominalTime() - Method in class io.openlineage.client.OpenLineage.RunFacets
-
-getNullCount() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-getOpenlineageAdapterVersion() - Method in class io.openlineage.client.OpenLineage.ProcessingEngineRunFacet
-
-getOrigin() - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacet
-
-getOutputFacets() - Method in class io.openlineage.client.OpenLineage.OutputDataset
-
-getOutputFacets() - Method in class io.openlineage.server.OpenLineage.OutputDataset
-
-getOutputs() - Method in class io.openlineage.client.OpenLineage.JobEvent
-
-getOutputs() - Method in class io.openlineage.client.OpenLineage.RunEvent
-
-getOutputs() - Method in class io.openlineage.server.OpenLineage.JobEvent
-
-getOutputs() - Method in class io.openlineage.server.OpenLineage.RunEvent
-
-getOutputStatistics() - Method in class io.openlineage.client.OpenLineage.OutputDatasetOutputFacets
-
-getOwners() - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacet
-
-getOwners() - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacet
-
-getOwnership() - Method in class io.openlineage.client.OpenLineage.DatasetFacets
-
-getOwnership() - Method in class io.openlineage.client.OpenLineage.JobFacets
-
-getParent() - Method in class io.openlineage.client.OpenLineage.RunFacets
-
-getPath() - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet
-
-getPaths() - Method in interface io.openlineage.client.ConfigPathProvider
-
-getPaths() - Method in class io.openlineage.client.DefaultConfigPathProvider
-
-getPreviousIdentifier() - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet
-
-getProcessing_engine() - Method in class io.openlineage.client.OpenLineage.RunFacets
-
-getProcessingType() - Method in class io.openlineage.client.OpenLineage.JobTypeJobFacet
-
-getProducer() - Method in interface io.openlineage.client.OpenLineage.BaseEvent
-
-getProducer() - Method in class io.openlineage.client.OpenLineage.DatasetEvent
-
-getProducer() - Method in class io.openlineage.client.OpenLineage.JobEvent
-
-getProducer() - Method in class io.openlineage.client.OpenLineage.RunEvent
-
-getProducer() - Method in interface io.openlineage.server.OpenLineage.BaseEvent
-
-getProducer() - Method in class io.openlineage.server.OpenLineage.DatasetEvent
-
-getProducer() - Method in class io.openlineage.server.OpenLineage.JobEvent
-
-getProducer() - Method in class io.openlineage.server.OpenLineage.RunEvent
-
-getProgrammingLanguage() - Method in class io.openlineage.client.OpenLineage.ErrorMessageRunFacet
-
-getProperties() - Method in class io.openlineage.client.transports.KafkaConfig
-
-getProperties() - Method in class io.openlineage.client.transports.KinesisConfig
-
-getQuantiles() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-getQuery() - Method in class io.openlineage.client.OpenLineage.SQLJobFacet
-
-getReason() - Method in class io.openlineage.client.circuitBreaker.CircuitBreakerState
-
-getRegex() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-getRegex() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig
-
-getRegion() - Method in class io.openlineage.client.transports.KinesisConfig
-
-getRepoUrl() - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet
-
-getRoleArn() - Method in class io.openlineage.client.transports.KinesisConfig
-
-getRowCount() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacet
-
-getRowCount() - Method in class io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacet
-
-getRun() - Method in class io.openlineage.client.OpenLineage.ParentRunFacet
-
-getRun() - Method in class io.openlineage.client.OpenLineage.RunEvent
-
-getRun() - Method in class io.openlineage.server.OpenLineage.RunEvent
-
-getRunId() - Method in class io.openlineage.client.OpenLineage.ParentRunFacetRun
-
-getRunId() - Method in class io.openlineage.client.OpenLineage.Run
-
-getRunId() - Method in class io.openlineage.server.OpenLineage.Run
-
-getSchema() - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig
-
-getSchema() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-getSchema() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig
-
-getSchema() - Method in class io.openlineage.client.OpenLineage.DatasetFacets
-
-getSchemaURL() - Method in interface io.openlineage.client.OpenLineage.BaseEvent
-
-getSchemaURL() - Method in class io.openlineage.client.OpenLineage.DatasetEvent
-
-getSchemaURL() - Method in class io.openlineage.client.OpenLineage.JobEvent
-
-getSchemaURL() - Method in class io.openlineage.client.OpenLineage.RunEvent
-
-getSchemaURL() - Method in interface io.openlineage.server.OpenLineage.BaseEvent
-
-getSchemaURL() - Method in class io.openlineage.server.OpenLineage.DatasetEvent
-
-getSchemaURL() - Method in class io.openlineage.server.OpenLineage.JobEvent
-
-getSchemaURL() - Method in class io.openlineage.server.OpenLineage.RunEvent
-
-getScheme() - Method in class io.openlineage.client.utils.jdbc.JdbcLocation
-
-getSize() - Method in class io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacet
-
-getSource() - Method in class io.openlineage.client.OpenLineage.ExternalQueryRunFacet
-
-getSourceCode() - Method in class io.openlineage.client.OpenLineage.JobFacets
-
-getSourceCode() - Method in class io.openlineage.client.OpenLineage.SourceCodeJobFacet
-
-getSourceCodeLocation() - Method in class io.openlineage.client.OpenLineage.JobFacets
-
-getSourceType() - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacetOrigin
-
-getSql() - Method in class io.openlineage.client.OpenLineage.JobFacets
-
-getStackTrace() - Method in class io.openlineage.client.OpenLineage.ErrorMessageRunFacet
-
-getStackTrace() - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetErrors
-
-getStatusCode() - Method in exception io.openlineage.client.transports.HttpTransportResponseException
-
-getStorage() - Method in class io.openlineage.client.OpenLineage.DatasetFacets
-
-getStorageLayer() - Method in class io.openlineage.client.OpenLineage.StorageDatasetFacet
-
-getStreamName() - Method in class io.openlineage.client.transports.KinesisConfig
-
-getSubtype() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-getSuccess() - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetAssertions
-
-getSum() - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-getSymlinks() - Method in class io.openlineage.client.OpenLineage.DatasetFacets
-
-getSymlinks() - Method in class io.openlineage.client.utils.DatasetIdentifier
-
-getTag() - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet
-
-getTask() - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetErrors
-
-getTaskNumber() - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetErrors
-
-getTimeout() - Method in class io.openlineage.client.circuitBreaker.ExecutorCircuitBreaker
-
-getTimeout() - Method in class io.openlineage.client.transports.HttpConfig
-
-getTimeout() - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-getTimeoutInMillis() - Method in class io.openlineage.client.transports.HttpConfig
-
-getTimeoutInMillis() - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-getTimeoutInSeconds() - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-getTimeoutInSeconds() - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-getToken() - Method in class io.openlineage.client.transports.ApiKeyTokenProvider
-
-getToken() - Method in interface io.openlineage.client.transports.TokenProvider
-
-getTopicName() - Method in class io.openlineage.client.transports.KafkaConfig
-
-getTotalTasks() - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacet
-
-getTransformationDescription() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditional
-
-getTransformations() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-getTransformationType() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditional
-
-getTransportConfig() - Method in class io.openlineage.client.OpenLineageConfig
-
-getType() - Method in interface io.openlineage.client.circuitBreaker.CircuitBreakerBuilder
-
-getType() - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerBuilder
-
-getType() - Method in class io.openlineage.client.circuitBreaker.NoOpCircuitBreakerBuilder
-
-getType() - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerBuilder
-
-getType() - Method in class io.openlineage.client.circuitBreaker.StaticCircuitBreakerBuilder
-
-getType() - Method in interface io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverBuilder
-
-getType() - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverBuilder
-
-getType() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverBuilder
-
-getType() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverBuilder
-
-getType() - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-getType() - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacetOwners
-
-getType() - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacetOwners
-
-getType() - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacetFields
-
-getType() - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet
-
-getType() - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacetIdentifiers
-
-getType() - Method in class io.openlineage.client.transports.ConsoleTransportBuilder
-
-getType() - Method in class io.openlineage.client.transports.FileTransportBuilder
-
-getType() - Method in class io.openlineage.client.transports.HttpTransportBuilder
-
-getType() - Method in class io.openlineage.client.transports.KafkaTransportBuilder
-
-getType() - Method in class io.openlineage.client.transports.KinesisTransportBuilder
-
-getType() - Method in interface io.openlineage.client.transports.TransportBuilder
-
-getType() - Method in class io.openlineage.client.utils.DatasetIdentifier.Symlink
-
-getUri() - Method in class io.openlineage.client.OpenLineage.DatasourceDatasetFacet
-
-getUrl() - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet
-
-getUrl() - Method in class io.openlineage.client.transports.HttpConfig
-
-getUrl() - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-getUrlParams() - Method in class io.openlineage.client.transports.HttpConfig
-
-getUrlParams() - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-getValuesReturned() - Method in class io.openlineage.client.circuitBreaker.StaticCircuitBreakerConfig
-
-getVersion() - Method in class io.openlineage.client.OpenLineage.DatasetFacets
-
-getVersion() - Method in class io.openlineage.client.OpenLineage.ProcessingEngineRunFacet
-
-getVersion() - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet
-
-GZIP - Enum constant in enum class io.openlineage.client.transports.HttpConfig.Compression
-
-
-H
-
-hasClass(String) - Static method in class io.openlineage.client.utils.ReflectionUtils
-
-hasClasses(String...) - Static method in class io.openlineage.client.utils.ReflectionUtils
-
-hashCode() - Method in class io.openlineage.client.circuitBreaker.CircuitBreakerState
-
-hashCode() - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-hashCode() - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-hashCode() - Method in class io.openlineage.client.circuitBreaker.StaticCircuitBreakerConfig
-
-hashCode() - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig
-
-hashCode() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-hashCode() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig
-
-hashCode() - Method in class io.openlineage.client.utils.DatasetIdentifier
-
-hashCode() - Method in class io.openlineage.client.utils.DatasetIdentifier.Symlink
-
-HostListNamespaceResolver - Class in io.openlineage.client.dataset.namespace.resolver
-
-HostListNamespaceResolver(String, HostListNamespaceResolverConfig) - Constructor for class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolver
-
-HostListNamespaceResolverBuilder - Class in io.openlineage.client.dataset.namespace.resolver
-
-HostListNamespaceResolverBuilder() - Constructor for class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverBuilder
-
-HostListNamespaceResolverConfig - Class in io.openlineage.client.dataset.namespace.resolver
-
-HostListNamespaceResolverConfig() - Constructor for class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig
-
-HostListNamespaceResolverConfig(List<String>, String) - Constructor for class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig
-
-http(CloseableHttpClient) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-HttpConfig - Class in io.openlineage.client.transports
-
-HttpConfig() - Constructor for class io.openlineage.client.transports.HttpConfig
-
-HttpConfig(URI, String, Double, Integer, TokenProvider, Map<String, String>, Map<String, String>, HttpConfig.Compression) - Constructor for class io.openlineage.client.transports.HttpConfig
-
-HttpConfig.Compression - Enum Class in io.openlineage.client.transports
-
-HttpTransport - Class in io.openlineage.client.transports
-
-HttpTransport(HttpConfig) - Constructor for class io.openlineage.client.transports.HttpTransport
-
-HttpTransport(CloseableHttpClient, HttpConfig) - Constructor for class io.openlineage.client.transports.HttpTransport
-
-HttpTransport.Builder - Class in io.openlineage.client.transports
-
-Deprecated.
-
-
-
-HttpTransportBuilder - Class in io.openlineage.client.transports
-
-HttpTransportBuilder() - Constructor for class io.openlineage.client.transports.HttpTransportBuilder
-
-HttpTransportResponseException - Exception in io.openlineage.client.transports
-
-An exception thrown to indicate a client error relating to a http response.
-
-HttpTransportResponseException(int, String) - Constructor for exception io.openlineage.client.transports.HttpTransportResponseException
-
-
-I
-
-identifiers(List<OpenLineage.SymlinksDatasetFacetIdentifiers>) - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacetBuilder
-
-idFromValue(Object) - Method in class io.openlineage.client.circuitBreaker.CircuitBreakerConfigTypeIdResolver
-
-idFromValue(Object) - Method in class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverConfigTypeIdResolver
-
-idFromValue(Object) - Method in class io.openlineage.client.transports.TokenProviderTypeIdResolver
-
-idFromValue(Object) - Method in class io.openlineage.client.transports.TransportConfigTypeIdResolver
-
-idFromValueAndType(Object, Class<?>) - Method in class io.openlineage.client.circuitBreaker.CircuitBreakerConfigTypeIdResolver
-
-idFromValueAndType(Object, Class<?>) - Method in class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverConfigTypeIdResolver
-
-idFromValueAndType(Object, Class<?>) - Method in class io.openlineage.client.transports.TokenProviderTypeIdResolver
-
-idFromValueAndType(Object, Class<?>) - Method in class io.openlineage.client.transports.TransportConfigTypeIdResolver
-
-init(JavaType) - Method in class io.openlineage.client.circuitBreaker.CircuitBreakerConfigTypeIdResolver
-
-init(JavaType) - Method in class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverConfigTypeIdResolver
-
-init(JavaType) - Method in class io.openlineage.client.transports.TokenProviderTypeIdResolver
-
-init(JavaType) - Method in class io.openlineage.client.transports.TransportConfigTypeIdResolver
-
-initializeMetrics() - Method in class io.openlineage.client.OpenLineageClient
-
-InputDataset(String, String, OpenLineage.DatasetFacets, OpenLineage.InputDatasetInputFacets) - Constructor for class io.openlineage.server.OpenLineage.InputDataset
-
-InputDatasetBuilder() - Constructor for class io.openlineage.client.OpenLineage.InputDatasetBuilder
-
-InputDatasetFacet(URI, URI) - Constructor for class io.openlineage.server.OpenLineage.InputDatasetFacet
-
-InputDatasetInputFacets() - Constructor for class io.openlineage.server.OpenLineage.InputDatasetInputFacets
-
-InputDatasetInputFacetsBuilder() - Constructor for class io.openlineage.client.OpenLineage.InputDatasetInputFacetsBuilder
-
-inputFacets(OpenLineage.InputDatasetInputFacets) - Method in class io.openlineage.client.OpenLineage.InputDatasetBuilder
-
-inputFields(List<OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields>) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder
-
-inputs(List<OpenLineage.InputDataset>) - Method in class io.openlineage.client.OpenLineage.JobEventBuilder
-
-inputs(List<OpenLineage.InputDataset>) - Method in class io.openlineage.client.OpenLineage.RunEventBuilder
-
-integration(String) - Method in class io.openlineage.client.OpenLineage.JobTypeJobFacetBuilder
-
-io.openlineage.client - package io.openlineage.client
-
-io.openlineage.client.circuitBreaker - package io.openlineage.client.circuitBreaker
-
-io.openlineage.client.dataset - package io.openlineage.client.dataset
-
-io.openlineage.client.dataset.namespace.resolver - package io.openlineage.client.dataset.namespace.resolver
-
-io.openlineage.client.metrics - package io.openlineage.client.metrics
-
-io.openlineage.client.transports - package io.openlineage.client.transports
-
-io.openlineage.client.utils - package io.openlineage.client.utils
-
-io.openlineage.client.utils.filesystem - package io.openlineage.client.utils.filesystem
-
-io.openlineage.client.utils.jdbc - package io.openlineage.client.utils.jdbc
-
-io.openlineage.server - package io.openlineage.server
-
-isClosed() - Method in class io.openlineage.client.circuitBreaker.CircuitBreakerState
-
-isDefinedAt(String) - Method in class io.openlineage.client.utils.jdbc.DerbyJdbcExtractor
-
-isDefinedAt(String) - Method in class io.openlineage.client.utils.jdbc.GenericJdbcExtractor
-
-isDefinedAt(String) - Method in interface io.openlineage.client.utils.jdbc.JdbcExtractor
-
-isDefinedAt(String) - Method in class io.openlineage.client.utils.jdbc.MySqlJdbcExtractor
-
-isDefinedAt(String) - Method in class io.openlineage.client.utils.jdbc.OracleJdbcExtractor
-
-isDefinedAt(String) - Method in class io.openlineage.client.utils.jdbc.OverridingJdbcExtractor
-
-isDefinedAt(String) - Method in class io.openlineage.client.utils.jdbc.PostgresJdbcExtractor
-
-isDefinedAt(String) - Method in class io.openlineage.client.utils.jdbc.SqlServerJdbcExtractor
-
-isDefinedAt(String) - Method in class io.openlineage.client.utils.jdbc.TeradataJdbcExtractor
-
-isDefinedAt(URI) - Method in interface io.openlineage.client.utils.filesystem.FilesystemDatasetExtractor
-
-isDefinedAt(URI) - Method in class io.openlineage.client.utils.filesystem.GenericFilesystemDatasetExtractor
-
-isDefinedAt(URI) - Method in class io.openlineage.client.utils.filesystem.LocalFilesystemDatasetExtractor
-
-isDefinedAt(URI) - Method in class io.openlineage.client.utils.filesystem.ObjectStorageDatasetExtractor
-
-isDeleted() - Method in interface io.openlineage.client.OpenLineage.DatasetFacet
-
-isDeleted() - Method in interface io.openlineage.client.OpenLineage.JobFacet
-
-isPercentageValueValid(Integer) - Method in class io.openlineage.client.circuitBreaker.ExecutorCircuitBreaker
-
-
-J
-
-JavaRuntimeCircuitBreaker - Class in io.openlineage.client.circuitBreaker
-
-JavaRuntimeCircuitBreaker(JavaRuntimeCircuitBreakerConfig) - Constructor for class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreaker
-
-JavaRuntimeCircuitBreakerBuilder - Class in io.openlineage.client.circuitBreaker
-
-JavaRuntimeCircuitBreakerBuilder() - Constructor for class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerBuilder
-
-JavaRuntimeCircuitBreakerConfig - Class in io.openlineage.client.circuitBreaker
-
-JavaRuntimeCircuitBreakerConfig() - Constructor for class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-JavaRuntimeCircuitBreakerConfig(int, int) - Constructor for class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-JavaRuntimeCircuitBreakerConfig(int, int, int) - Constructor for class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-JavaRuntimeCircuitBreakerConfig(Integer, Integer, Integer, Integer) - Constructor for class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-JdbcDatasetUtils - Class in io.openlineage.client.utils.jdbc
-
-JdbcDatasetUtils() - Constructor for class io.openlineage.client.utils.jdbc.JdbcDatasetUtils
-
-JdbcExtractor - Interface in io.openlineage.client.utils.jdbc
-
-JdbcLocation - Class in io.openlineage.client.utils.jdbc
-
-JdbcLocation(String, Optional<String>, Optional<String>, Optional<String>) - Constructor for class io.openlineage.client.utils.jdbc.JdbcLocation
-
-job(OpenLineage.Job) - Method in class io.openlineage.client.OpenLineage.JobEventBuilder
-
-job(OpenLineage.Job) - Method in class io.openlineage.client.OpenLineage.RunEventBuilder
-
-job(OpenLineage.ParentRunFacetJob) - Method in class io.openlineage.client.OpenLineage.ParentRunFacetBuilder
-
-Job(String, String, OpenLineage.JobFacets) - Constructor for class io.openlineage.server.OpenLineage.Job
-
-JobBuilder() - Constructor for class io.openlineage.client.OpenLineage.JobBuilder
-
-JobEvent(ZonedDateTime, URI, URI, OpenLineage.Job, List<OpenLineage.InputDataset>, List<OpenLineage.OutputDataset>) - Constructor for class io.openlineage.server.OpenLineage.JobEvent
-
-JobEventBuilder() - Constructor for class io.openlineage.client.OpenLineage.JobEventBuilder
-
-JobFacet(URI, URI) - Constructor for class io.openlineage.server.OpenLineage.JobFacet
-
-JobFacets() - Constructor for class io.openlineage.server.OpenLineage.JobFacets
-
-JobFacetsBuilder() - Constructor for class io.openlineage.client.OpenLineage.JobFacetsBuilder
-
-jobType(OpenLineage.JobTypeJobFacet) - Method in class io.openlineage.client.OpenLineage.JobFacetsBuilder
-
-jobType(String) - Method in class io.openlineage.client.OpenLineage.JobTypeJobFacetBuilder
-
-JobTypeJobFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.JobTypeJobFacetBuilder
-
-
-K
-
-KafkaConfig - Class in io.openlineage.client.transports
-
-KafkaConfig(String, String, Properties) - Constructor for class io.openlineage.client.transports.KafkaConfig
-
-KafkaTransport - Class in io.openlineage.client.transports
-
-KafkaTransport(KafkaConfig) - Constructor for class io.openlineage.client.transports.KafkaTransport
-
-KafkaTransport(KafkaProducer<String, String>, KafkaConfig) - Constructor for class io.openlineage.client.transports.KafkaTransport
-
-KafkaTransportBuilder - Class in io.openlineage.client.transports
-
-KafkaTransportBuilder() - Constructor for class io.openlineage.client.transports.KafkaTransportBuilder
-
-KinesisConfig - Class in io.openlineage.client.transports
-
-KinesisConfig() - Constructor for class io.openlineage.client.transports.KinesisConfig
-
-KinesisConfig(String, String, String, Properties) - Constructor for class io.openlineage.client.transports.KinesisConfig
-
-KinesisTransport - Class in io.openlineage.client.transports
-
-KinesisTransport(KinesisProducer, KinesisConfig) - Constructor for class io.openlineage.client.transports.KinesisTransport
-
-KinesisTransport(KinesisConfig) - Constructor for class io.openlineage.client.transports.KinesisTransport
-
-KinesisTransportBuilder - Class in io.openlineage.client.transports
-
-KinesisTransportBuilder() - Constructor for class io.openlineage.client.transports.KinesisTransportBuilder
-
-
-L
-
-language(String) - Method in class io.openlineage.client.OpenLineage.SourceCodeJobFacetBuilder
-
-lifecycleStateChange(OpenLineage.LifecycleStateChangeDatasetFacet) - Method in class io.openlineage.client.OpenLineage.DatasetFacetsBuilder
-
-lifecycleStateChange(OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange) - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetBuilder
-
-LifecycleStateChangeDatasetFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetBuilder
-
-LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder() - Constructor for class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder
-
-loadDatasetNamespaceResolverConfigByType(String) - Static method in class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverLoader
-
-loadDatasetNamespaceResolvers(DatasetConfig) - Static method in class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverLoader
-
-loadDatasetNamespaceResolverTypeByConfigClass(Class) - Static method in class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverLoader
-
-loadOpenLineageConfigJson(InputStream, TypeReference<T>) - Static method in class io.openlineage.client.OpenLineageClientUtils
-
-Loads and parses OpenLineage JSON configuration from an
InputStream
.
-
-loadOpenLineageConfigYaml(ConfigPathProvider, TypeReference<T>) - Static method in class io.openlineage.client.OpenLineageClientUtils
-
-Loads and parses OpenLineage configuration from the provided paths.
-
-loadOpenLineageConfigYaml(InputStream, TypeReference<T>) - Static method in class io.openlineage.client.OpenLineageClientUtils
-
-Loads and parses OpenLineage YAML configuration from an
InputStream
.
-
-LocalFilesystemDatasetExtractor - Class in io.openlineage.client.utils.filesystem
-
-LocalFilesystemDatasetExtractor() - Constructor for class io.openlineage.client.utils.filesystem.LocalFilesystemDatasetExtractor
-
-
-M
-
-masking(Boolean) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder
-
-max(Double) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder
-
-maxMemory() - Static method in class io.openlineage.client.utils.RuntimeUtils
-
-MergeConfig <T > - Interface in io.openlineage.client
-
-Contains methods to merge different config classes.
-
-mergeFacets(Map<String, F>, T, Class<T>) - Static method in class io.openlineage.client.OpenLineageClientUtils
-
-Merges the given facets map with an existing facets container, giving precedence to the values
- in the facets map.
-
-mergePropertyWith(Map, Map) - Method in interface io.openlineage.client.MergeConfig
-
-Creates union of maps.
-
-mergePropertyWith(Map, Map) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-mergePropertyWith(T, T) - Method in interface io.openlineage.client.MergeConfig
-
-Checks for nulls to avoid NPE.
-
-mergePropertyWith(T, T) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-mergeWith(HttpConfig) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-mergeWith(T) - Method in interface io.openlineage.client.MergeConfig
-
-Merges current instance with instance provided.
-
-mergeWithDefaultValue(T, T, T) - Method in interface io.openlineage.client.MergeConfig
-
-Overwrites base value with overwrite value only when it is does not equal default
-
-mergeWithDefaultValue(T, T, T) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-mergeWithNonNull(JavaRuntimeCircuitBreakerConfig) - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-mergeWithNonNull(SimpleMemoryCircuitBreakerConfig) - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-mergeWithNonNull(DatasetConfig) - Method in class io.openlineage.client.dataset.DatasetConfig
-
-mergeWithNonNull(HostListNamespaceResolverConfig) - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig
-
-mergeWithNonNull(PatternMatchingGroupNamespaceResolverConfig) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-mergeWithNonNull(PatternNamespaceResolverConfig) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig
-
-mergeWithNonNull(OpenLineageConfig) - Method in class io.openlineage.client.OpenLineageConfig
-
-Overwrites existing object with properties of other config entries whenever they're present.
-
-mergeWithNonNull(FacetsConfig) - Method in class io.openlineage.client.transports.FacetsConfig
-
-mergeWithNonNull(HttpConfig) - Method in class io.openlineage.client.transports.HttpConfig
-
-mergeWithNonNull(HttpConfig) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-mergeWithNonNull(KafkaConfig) - Method in class io.openlineage.client.transports.KafkaConfig
-
-mergeWithNonNull(KinesisConfig) - Method in class io.openlineage.client.transports.KinesisConfig
-
-mergeWithNonNull(T) - Method in interface io.openlineage.client.MergeConfig
-
-Method to create new config class based on current instance and non-null argument value.
-
-message(String) - Method in class io.openlineage.client.OpenLineage.ErrorMessageRunFacetBuilder
-
-meterRegistry(MeterRegistry) - Method in class io.openlineage.client.OpenLineageClient.Builder
-
-MeterRegistryFactory <T extends io.micrometer.core.instrument.MeterRegistry> - Interface in io.openlineage.client.metrics
-
-MeterRegistryFactory is an interface that defines methods to build different types of meter
- registries from OpenLineage config.
-
-metricsConfig - Variable in class io.openlineage.client.OpenLineageConfig
-
-MicrometerProvider - Class in io.openlineage.client.metrics
-
-MicrometerProvider is a class that manages global OpenLineage meter registry implementation that
- allows integrations to both add metrics backend from common OpenLineage config, or grab an
- instance of an initialized MeterRegistry.
-
-MicrometerProvider() - Constructor for class io.openlineage.client.metrics.MicrometerProvider
-
-min(Double) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder
-
-MySqlJdbcExtractor - Class in io.openlineage.client.utils.jdbc
-
-MySqlJdbcExtractor() - Constructor for class io.openlineage.client.utils.jdbc.MySqlJdbcExtractor
-
-
-N
-
-name(String) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.DatasourceDatasetFacetBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacetOriginBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.InputDatasetBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.JobBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.OutputDatasetBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacetOwnersBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacetOwnersBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.ParentRunFacetJobBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.ProcessingEngineRunFacetBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacetFieldsBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.StaticDatasetBuilder
-
-name(String) - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacetIdentifiersBuilder
-
-namespace(String) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder
-
-namespace(String) - Method in class io.openlineage.client.OpenLineage.InputDatasetBuilder
-
-namespace(String) - Method in class io.openlineage.client.OpenLineage.JobBuilder
-
-namespace(String) - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder
-
-namespace(String) - Method in class io.openlineage.client.OpenLineage.OutputDatasetBuilder
-
-namespace(String) - Method in class io.openlineage.client.OpenLineage.ParentRunFacetJobBuilder
-
-namespace(String) - Method in class io.openlineage.client.OpenLineage.StaticDatasetBuilder
-
-namespace(String) - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacetIdentifiersBuilder
-
-newClient() - Static method in class io.openlineage.client.Clients
-
-newClient(ConfigPathProvider) - Static method in class io.openlineage.client.Clients
-
-newClient(OpenLineageConfig) - Static method in class io.openlineage.client.Clients
-
-newColumnLineageDatasetFacet(OpenLineage.ColumnLineageDatasetFacetFields) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ColumnLineageDatasetFacet
-
-newColumnLineageDatasetFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ColumnLineageDatasetFacet
-
-newColumnLineageDatasetFacetFields() - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ColumnLineageDatasetFacetFields
-
-newColumnLineageDatasetFacetFieldsAdditional(List<OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields>, String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ColumnLineageDatasetFacetFieldsAdditional
-
-newColumnLineageDatasetFacetFieldsAdditionalBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ColumnLineageDatasetFacetFieldsAdditional
-
-newColumnLineageDatasetFacetFieldsAdditionalInputFields(String, String, String, List<OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations>) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-newColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-newColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations(String, String, String, Boolean) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-newColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-newColumnLineageDatasetFacetFieldsBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ColumnLineageDatasetFacetFields
-
-newDataQualityAssertionsDatasetFacet(List<OpenLineage.DataQualityAssertionsDatasetFacetAssertions>) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for DataQualityAssertionsDatasetFacet
-
-newDataQualityAssertionsDatasetFacetAssertions(String, Boolean, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for DataQualityAssertionsDatasetFacetAssertions
-
-newDataQualityAssertionsDatasetFacetAssertionsBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for DataQualityAssertionsDatasetFacetAssertions
-
-newDataQualityAssertionsDatasetFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for DataQualityAssertionsDatasetFacet
-
-newDataQualityMetricsInputDatasetFacet(Long, Long, Long, OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for DataQualityMetricsInputDatasetFacet
-
-newDataQualityMetricsInputDatasetFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for DataQualityMetricsInputDatasetFacet
-
-newDataQualityMetricsInputDatasetFacetColumnMetrics() - Method in class io.openlineage.client.OpenLineage
-
-Factory method for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-newDataQualityMetricsInputDatasetFacetColumnMetricsAdditional(Long, Long, Double, Double, Double, Double, OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-newDataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-newDataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles() - Method in class io.openlineage.client.OpenLineage
-
-Factory method for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-newDataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-newDataQualityMetricsInputDatasetFacetColumnMetricsBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-newDatasetEvent(ZonedDateTime, OpenLineage.StaticDataset) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for DatasetEvent
-
-newDatasetEventBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for DatasetEvent
-
-newDatasetFacet() - Method in class io.openlineage.client.OpenLineage
-
-newDatasetFacets(OpenLineage.DocumentationDatasetFacet, OpenLineage.DatasourceDatasetFacet, OpenLineage.DatasetVersionDatasetFacet, OpenLineage.SchemaDatasetFacet, OpenLineage.OwnershipDatasetFacet, OpenLineage.StorageDatasetFacet, OpenLineage.ColumnLineageDatasetFacet, OpenLineage.SymlinksDatasetFacet, OpenLineage.LifecycleStateChangeDatasetFacet) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for DatasetFacets
-
-newDatasetFacetsBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for DatasetFacets
-
-newDatasetVersionDatasetFacet(String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for DatasetVersionDatasetFacet
-
-newDatasetVersionDatasetFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for DatasetVersionDatasetFacet
-
-newDatasourceDatasetFacet(String, URI) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for DatasourceDatasetFacet
-
-newDatasourceDatasetFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for DatasourceDatasetFacet
-
-newDeletedDatasetFacet() - Method in class io.openlineage.client.OpenLineage
-
-newDeletedJobFacet() - Method in class io.openlineage.client.OpenLineage
-
-newDocumentationDatasetFacet(String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for DocumentationDatasetFacet
-
-newDocumentationDatasetFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for DocumentationDatasetFacet
-
-newDocumentationJobFacet(String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for DocumentationJobFacet
-
-newDocumentationJobFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for DocumentationJobFacet
-
-newErrorMessageRunFacet(String, String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ErrorMessageRunFacet
-
-newErrorMessageRunFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ErrorMessageRunFacet
-
-newExternalQueryRunFacet(String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ExternalQueryRunFacet
-
-newExternalQueryRunFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ExternalQueryRunFacet
-
-newExtractionErrorRunFacet(Long, Long, List<OpenLineage.ExtractionErrorRunFacetErrors>) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ExtractionErrorRunFacet
-
-newExtractionErrorRunFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ExtractionErrorRunFacet
-
-newExtractionErrorRunFacetErrors(String, String, String, Long) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ExtractionErrorRunFacetErrors
-
-newExtractionErrorRunFacetErrorsBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ExtractionErrorRunFacetErrors
-
-newGcpCommonJobFacet(String, OpenLineage.GcpCommonJobFacetOrigin) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for GcpCommonJobFacet
-
-newGcpCommonJobFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for GcpCommonJobFacet
-
-newGcpCommonJobFacetOrigin(String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for GcpCommonJobFacetOrigin
-
-newGcpCommonJobFacetOriginBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for GcpCommonJobFacetOrigin
-
-newInputDataset(String, String, OpenLineage.DatasetFacets, OpenLineage.InputDatasetInputFacets) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for InputDataset
-
-newInputDatasetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for InputDataset
-
-newInputDatasetFacet() - Method in class io.openlineage.client.OpenLineage
-
-newInputDatasetInputFacets(OpenLineage.DataQualityAssertionsDatasetFacet, OpenLineage.DataQualityMetricsInputDatasetFacet) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for InputDatasetInputFacets
-
-newInputDatasetInputFacetsBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for InputDatasetInputFacets
-
-newJob(String, String, OpenLineage.JobFacets) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for Job
-
-newJobBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for Job
-
-newJobEvent(ZonedDateTime, OpenLineage.Job, List<OpenLineage.InputDataset>, List<OpenLineage.OutputDataset>) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for JobEvent
-
-newJobEventBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for JobEvent
-
-newJobFacet() - Method in class io.openlineage.client.OpenLineage
-
-newJobFacets(OpenLineage.JobTypeJobFacet, OpenLineage.GcpCommonJobFacet, OpenLineage.SourceCodeJobFacet, OpenLineage.OwnershipJobFacet, OpenLineage.SQLJobFacet, OpenLineage.SourceCodeLocationJobFacet, OpenLineage.DocumentationJobFacet) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for JobFacets
-
-newJobFacetsBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for JobFacets
-
-newJobTypeJobFacet(String, String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for JobTypeJobFacet
-
-newJobTypeJobFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for JobTypeJobFacet
-
-newLifecycleStateChangeDatasetFacet(OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange, OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for LifecycleStateChangeDatasetFacet
-
-newLifecycleStateChangeDatasetFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for LifecycleStateChangeDatasetFacet
-
-newLifecycleStateChangeDatasetFacetPreviousIdentifier(String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-newLifecycleStateChangeDatasetFacetPreviousIdentifierBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-newNominalTimeRunFacet(ZonedDateTime, ZonedDateTime) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for NominalTimeRunFacet
-
-newNominalTimeRunFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for NominalTimeRunFacet
-
-newObjectMapper() - Static method in class io.openlineage.client.OpenLineageClientUtils
-
-Creates a new ObjectMapper
instance configured with modules for JDK8 and JavaTime,
- including settings to ignore unknown properties and to not write dates as timestamps.
-
-newObjectMapper(JsonFactory) - Static method in class io.openlineage.client.OpenLineageClientUtils
-
-Creates a new ObjectMapper
instance configured with modules for JDK8 and JavaTime,
- including settings to ignore unknown properties and to not write dates as timestamps.
-
-newOutputDataset(String, String, OpenLineage.DatasetFacets, OpenLineage.OutputDatasetOutputFacets) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for OutputDataset
-
-newOutputDatasetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for OutputDataset
-
-newOutputDatasetFacet() - Method in class io.openlineage.client.OpenLineage
-
-newOutputDatasetOutputFacets(OpenLineage.OutputStatisticsOutputDatasetFacet) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for OutputDatasetOutputFacets
-
-newOutputDatasetOutputFacetsBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for OutputDatasetOutputFacets
-
-newOutputStatisticsOutputDatasetFacet(Long, Long, Long) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for OutputStatisticsOutputDatasetFacet
-
-newOutputStatisticsOutputDatasetFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for OutputStatisticsOutputDatasetFacet
-
-newOwnershipDatasetFacet(List<OpenLineage.OwnershipDatasetFacetOwners>) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for OwnershipDatasetFacet
-
-newOwnershipDatasetFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for OwnershipDatasetFacet
-
-newOwnershipDatasetFacetOwners(String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for OwnershipDatasetFacetOwners
-
-newOwnershipDatasetFacetOwnersBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for OwnershipDatasetFacetOwners
-
-newOwnershipJobFacet(List<OpenLineage.OwnershipJobFacetOwners>) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for OwnershipJobFacet
-
-newOwnershipJobFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for OwnershipJobFacet
-
-newOwnershipJobFacetOwners(String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for OwnershipJobFacetOwners
-
-newOwnershipJobFacetOwnersBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for OwnershipJobFacetOwners
-
-newParentRunFacet(OpenLineage.ParentRunFacetRun, OpenLineage.ParentRunFacetJob) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ParentRunFacet
-
-newParentRunFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ParentRunFacet
-
-newParentRunFacetJob(String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ParentRunFacetJob
-
-newParentRunFacetJobBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ParentRunFacetJob
-
-newParentRunFacetRun(UUID) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ParentRunFacetRun
-
-newParentRunFacetRunBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ParentRunFacetRun
-
-newProcessingEngineRunFacet(String, String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for ProcessingEngineRunFacet
-
-newProcessingEngineRunFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for ProcessingEngineRunFacet
-
-newRun(UUID, OpenLineage.RunFacets) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for Run
-
-newRunBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for Run
-
-newRunEvent(ZonedDateTime, OpenLineage.RunEvent.EventType, OpenLineage.Run, OpenLineage.Job, List<OpenLineage.InputDataset>, List<OpenLineage.OutputDataset>) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for RunEvent
-
-newRunEventBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for RunEvent
-
-newRunFacet() - Method in class io.openlineage.client.OpenLineage
-
-newRunFacets(OpenLineage.ErrorMessageRunFacet, OpenLineage.ExternalQueryRunFacet, OpenLineage.ExtractionErrorRunFacet, OpenLineage.ParentRunFacet, OpenLineage.NominalTimeRunFacet, OpenLineage.ProcessingEngineRunFacet) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for RunFacets
-
-newRunFacetsBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for RunFacets
-
-newSchemaDatasetFacet(List<OpenLineage.SchemaDatasetFacetFields>) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for SchemaDatasetFacet
-
-newSchemaDatasetFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for SchemaDatasetFacet
-
-newSchemaDatasetFacetFields(String, String, String, List<OpenLineage.SchemaDatasetFacetFields>) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for SchemaDatasetFacetFields
-
-newSchemaDatasetFacetFieldsBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for SchemaDatasetFacetFields
-
-newSourceCodeJobFacet(String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for SourceCodeJobFacet
-
-newSourceCodeJobFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for SourceCodeJobFacet
-
-newSourceCodeLocationJobFacet(String, URI, String, String, String, String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for SourceCodeLocationJobFacet
-
-newSourceCodeLocationJobFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for SourceCodeLocationJobFacet
-
-newSQLJobFacet(String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for SQLJobFacet
-
-newSQLJobFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for SQLJobFacet
-
-newStaticDataset(String, String, OpenLineage.DatasetFacets) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for StaticDataset
-
-newStaticDatasetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for StaticDataset
-
-newStorageDatasetFacet(String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for StorageDatasetFacet
-
-newStorageDatasetFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for StorageDatasetFacet
-
-newSymlinksDatasetFacet(List<OpenLineage.SymlinksDatasetFacetIdentifiers>) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for SymlinksDatasetFacet
-
-newSymlinksDatasetFacetBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for SymlinksDatasetFacet
-
-newSymlinksDatasetFacetIdentifiers(String, String, String) - Method in class io.openlineage.client.OpenLineage
-
-Factory method for SymlinksDatasetFacetIdentifiers
-
-newSymlinksDatasetFacetIdentifiersBuilder() - Method in class io.openlineage.client.OpenLineage
-
-Creates a builder for SymlinksDatasetFacetIdentifiers
-
-nominalEndTime(ZonedDateTime) - Method in class io.openlineage.client.OpenLineage.NominalTimeRunFacetBuilder
-
-nominalStartTime(ZonedDateTime) - Method in class io.openlineage.client.OpenLineage.NominalTimeRunFacetBuilder
-
-nominalTime(OpenLineage.NominalTimeRunFacet) - Method in class io.openlineage.client.OpenLineage.RunFacetsBuilder
-
-NominalTimeRunFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.NominalTimeRunFacetBuilder
-
-NoOpCircuitBreaker - Class in io.openlineage.client.circuitBreaker
-
-Non-closing circuit breaker which always runs callable.
-
-NoOpCircuitBreaker() - Constructor for class io.openlineage.client.circuitBreaker.NoOpCircuitBreaker
-
-NoOpCircuitBreakerBuilder - Class in io.openlineage.client.circuitBreaker
-
-NoOpCircuitBreakerBuilder() - Constructor for class io.openlineage.client.circuitBreaker.NoOpCircuitBreakerBuilder
-
-NoopTransport - Class in io.openlineage.client.transports
-
-NoopTransport() - Constructor for class io.openlineage.client.transports.NoopTransport
-
-nullCount(Long) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder
-
-
-O
-
-ObjectStorageDatasetExtractor - Class in io.openlineage.client.utils.filesystem
-
-ObjectStorageDatasetExtractor(String) - Constructor for class io.openlineage.client.utils.filesystem.ObjectStorageDatasetExtractor
-
-onOtherProperty(String, Object) - Method in class io.openlineage.client.transports.FacetsConfig
-
-This method accepts every other property we may receive in configuration.
-
-OpenLineage - Class in io.openlineage.client
-
-Usage:
-
-OpenLineage - Class in io.openlineage.server
-
-OpenLineage() - Constructor for class io.openlineage.server.OpenLineage
-
-OpenLineage(URI) - Constructor for class io.openlineage.client.OpenLineage
-
-Starting point to create OpenLineage objects.
-
-OpenLineage.BaseEvent - Interface in io.openlineage.client
-
-Interface for BaseEvent
-
-OpenLineage.BaseEvent - Interface in io.openlineage.server
-
-Interface for BaseEvent
-
-OpenLineage.BaseFacet - Interface in io.openlineage.client
-
-Interface for BaseFacet
-
-OpenLineage.BaseFacet - Interface in io.openlineage.server
-
-Interface for BaseFacet
-
-OpenLineage.Builder <T > - Interface in io.openlineage.client
-
-OpenLineage.Builder <T > - Interface in io.openlineage.server
-
-OpenLineage.ColumnLineageDatasetFacet - Class in io.openlineage.client
-
-model class for ColumnLineageDatasetFacet
-
-OpenLineage.ColumnLineageDatasetFacetBuilder - Class in io.openlineage.client
-
-builder class for ColumnLineageDatasetFacet
-
-OpenLineage.ColumnLineageDatasetFacetFields - Class in io.openlineage.client
-
-model class for ColumnLineageDatasetFacetFields
-
-OpenLineage.ColumnLineageDatasetFacetFieldsAdditional - Class in io.openlineage.client
-
-model class for ColumnLineageDatasetFacetFieldsAdditional
-
-OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder - Class in io.openlineage.client
-
-builder class for ColumnLineageDatasetFacetFieldsAdditional
-
-OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields - Class in io.openlineage.client
-
-model class for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder - Class in io.openlineage.client
-
-builder class for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations - Class in io.openlineage.client
-
-model class for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder - Class in io.openlineage.client
-
-builder class for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-OpenLineage.ColumnLineageDatasetFacetFieldsBuilder - Class in io.openlineage.client
-
-builder class for ColumnLineageDatasetFacetFields
-
-OpenLineage.DataQualityAssertionsDatasetFacet - Class in io.openlineage.client
-
-model class for DataQualityAssertionsDatasetFacet
-
-OpenLineage.DataQualityAssertionsDatasetFacetAssertions - Class in io.openlineage.client
-
-model class for DataQualityAssertionsDatasetFacetAssertions
-
-OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder - Class in io.openlineage.client
-
-builder class for DataQualityAssertionsDatasetFacetAssertions
-
-OpenLineage.DataQualityAssertionsDatasetFacetBuilder - Class in io.openlineage.client
-
-builder class for DataQualityAssertionsDatasetFacet
-
-OpenLineage.DataQualityMetricsInputDatasetFacet - Class in io.openlineage.client
-
-model class for DataQualityMetricsInputDatasetFacet
-
-OpenLineage.DataQualityMetricsInputDatasetFacetBuilder - Class in io.openlineage.client
-
-builder class for DataQualityMetricsInputDatasetFacet
-
-OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics - Class in io.openlineage.client
-
-model class for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional - Class in io.openlineage.client
-
-model class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder - Class in io.openlineage.client
-
-builder class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles - Class in io.openlineage.client
-
-model class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder - Class in io.openlineage.client
-
-builder class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder - Class in io.openlineage.client
-
-builder class for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-OpenLineage.Dataset - Interface in io.openlineage.client
-
-Interface for Dataset
-
-OpenLineage.Dataset - Interface in io.openlineage.server
-
-Interface for Dataset
-
-OpenLineage.DatasetEvent - Class in io.openlineage.client
-
-model class for DatasetEvent
-
-OpenLineage.DatasetEvent - Class in io.openlineage.server
-
-model class for DatasetEvent
-
-OpenLineage.DatasetEventBuilder - Class in io.openlineage.client
-
-builder class for DatasetEvent
-
-OpenLineage.DatasetFacet - Class in io.openlineage.server
-
-model class for DatasetFacet
-
-OpenLineage.DatasetFacet - Interface in io.openlineage.client
-
-Interface for DatasetFacet
-
-OpenLineage.DatasetFacets - Class in io.openlineage.client
-
-model class for DatasetFacets
-
-OpenLineage.DatasetFacets - Class in io.openlineage.server
-
-model class for DatasetFacets
-
-OpenLineage.DatasetFacetsBuilder - Class in io.openlineage.client
-
-builder class for DatasetFacets
-
-OpenLineage.DatasetVersionDatasetFacet - Class in io.openlineage.client
-
-model class for DatasetVersionDatasetFacet
-
-OpenLineage.DatasetVersionDatasetFacetBuilder - Class in io.openlineage.client
-
-builder class for DatasetVersionDatasetFacet
-
-OpenLineage.DatasourceDatasetFacet - Class in io.openlineage.client
-
-model class for DatasourceDatasetFacet
-
-OpenLineage.DatasourceDatasetFacetBuilder - Class in io.openlineage.client
-
-builder class for DatasourceDatasetFacet
-
-OpenLineage.DefaultDatasetFacet - Class in io.openlineage.client
-
-OpenLineage.DefaultInputDatasetFacet - Class in io.openlineage.client
-
-OpenLineage.DefaultJobFacet - Class in io.openlineage.client
-
-OpenLineage.DefaultOutputDatasetFacet - Class in io.openlineage.client
-
-OpenLineage.DefaultRunFacet - Class in io.openlineage.client
-
-OpenLineage.DocumentationDatasetFacet - Class in io.openlineage.client
-
-model class for DocumentationDatasetFacet
-
-OpenLineage.DocumentationDatasetFacetBuilder - Class in io.openlineage.client
-
-builder class for DocumentationDatasetFacet
-
-OpenLineage.DocumentationJobFacet - Class in io.openlineage.client
-
-model class for DocumentationJobFacet
-
-OpenLineage.DocumentationJobFacetBuilder - Class in io.openlineage.client
-
-builder class for DocumentationJobFacet
-
-OpenLineage.ErrorMessageRunFacet - Class in io.openlineage.client
-
-model class for ErrorMessageRunFacet
-
-OpenLineage.ErrorMessageRunFacetBuilder - Class in io.openlineage.client
-
-builder class for ErrorMessageRunFacet
-
-OpenLineage.ExternalQueryRunFacet - Class in io.openlineage.client
-
-model class for ExternalQueryRunFacet
-
-OpenLineage.ExternalQueryRunFacetBuilder - Class in io.openlineage.client
-
-builder class for ExternalQueryRunFacet
-
-OpenLineage.ExtractionErrorRunFacet - Class in io.openlineage.client
-
-model class for ExtractionErrorRunFacet
-
-OpenLineage.ExtractionErrorRunFacetBuilder - Class in io.openlineage.client
-
-builder class for ExtractionErrorRunFacet
-
-OpenLineage.ExtractionErrorRunFacetErrors - Class in io.openlineage.client
-
-model class for ExtractionErrorRunFacetErrors
-
-OpenLineage.ExtractionErrorRunFacetErrorsBuilder - Class in io.openlineage.client
-
-builder class for ExtractionErrorRunFacetErrors
-
-OpenLineage.GcpCommonJobFacet - Class in io.openlineage.client
-
-model class for GcpCommonJobFacet
-
-OpenLineage.GcpCommonJobFacetBuilder - Class in io.openlineage.client
-
-builder class for GcpCommonJobFacet
-
-OpenLineage.GcpCommonJobFacetOrigin - Class in io.openlineage.client
-
-model class for GcpCommonJobFacetOrigin
-
-OpenLineage.GcpCommonJobFacetOriginBuilder - Class in io.openlineage.client
-
-builder class for GcpCommonJobFacetOrigin
-
-OpenLineage.InputDataset - Class in io.openlineage.client
-
-model class for InputDataset
-
-OpenLineage.InputDataset - Class in io.openlineage.server
-
-model class for InputDataset
-
-OpenLineage.InputDatasetBuilder - Class in io.openlineage.client
-
-builder class for InputDataset
-
-OpenLineage.InputDatasetFacet - Class in io.openlineage.server
-
-model class for InputDatasetFacet
-
-OpenLineage.InputDatasetFacet - Interface in io.openlineage.client
-
-Interface for InputDatasetFacet
-
-OpenLineage.InputDatasetInputFacets - Class in io.openlineage.client
-
-model class for InputDatasetInputFacets
-
-OpenLineage.InputDatasetInputFacets - Class in io.openlineage.server
-
-model class for InputDatasetInputFacets
-
-OpenLineage.InputDatasetInputFacetsBuilder - Class in io.openlineage.client
-
-builder class for InputDatasetInputFacets
-
-OpenLineage.Job - Class in io.openlineage.client
-
-model class for Job
-
-OpenLineage.Job - Class in io.openlineage.server
-
-model class for Job
-
-OpenLineage.JobBuilder - Class in io.openlineage.client
-
-builder class for Job
-
-OpenLineage.JobEvent - Class in io.openlineage.client
-
-model class for JobEvent
-
-OpenLineage.JobEvent - Class in io.openlineage.server
-
-model class for JobEvent
-
-OpenLineage.JobEventBuilder - Class in io.openlineage.client
-
-builder class for JobEvent
-
-OpenLineage.JobFacet - Class in io.openlineage.server
-
-model class for JobFacet
-
-OpenLineage.JobFacet - Interface in io.openlineage.client
-
-Interface for JobFacet
-
-OpenLineage.JobFacets - Class in io.openlineage.client
-
-model class for JobFacets
-
-OpenLineage.JobFacets - Class in io.openlineage.server
-
-model class for JobFacets
-
-OpenLineage.JobFacetsBuilder - Class in io.openlineage.client
-
-builder class for JobFacets
-
-OpenLineage.JobTypeJobFacet - Class in io.openlineage.client
-
-model class for JobTypeJobFacet
-
-OpenLineage.JobTypeJobFacetBuilder - Class in io.openlineage.client
-
-builder class for JobTypeJobFacet
-
-OpenLineage.LifecycleStateChangeDatasetFacet - Class in io.openlineage.client
-
-model class for LifecycleStateChangeDatasetFacet
-
-OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange - Enum Class in io.openlineage.client
-
-OpenLineage.LifecycleStateChangeDatasetFacetBuilder - Class in io.openlineage.client
-
-builder class for LifecycleStateChangeDatasetFacet
-
-OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier - Class in io.openlineage.client
-
-model class for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder - Class in io.openlineage.client
-
-builder class for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-OpenLineage.NominalTimeRunFacet - Class in io.openlineage.client
-
-model class for NominalTimeRunFacet
-
-OpenLineage.NominalTimeRunFacetBuilder - Class in io.openlineage.client
-
-builder class for NominalTimeRunFacet
-
-OpenLineage.OutputDataset - Class in io.openlineage.client
-
-model class for OutputDataset
-
-OpenLineage.OutputDataset - Class in io.openlineage.server
-
-model class for OutputDataset
-
-OpenLineage.OutputDatasetBuilder - Class in io.openlineage.client
-
-builder class for OutputDataset
-
-OpenLineage.OutputDatasetFacet - Class in io.openlineage.server
-
-model class for OutputDatasetFacet
-
-OpenLineage.OutputDatasetFacet - Interface in io.openlineage.client
-
-Interface for OutputDatasetFacet
-
-OpenLineage.OutputDatasetOutputFacets - Class in io.openlineage.client
-
-model class for OutputDatasetOutputFacets
-
-OpenLineage.OutputDatasetOutputFacets - Class in io.openlineage.server
-
-model class for OutputDatasetOutputFacets
-
-OpenLineage.OutputDatasetOutputFacetsBuilder - Class in io.openlineage.client
-
-builder class for OutputDatasetOutputFacets
-
-OpenLineage.OutputStatisticsOutputDatasetFacet - Class in io.openlineage.client
-
-model class for OutputStatisticsOutputDatasetFacet
-
-OpenLineage.OutputStatisticsOutputDatasetFacetBuilder - Class in io.openlineage.client
-
-builder class for OutputStatisticsOutputDatasetFacet
-
-OpenLineage.OwnershipDatasetFacet - Class in io.openlineage.client
-
-model class for OwnershipDatasetFacet
-
-OpenLineage.OwnershipDatasetFacetBuilder - Class in io.openlineage.client
-
-builder class for OwnershipDatasetFacet
-
-OpenLineage.OwnershipDatasetFacetOwners - Class in io.openlineage.client
-
-model class for OwnershipDatasetFacetOwners
-
-OpenLineage.OwnershipDatasetFacetOwnersBuilder - Class in io.openlineage.client
-
-builder class for OwnershipDatasetFacetOwners
-
-OpenLineage.OwnershipJobFacet - Class in io.openlineage.client
-
-model class for OwnershipJobFacet
-
-OpenLineage.OwnershipJobFacetBuilder - Class in io.openlineage.client
-
-builder class for OwnershipJobFacet
-
-OpenLineage.OwnershipJobFacetOwners - Class in io.openlineage.client
-
-model class for OwnershipJobFacetOwners
-
-OpenLineage.OwnershipJobFacetOwnersBuilder - Class in io.openlineage.client
-
-builder class for OwnershipJobFacetOwners
-
-OpenLineage.ParentRunFacet - Class in io.openlineage.client
-
-model class for ParentRunFacet
-
-OpenLineage.ParentRunFacetBuilder - Class in io.openlineage.client
-
-builder class for ParentRunFacet
-
-OpenLineage.ParentRunFacetJob - Class in io.openlineage.client
-
-model class for ParentRunFacetJob
-
-OpenLineage.ParentRunFacetJobBuilder - Class in io.openlineage.client
-
-builder class for ParentRunFacetJob
-
-OpenLineage.ParentRunFacetRun - Class in io.openlineage.client
-
-model class for ParentRunFacetRun
-
-OpenLineage.ParentRunFacetRunBuilder - Class in io.openlineage.client
-
-builder class for ParentRunFacetRun
-
-OpenLineage.ProcessingEngineRunFacet - Class in io.openlineage.client
-
-model class for ProcessingEngineRunFacet
-
-OpenLineage.ProcessingEngineRunFacetBuilder - Class in io.openlineage.client
-
-builder class for ProcessingEngineRunFacet
-
-OpenLineage.Run - Class in io.openlineage.client
-
-model class for Run
-
-OpenLineage.Run - Class in io.openlineage.server
-
-model class for Run
-
-OpenLineage.RunBuilder - Class in io.openlineage.client
-
-builder class for Run
-
-OpenLineage.RunEvent - Class in io.openlineage.client
-
-model class for RunEvent
-
-OpenLineage.RunEvent - Class in io.openlineage.server
-
-model class for RunEvent
-
-OpenLineage.RunEvent.EventType - Enum Class in io.openlineage.client
-
-OpenLineage.RunEvent.EventType - Enum Class in io.openlineage.server
-
-OpenLineage.RunEventBuilder - Class in io.openlineage.client
-
-builder class for RunEvent
-
-OpenLineage.RunFacet - Class in io.openlineage.server
-
-model class for RunFacet
-
-OpenLineage.RunFacet - Interface in io.openlineage.client
-
-Interface for RunFacet
-
-OpenLineage.RunFacets - Class in io.openlineage.client
-
-model class for RunFacets
-
-OpenLineage.RunFacets - Class in io.openlineage.server
-
-model class for RunFacets
-
-OpenLineage.RunFacetsBuilder - Class in io.openlineage.client
-
-builder class for RunFacets
-
-OpenLineage.SchemaDatasetFacet - Class in io.openlineage.client
-
-model class for SchemaDatasetFacet
-
-OpenLineage.SchemaDatasetFacetBuilder - Class in io.openlineage.client
-
-builder class for SchemaDatasetFacet
-
-OpenLineage.SchemaDatasetFacetFields - Class in io.openlineage.client
-
-model class for SchemaDatasetFacetFields
-
-OpenLineage.SchemaDatasetFacetFieldsBuilder - Class in io.openlineage.client
-
-builder class for SchemaDatasetFacetFields
-
-OpenLineage.SourceCodeJobFacet - Class in io.openlineage.client
-
-model class for SourceCodeJobFacet
-
-OpenLineage.SourceCodeJobFacetBuilder - Class in io.openlineage.client
-
-builder class for SourceCodeJobFacet
-
-OpenLineage.SourceCodeLocationJobFacet - Class in io.openlineage.client
-
-model class for SourceCodeLocationJobFacet
-
-OpenLineage.SourceCodeLocationJobFacetBuilder - Class in io.openlineage.client
-
-builder class for SourceCodeLocationJobFacet
-
-OpenLineage.SQLJobFacet - Class in io.openlineage.client
-
-model class for SQLJobFacet
-
-OpenLineage.SQLJobFacetBuilder - Class in io.openlineage.client
-
-builder class for SQLJobFacet
-
-OpenLineage.StaticDataset - Class in io.openlineage.client
-
-model class for StaticDataset
-
-OpenLineage.StaticDataset - Class in io.openlineage.server
-
-model class for StaticDataset
-
-OpenLineage.StaticDatasetBuilder - Class in io.openlineage.client
-
-builder class for StaticDataset
-
-OpenLineage.StorageDatasetFacet - Class in io.openlineage.client
-
-model class for StorageDatasetFacet
-
-OpenLineage.StorageDatasetFacetBuilder - Class in io.openlineage.client
-
-builder class for StorageDatasetFacet
-
-OpenLineage.SymlinksDatasetFacet - Class in io.openlineage.client
-
-model class for SymlinksDatasetFacet
-
-OpenLineage.SymlinksDatasetFacetBuilder - Class in io.openlineage.client
-
-builder class for SymlinksDatasetFacet
-
-OpenLineage.SymlinksDatasetFacetIdentifiers - Class in io.openlineage.client
-
-model class for SymlinksDatasetFacetIdentifiers
-
-OpenLineage.SymlinksDatasetFacetIdentifiersBuilder - Class in io.openlineage.client
-
-builder class for SymlinksDatasetFacetIdentifiers
-
-openlineageAdapterVersion(String) - Method in class io.openlineage.client.OpenLineage.ProcessingEngineRunFacetBuilder
-
-OpenLineageClient - Class in io.openlineage.client
-
-
-
-OpenLineageClient() - Constructor for class io.openlineage.client.OpenLineageClient
-
-Creates a new OpenLineageClient
object.
-
-OpenLineageClient(Transport) - Constructor for class io.openlineage.client.OpenLineageClient
-
-OpenLineageClient(Transport, CircuitBreaker, MeterRegistry, String...) - Constructor for class io.openlineage.client.OpenLineageClient
-
-OpenLineageClient(Transport, String...) - Constructor for class io.openlineage.client.OpenLineageClient
-
-OpenLineageClient.Builder - Class in io.openlineage.client
-
-
-
-OpenLineageClientException - Exception in io.openlineage.client
-
-An exception thrown to indicate a client error.
-
-OpenLineageClientException() - Constructor for exception io.openlineage.client.OpenLineageClientException
-
-OpenLineageClientException(String) - Constructor for exception io.openlineage.client.OpenLineageClientException
-
-Constructs a OpenLineageClientException
with the message message
.
-
-OpenLineageClientException(String, Throwable) - Constructor for exception io.openlineage.client.OpenLineageClientException
-
-Constructs a OpenLineageClientException
with the message message
and the cause
- cause
.
-
-OpenLineageClientException(Throwable) - Constructor for exception io.openlineage.client.OpenLineageClientException
-
-Constructs a OpenLineageClientException
with the cause cause
.
-
-OpenLineageClientUtils - Class in io.openlineage.client
-
-Utility class for
OpenLineageClient
that provides common functionalities for object
- mapping, JSON and YAML parsing, and URI manipulation.
-
-OpenLineageClientUtils.DisabledFacetsMixin - Class in io.openlineage.client
-
-OpenLineageConfig <T extends OpenLineageConfig > - Class in io.openlineage.client
-
-
-
-OpenLineageConfig() - Constructor for class io.openlineage.client.OpenLineageConfig
-
-OpenLineageConfig(TransportConfig, FacetsConfig, DatasetConfig, CircuitBreakerConfig, Map<String, Object>) - Constructor for class io.openlineage.client.OpenLineageConfig
-
-OracleJdbcExtractor - Class in io.openlineage.client.utils.jdbc
-
-OracleJdbcExtractor() - Constructor for class io.openlineage.client.utils.jdbc.OracleJdbcExtractor
-
-origin(OpenLineage.GcpCommonJobFacetOrigin) - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacetBuilder
-
-OTHER - Enum constant in enum class io.openlineage.client.OpenLineage.RunEvent.EventType
-
-OTHER - Enum constant in enum class io.openlineage.server.OpenLineage.RunEvent.EventType
-
-OutputDataset(String, String, OpenLineage.DatasetFacets, OpenLineage.OutputDatasetOutputFacets) - Constructor for class io.openlineage.server.OpenLineage.OutputDataset
-
-OutputDatasetBuilder() - Constructor for class io.openlineage.client.OpenLineage.OutputDatasetBuilder
-
-OutputDatasetFacet(URI, URI) - Constructor for class io.openlineage.server.OpenLineage.OutputDatasetFacet
-
-OutputDatasetOutputFacets() - Constructor for class io.openlineage.server.OpenLineage.OutputDatasetOutputFacets
-
-OutputDatasetOutputFacetsBuilder() - Constructor for class io.openlineage.client.OpenLineage.OutputDatasetOutputFacetsBuilder
-
-outputFacets(OpenLineage.OutputDatasetOutputFacets) - Method in class io.openlineage.client.OpenLineage.OutputDatasetBuilder
-
-outputs(List<OpenLineage.OutputDataset>) - Method in class io.openlineage.client.OpenLineage.JobEventBuilder
-
-outputs(List<OpenLineage.OutputDataset>) - Method in class io.openlineage.client.OpenLineage.RunEventBuilder
-
-outputStatistics(OpenLineage.OutputStatisticsOutputDatasetFacet) - Method in class io.openlineage.client.OpenLineage.OutputDatasetOutputFacetsBuilder
-
-OutputStatisticsOutputDatasetFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacetBuilder
-
-OverridingJdbcExtractor - Class in io.openlineage.client.utils.jdbc
-
-OverridingJdbcExtractor(String) - Constructor for class io.openlineage.client.utils.jdbc.OverridingJdbcExtractor
-
-OverridingJdbcExtractor(String, String) - Constructor for class io.openlineage.client.utils.jdbc.OverridingJdbcExtractor
-
-OVERWRITE - Enum constant in enum class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange
-
-owners(List<OpenLineage.OwnershipDatasetFacetOwners>) - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacetBuilder
-
-owners(List<OpenLineage.OwnershipJobFacetOwners>) - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacetBuilder
-
-ownership(OpenLineage.OwnershipDatasetFacet) - Method in class io.openlineage.client.OpenLineage.DatasetFacetsBuilder
-
-ownership(OpenLineage.OwnershipJobFacet) - Method in class io.openlineage.client.OpenLineage.JobFacetsBuilder
-
-OwnershipDatasetFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.OwnershipDatasetFacetBuilder
-
-OwnershipDatasetFacetOwnersBuilder() - Constructor for class io.openlineage.client.OpenLineage.OwnershipDatasetFacetOwnersBuilder
-
-OwnershipJobFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.OwnershipJobFacetBuilder
-
-OwnershipJobFacetOwnersBuilder() - Constructor for class io.openlineage.client.OpenLineage.OwnershipJobFacetOwnersBuilder
-
-
-P
-
-parent(OpenLineage.ParentRunFacet) - Method in class io.openlineage.client.OpenLineage.RunFacetsBuilder
-
-ParentRunFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.ParentRunFacetBuilder
-
-ParentRunFacetJobBuilder() - Constructor for class io.openlineage.client.OpenLineage.ParentRunFacetJobBuilder
-
-ParentRunFacetRunBuilder() - Constructor for class io.openlineage.client.OpenLineage.ParentRunFacetRunBuilder
-
-parseMeterRegistryConfig(Map<String, Object>) - Static method in class io.openlineage.client.metrics.MicrometerProvider
-
-Parses the configuration map to create an optional MeterRegistry.
-
-path(String) - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacetBuilder
-
-PatternMatchingGroupNamespaceResolver - Class in io.openlineage.client.dataset.namespace.resolver
-
-PatternMatchingGroupNamespaceResolver(PatternMatchingGroupNamespaceResolverConfig) - Constructor for class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolver
-
-PatternMatchingGroupNamespaceResolverBuilder - Class in io.openlineage.client.dataset.namespace.resolver
-
-PatternMatchingGroupNamespaceResolverBuilder() - Constructor for class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverBuilder
-
-PatternMatchingGroupNamespaceResolverConfig - Class in io.openlineage.client.dataset.namespace.resolver
-
-PatternMatchingGroupNamespaceResolverConfig() - Constructor for class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-PatternMatchingGroupNamespaceResolverConfig(String, String, String) - Constructor for class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-PatternNamespaceResolver - Class in io.openlineage.client.dataset.namespace.resolver
-
-PatternNamespaceResolver(String, PatternNamespaceResolverConfig) - Constructor for class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolver
-
-PatternNamespaceResolverBuilder - Class in io.openlineage.client.dataset.namespace.resolver
-
-PatternNamespaceResolverBuilder() - Constructor for class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverBuilder
-
-PatternNamespaceResolverConfig - Class in io.openlineage.client.dataset.namespace.resolver
-
-PatternNamespaceResolverConfig() - Constructor for class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig
-
-PatternNamespaceResolverConfig(String, String) - Constructor for class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig
-
-PostgresJdbcExtractor - Class in io.openlineage.client.utils.jdbc
-
-PostgresJdbcExtractor() - Constructor for class io.openlineage.client.utils.jdbc.PostgresJdbcExtractor
-
-previousIdentifier(OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier) - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetBuilder
-
-processing_engine(OpenLineage.ProcessingEngineRunFacet) - Method in class io.openlineage.client.OpenLineage.RunFacetsBuilder
-
-ProcessingEngineRunFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.ProcessingEngineRunFacetBuilder
-
-processingType(String) - Method in class io.openlineage.client.OpenLineage.JobTypeJobFacetBuilder
-
-programmingLanguage(String) - Method in class io.openlineage.client.OpenLineage.ErrorMessageRunFacetBuilder
-
-put(String, OpenLineage.ColumnLineageDatasetFacetFieldsAdditional) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsBuilder
-
-add additional properties
-
-put(String, OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder
-
-add additional properties
-
-put(String, OpenLineage.DatasetFacet) - Method in class io.openlineage.client.OpenLineage.DatasetFacetsBuilder
-
-add additional properties
-
-put(String, OpenLineage.InputDatasetFacet) - Method in class io.openlineage.client.OpenLineage.InputDatasetInputFacetsBuilder
-
-add additional properties
-
-put(String, OpenLineage.JobFacet) - Method in class io.openlineage.client.OpenLineage.JobFacetsBuilder
-
-add additional properties
-
-put(String, OpenLineage.OutputDatasetFacet) - Method in class io.openlineage.client.OpenLineage.OutputDatasetOutputFacetsBuilder
-
-add additional properties
-
-put(String, OpenLineage.RunFacet) - Method in class io.openlineage.client.OpenLineage.RunFacetsBuilder
-
-add additional properties
-
-put(String, Double) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.DatasetVersionDatasetFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.DatasourceDatasetFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.DocumentationDatasetFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.DocumentationJobFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.ErrorMessageRunFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.ExternalQueryRunFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.JobTypeJobFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.NominalTimeRunFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.ParentRunFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.ProcessingEngineRunFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.SourceCodeJobFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.SQLJobFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.StorageDatasetFacetBuilder
-
-add additional properties
-
-put(String, Object) - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacetBuilder
-
-add additional properties
-
-
-Q
-
-quantiles(OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder
-
-query(String) - Method in class io.openlineage.client.OpenLineage.SQLJobFacetBuilder
-
-
-R
-
-ReflectionUtils - Class in io.openlineage.client.utils
-
-ReflectionUtils() - Constructor for class io.openlineage.client.utils.ReflectionUtils
-
-registry(Map<String, Object>) - Method in class io.openlineage.client.metrics.CompositeMeterRegistryFactory
-
-Constructs a CompositeMeterRegistry from a given map of configuration options.
-
-registry(Map<String, Object>) - Method in interface io.openlineage.client.metrics.MeterRegistryFactory
-
-registry(Map<String, Object>) - Method in class io.openlineage.client.metrics.SimpleMeterRegistryFactory
-
-Constructs a SimpleMeterRegistry.
-
-registry(Map<String, Object>) - Method in class io.openlineage.client.metrics.StatsDMeterRegistryFactory
-
-RENAME - Enum constant in enum class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange
-
-repoUrl(String) - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacetBuilder
-
-resolve(DatasetIdentifier) - Method in class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceCombinedResolver
-
-resolve(String) - Method in class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceCombinedResolver
-
-Resolves namespace by dataset host resolvers defined in dataset config.
-
-resolve(String) - Method in interface io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolver
-
-Method should always return original value if hostAdress is not to be modified
-
-resolve(String) - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolver
-
-resolve(String) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolver
-
-resolve(String) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolver
-
-resolveCircuitBreakerByConfig(CircuitBreakerConfig) - Static method in class io.openlineage.client.circuitBreaker.CircuitBreakerResolver
-
-resolveCircuitBreakerConfigByType(String) - Static method in class io.openlineage.client.circuitBreaker.CircuitBreakerResolver
-
-resolveCircuitBreakerTypeByConfigClass(Class) - Static method in class io.openlineage.client.circuitBreaker.CircuitBreakerResolver
-
-resolveHost(URI) - Method in class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceCombinedResolver
-
-Resolves namespace uri by dataset host resolvers defined in dataset config.
-
-resolveTransportByConfig(TransportConfig) - Static method in class io.openlineage.client.transports.TransportResolver
-
-resolveTransportConfigByType(String) - Static method in class io.openlineage.client.transports.TransportResolver
-
-resolveTransportTypeByConfigClass(Class) - Static method in class io.openlineage.client.transports.TransportResolver
-
-rowCount(Long) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetBuilder
-
-rowCount(Long) - Method in class io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacetBuilder
-
-run(OpenLineage.ParentRunFacetRun) - Method in class io.openlineage.client.OpenLineage.ParentRunFacetBuilder
-
-run(OpenLineage.Run) - Method in class io.openlineage.client.OpenLineage.RunEventBuilder
-
-run(Callable<T>) - Method in interface io.openlineage.client.circuitBreaker.CircuitBreaker
-
-run(Callable<T>) - Method in class io.openlineage.client.circuitBreaker.ExecutorCircuitBreaker
-
-run(Callable<T>) - Method in class io.openlineage.client.circuitBreaker.NoOpCircuitBreaker
-
-Run(UUID, OpenLineage.RunFacets) - Constructor for class io.openlineage.server.OpenLineage.Run
-
-RunBuilder() - Constructor for class io.openlineage.client.OpenLineage.RunBuilder
-
-RunEvent(ZonedDateTime, URI, URI, OpenLineage.RunEvent.EventType, OpenLineage.Run, OpenLineage.Job, List<OpenLineage.InputDataset>, List<OpenLineage.OutputDataset>) - Constructor for class io.openlineage.server.OpenLineage.RunEvent
-
-RunEventBuilder() - Constructor for class io.openlineage.client.OpenLineage.RunEventBuilder
-
-runEventFromJson(String) - Static method in class io.openlineage.client.OpenLineageClientUtils
-
-
-
-RunFacet(URI, URI) - Constructor for class io.openlineage.server.OpenLineage.RunFacet
-
-RunFacets() - Constructor for class io.openlineage.server.OpenLineage.RunFacets
-
-RunFacetsBuilder() - Constructor for class io.openlineage.client.OpenLineage.RunFacetsBuilder
-
-runId(UUID) - Method in class io.openlineage.client.OpenLineage.ParentRunFacetRunBuilder
-
-runId(UUID) - Method in class io.openlineage.client.OpenLineage.RunBuilder
-
-RUNNING - Enum constant in enum class io.openlineage.client.OpenLineage.RunEvent.EventType
-
-RUNNING - Enum constant in enum class io.openlineage.server.OpenLineage.RunEvent.EventType
-
-RuntimeUtils - Class in io.openlineage.client.utils
-
-Class used to access static Runtime properties.
-
-RuntimeUtils() - Constructor for class io.openlineage.client.utils.RuntimeUtils
-
-
-S
-
-schema(OpenLineage.SchemaDatasetFacet) - Method in class io.openlineage.client.OpenLineage.DatasetFacetsBuilder
-
-SchemaDatasetFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.SchemaDatasetFacetBuilder
-
-SchemaDatasetFacetFieldsBuilder() - Constructor for class io.openlineage.client.OpenLineage.SchemaDatasetFacetFieldsBuilder
-
-setApiKey(String) - Method in class io.openlineage.client.transports.ApiKeyTokenProvider
-
-setAuth(TokenProvider) - Method in class io.openlineage.client.transports.HttpConfig
-
-setAuth(TokenProvider) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-setAuthority(Optional<String>) - Method in class io.openlineage.client.utils.jdbc.JdbcLocation
-
-setCircuitBreaker(CircuitBreakerConfig) - Method in class io.openlineage.client.OpenLineageConfig
-
-setCircuitCheckIntervalInMillis(Integer) - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-setCircuitCheckIntervalInMillis(Integer) - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-setCircuitCheckIntervalInMillis(Integer) - Method in class io.openlineage.client.circuitBreaker.StaticCircuitBreakerConfig
-
-setCompression(HttpConfig.Compression) - Method in class io.openlineage.client.transports.HttpConfig
-
-setCompression(HttpConfig.Compression) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-setDatabase(Optional<String>) - Method in class io.openlineage.client.utils.jdbc.JdbcLocation
-
-setDatasetConfig(DatasetConfig) - Method in class io.openlineage.client.OpenLineageConfig
-
-setDeprecatedDisabledFacets(String[]) - Method in class io.openlineage.client.transports.FacetsConfig
-
-setDisabledFacets(Map<String, Boolean>) - Method in class io.openlineage.client.transports.FacetsConfig
-
-setEndpoint(String) - Method in class io.openlineage.client.transports.HttpConfig
-
-setEndpoint(String) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-setFacetsConfig(FacetsConfig) - Method in class io.openlineage.client.OpenLineageConfig
-
-setGcCpuThreshold(Integer) - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-setHeaders(Map<String, String>) - Method in class io.openlineage.client.transports.HttpConfig
-
-setHeaders(Map<String, String>) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-setHosts(List<String>) - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig
-
-setInstance(Optional<String>) - Method in class io.openlineage.client.utils.jdbc.JdbcLocation
-
-setLocation(String) - Method in class io.openlineage.client.transports.FileConfig
-
-setMatchingGroup(String) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-setMemoryThreshold(Integer) - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-setMemoryThreshold(Integer) - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-setMessageKey(String) - Method in class io.openlineage.client.transports.KafkaConfig
-
-setMetricsConfig(Map<String, Object>) - Method in class io.openlineage.client.OpenLineageConfig
-
-setNamespaceResolvers(Map<String, DatasetNamespaceResolverConfig>) - Method in class io.openlineage.client.dataset.DatasetConfig
-
-setProperties(Properties) - Method in class io.openlineage.client.transports.KafkaConfig
-
-setProperties(Properties) - Method in class io.openlineage.client.transports.KinesisConfig
-
-setRegex(String) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-setRegex(String) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig
-
-setRegion(String) - Method in class io.openlineage.client.transports.KinesisConfig
-
-setRoleArn(String) - Method in class io.openlineage.client.transports.KinesisConfig
-
-setSchema(String) - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig
-
-setSchema(String) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-setSchema(String) - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig
-
-setScheme(String) - Method in class io.openlineage.client.utils.jdbc.JdbcLocation
-
-setStreamName(String) - Method in class io.openlineage.client.transports.KinesisConfig
-
-setTimeout(Double) - Method in class io.openlineage.client.transports.HttpConfig
-
-setTimeout(Double) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-setTimeoutInMillis(Integer) - Method in class io.openlineage.client.transports.HttpConfig
-
-setTimeoutInMillis(Integer) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-setTimeoutInSeconds(Integer) - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-setTimeoutInSeconds(Integer) - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-setTopicName(String) - Method in class io.openlineage.client.transports.KafkaConfig
-
-setTransportConfig(TransportConfig) - Method in class io.openlineage.client.OpenLineageConfig
-
-setUrl(URI) - Method in class io.openlineage.client.transports.HttpConfig
-
-setUrl(URI) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-setUrlParams(Map<String, String>) - Method in class io.openlineage.client.transports.HttpConfig
-
-setUrlParams(Map<String, String>) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-setValuesReturned(String) - Method in class io.openlineage.client.circuitBreaker.StaticCircuitBreakerConfig
-
-SimpleMemoryCircuitBreaker - Class in io.openlineage.client.circuitBreaker
-
-SimpleMemoryCircuitBreaker(SimpleMemoryCircuitBreakerConfig) - Constructor for class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreaker
-
-SimpleMemoryCircuitBreakerBuilder - Class in io.openlineage.client.circuitBreaker
-
-SimpleMemoryCircuitBreakerBuilder() - Constructor for class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerBuilder
-
-SimpleMemoryCircuitBreakerConfig - Class in io.openlineage.client.circuitBreaker
-
-SimpleMemoryCircuitBreakerConfig() - Constructor for class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-SimpleMemoryCircuitBreakerConfig(int) - Constructor for class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-SimpleMemoryCircuitBreakerConfig(int, int) - Constructor for class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-SimpleMemoryCircuitBreakerConfig(Integer, Integer, Integer) - Constructor for class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-SimpleMeterRegistryFactory - Class in io.openlineage.client.metrics
-
-This class implements the MetricsBuilder interface with SimpleMeterRegistry as its type.
-
-SimpleMeterRegistryFactory() - Constructor for class io.openlineage.client.metrics.SimpleMeterRegistryFactory
-
-size(Long) - Method in class io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacetBuilder
-
-source(String) - Method in class io.openlineage.client.OpenLineage.ExternalQueryRunFacetBuilder
-
-sourceCode(OpenLineage.SourceCodeJobFacet) - Method in class io.openlineage.client.OpenLineage.JobFacetsBuilder
-
-sourceCode(String) - Method in class io.openlineage.client.OpenLineage.SourceCodeJobFacetBuilder
-
-SourceCodeJobFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.SourceCodeJobFacetBuilder
-
-sourceCodeLocation(OpenLineage.SourceCodeLocationJobFacet) - Method in class io.openlineage.client.OpenLineage.JobFacetsBuilder
-
-SourceCodeLocationJobFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacetBuilder
-
-sourceType(String) - Method in class io.openlineage.client.OpenLineage.GcpCommonJobFacetOriginBuilder
-
-sql(OpenLineage.SQLJobFacet) - Method in class io.openlineage.client.OpenLineage.JobFacetsBuilder
-
-SQLJobFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.SQLJobFacetBuilder
-
-SqlServerJdbcExtractor - Class in io.openlineage.client.utils.jdbc
-
-SqlServerJdbcExtractor() - Constructor for class io.openlineage.client.utils.jdbc.SqlServerJdbcExtractor
-
-stackTrace(String) - Method in class io.openlineage.client.OpenLineage.ErrorMessageRunFacetBuilder
-
-stackTrace(String) - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetErrorsBuilder
-
-START - Enum constant in enum class io.openlineage.client.OpenLineage.RunEvent.EventType
-
-START - Enum constant in enum class io.openlineage.server.OpenLineage.RunEvent.EventType
-
-StaticCircuitBreaker - Class in io.openlineage.client.circuitBreaker
-
-Static circuit breaker used mainly for the integration tests.
-
-StaticCircuitBreaker(StaticCircuitBreakerConfig) - Constructor for class io.openlineage.client.circuitBreaker.StaticCircuitBreaker
-
-StaticCircuitBreakerBuilder - Class in io.openlineage.client.circuitBreaker
-
-StaticCircuitBreakerBuilder() - Constructor for class io.openlineage.client.circuitBreaker.StaticCircuitBreakerBuilder
-
-StaticCircuitBreakerConfig - Class in io.openlineage.client.circuitBreaker
-
-StaticCircuitBreakerConfig() - Constructor for class io.openlineage.client.circuitBreaker.StaticCircuitBreakerConfig
-
-StaticCircuitBreakerConfig(String) - Constructor for class io.openlineage.client.circuitBreaker.StaticCircuitBreakerConfig
-
-StaticCircuitBreakerConfig(String, Integer) - Constructor for class io.openlineage.client.circuitBreaker.StaticCircuitBreakerConfig
-
-StaticDataset(String, String, OpenLineage.DatasetFacets) - Constructor for class io.openlineage.server.OpenLineage.StaticDataset
-
-StaticDatasetBuilder() - Constructor for class io.openlineage.client.OpenLineage.StaticDatasetBuilder
-
-StatsDMeterRegistryFactory - Class in io.openlineage.client.metrics
-
-StatsDMetricsBuilder is a class that implements the
MeterRegistryFactory
interface
- specifically for
StatsdMeterRegistry
.
-
-StatsDMeterRegistryFactory() - Constructor for class io.openlineage.client.metrics.StatsDMeterRegistryFactory
-
-storage(OpenLineage.StorageDatasetFacet) - Method in class io.openlineage.client.OpenLineage.DatasetFacetsBuilder
-
-StorageDatasetFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.StorageDatasetFacetBuilder
-
-storageLayer(String) - Method in class io.openlineage.client.OpenLineage.StorageDatasetFacetBuilder
-
-subtype(String) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder
-
-success(Boolean) - Method in class io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder
-
-sum(Double) - Method in class io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder
-
-Symlink(String, String, DatasetIdentifier.SymlinkType) - Constructor for class io.openlineage.client.utils.DatasetIdentifier.Symlink
-
-symlinks(OpenLineage.SymlinksDatasetFacet) - Method in class io.openlineage.client.OpenLineage.DatasetFacetsBuilder
-
-SymlinksDatasetFacetBuilder() - Constructor for class io.openlineage.client.OpenLineage.SymlinksDatasetFacetBuilder
-
-SymlinksDatasetFacetIdentifiersBuilder() - Constructor for class io.openlineage.client.OpenLineage.SymlinksDatasetFacetIdentifiersBuilder
-
-
-T
-
-TABLE - Enum constant in enum class io.openlineage.client.utils.DatasetIdentifier.SymlinkType
-
-tag(String) - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacetBuilder
-
-task(String) - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetErrorsBuilder
-
-taskNumber(Long) - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetErrorsBuilder
-
-TeradataJdbcExtractor - Class in io.openlineage.client.utils.jdbc
-
-TeradataJdbcExtractor() - Constructor for class io.openlineage.client.utils.jdbc.TeradataJdbcExtractor
-
-timeout - Variable in class io.openlineage.client.circuitBreaker.ExecutorCircuitBreaker
-
-timeout(Double) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-toJson(Object) - Static method in class io.openlineage.client.OpenLineageClientUtils
-
-Converts the provided value to a JSON string.
-
-tokenProvider(TokenProvider) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-TokenProvider - Interface in io.openlineage.client.transports
-
-TokenProviderTypeIdResolver - Class in io.openlineage.client.transports
-
-TokenProviderTypeIdResolver() - Constructor for class io.openlineage.client.transports.TokenProviderTypeIdResolver
-
-toLocation(DatasetIdentifier) - Static method in class io.openlineage.client.utils.filesystem.FilesystemDatasetUtils
-
-Get URI from DatasetIdentifier
-
-toName(List<String>) - Method in class io.openlineage.client.utils.jdbc.JdbcLocation
-
-toNamespace() - Method in class io.openlineage.client.utils.jdbc.JdbcLocation
-
-toString() - Method in class io.openlineage.client.circuitBreaker.CircuitBreakerState
-
-toString() - Method in class io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-toString() - Method in class io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-toString() - Method in class io.openlineage.client.circuitBreaker.StaticCircuitBreakerConfig
-
-toString() - Method in class io.openlineage.client.dataset.DatasetConfig
-
-toString() - Method in class io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig
-
-toString() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-toString() - Method in class io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig
-
-toString() - Method in class io.openlineage.client.transports.ApiKeyTokenProvider
-
-toString() - Method in class io.openlineage.client.transports.FacetsConfig
-
-toString() - Method in class io.openlineage.client.transports.FileConfig
-
-toString() - Method in class io.openlineage.client.transports.HttpConfig
-
-toString() - Method in class io.openlineage.client.transports.KafkaConfig
-
-toString() - Method in class io.openlineage.client.transports.KinesisConfig
-
-toString() - Method in class io.openlineage.client.utils.DatasetIdentifier.Symlink
-
-toString() - Method in class io.openlineage.client.utils.DatasetIdentifier
-
-totalMemory() - Static method in class io.openlineage.client.utils.RuntimeUtils
-
-totalTasks(Long) - Method in class io.openlineage.client.OpenLineage.ExtractionErrorRunFacetBuilder
-
-toUri(String) - Static method in class io.openlineage.client.OpenLineageClientUtils
-
-Converts a string URL into an
URI
object.
-
-transformationDescription(String) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder
-
-transformations(List<OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations>) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder
-
-transformationType(String) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder
-
-transport(Transport) - Method in class io.openlineage.client.OpenLineageClient.Builder
-
-Transport - Class in io.openlineage.client.transports
-
-Transport() - Constructor for class io.openlineage.client.transports.Transport
-
-TransportBuilder - Interface in io.openlineage.client.transports
-
-transportConfig - Variable in class io.openlineage.client.OpenLineageConfig
-
-TransportConfig - Interface in io.openlineage.client.transports
-
-TransportConfigTypeIdResolver - Class in io.openlineage.client.transports
-
-TransportConfigTypeIdResolver() - Constructor for class io.openlineage.client.transports.TransportConfigTypeIdResolver
-
-TransportFactory - Class in io.openlineage.client.transports
-
-
-
-TransportFactory(TransportConfig) - Constructor for class io.openlineage.client.transports.TransportFactory
-
-TransportResolver - Class in io.openlineage.client.transports
-
-TransportResolver() - Constructor for class io.openlineage.client.transports.TransportResolver
-
-TRUNCATE - Enum constant in enum class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange
-
-tryExecuteMethod(Object, String, Object...) - Static method in class io.openlineage.client.utils.ReflectionUtils
-
-tryExecuteStaticMethodForClassName(String, String, Object...) - Static method in class io.openlineage.client.utils.ReflectionUtils
-
-type() - Method in class io.openlineage.client.metrics.CompositeMeterRegistryFactory
-
-type() - Method in interface io.openlineage.client.metrics.MeterRegistryFactory
-
-type() - Method in class io.openlineage.client.metrics.SimpleMeterRegistryFactory
-
-type() - Method in class io.openlineage.client.metrics.StatsDMeterRegistryFactory
-
-type(String) - Method in class io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder
-
-type(String) - Method in class io.openlineage.client.OpenLineage.OwnershipDatasetFacetOwnersBuilder
-
-type(String) - Method in class io.openlineage.client.OpenLineage.OwnershipJobFacetOwnersBuilder
-
-type(String) - Method in class io.openlineage.client.OpenLineage.SchemaDatasetFacetFieldsBuilder
-
-type(String) - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacetBuilder
-
-type(String) - Method in class io.openlineage.client.OpenLineage.SymlinksDatasetFacetIdentifiersBuilder
-
-typeFromId(DatabindContext, String) - Method in class io.openlineage.client.circuitBreaker.CircuitBreakerConfigTypeIdResolver
-
-typeFromId(DatabindContext, String) - Method in class io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverConfigTypeIdResolver
-
-typeFromId(DatabindContext, String) - Method in class io.openlineage.client.transports.TokenProviderTypeIdResolver
-
-typeFromId(DatabindContext, String) - Method in class io.openlineage.client.transports.TransportConfigTypeIdResolver
-
-
-U
-
-uri(String) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-uri(String, Map<String, String>) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-uri(URI) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-uri(URI, Map<String, String>) - Method in class io.openlineage.client.transports.HttpTransport.Builder
-
-Deprecated.
-
-uri(URI) - Method in class io.openlineage.client.OpenLineage.DatasourceDatasetFacetBuilder
-
-url(URI) - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacetBuilder
-
-UUIDUtils - Class in io.openlineage.client.utils
-
-Class used to generate UUID values.
-
-UUIDUtils() - Constructor for class io.openlineage.client.utils.UUIDUtils
-
-
-V
-
-valueOf(String) - Static method in enum class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange
-
-Returns the enum constant of this class with the specified name.
-
-valueOf(String) - Static method in enum class io.openlineage.client.OpenLineage.RunEvent.EventType
-
-Returns the enum constant of this class with the specified name.
-
-valueOf(String) - Static method in enum class io.openlineage.client.transports.HttpConfig.Compression
-
-Returns the enum constant of this class with the specified name.
-
-valueOf(String) - Static method in enum class io.openlineage.client.utils.DatasetIdentifier.SymlinkType
-
-Returns the enum constant of this class with the specified name.
-
-valueOf(String) - Static method in enum class io.openlineage.server.OpenLineage.RunEvent.EventType
-
-Returns the enum constant of this class with the specified name.
-
-values() - Static method in enum class io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange
-
-Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-values() - Static method in enum class io.openlineage.client.OpenLineage.RunEvent.EventType
-
-Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-values() - Static method in enum class io.openlineage.client.transports.HttpConfig.Compression
-
-Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-values() - Static method in enum class io.openlineage.client.utils.DatasetIdentifier.SymlinkType
-
-Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-values() - Static method in enum class io.openlineage.server.OpenLineage.RunEvent.EventType
-
-Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-version(OpenLineage.DatasetVersionDatasetFacet) - Method in class io.openlineage.client.OpenLineage.DatasetFacetsBuilder
-
-version(String) - Method in class io.openlineage.client.OpenLineage.ProcessingEngineRunFacetBuilder
-
-version(String) - Method in class io.openlineage.client.OpenLineage.SourceCodeLocationJobFacetBuilder
-
-
-W
-
-withSymlink(DatasetIdentifier.Symlink) - Method in class io.openlineage.client.utils.DatasetIdentifier
-
-withSymlink(String, String, DatasetIdentifier.SymlinkType) - Method in class io.openlineage.client.utils.DatasetIdentifier
-
-
-A B C D E F G H I J K L M N O P Q R S T U V W All Classes and Interfaces | All Packages | Constant Field Values | Serialized Form
-
-
-
-
diff --git a/website/static/apidocs/javadoc/index.html b/website/static/apidocs/javadoc/index.html
deleted file mode 100644
index 12d3091f91..0000000000
--- a/website/static/apidocs/javadoc/index.html
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-Overview (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Packages
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/Clients.html b/website/static/apidocs/javadoc/io/openlineage/client/Clients.html
deleted file mode 100644
index 2f6b8b0f36..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/Clients.html
+++ /dev/null
@@ -1,154 +0,0 @@
-
-
-
-
-Clients (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public final class Clients
-
extends Object
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-newClient
-
-
-Returns:
-a new OpenLineageClient
object.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/ConfigPathProvider.html b/website/static/apidocs/javadoc/io/openlineage/client/ConfigPathProvider.html
deleted file mode 100644
index cf4fd5d41a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/ConfigPathProvider.html
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-ConfigPathProvider (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/DefaultConfigPathProvider.html b/website/static/apidocs/javadoc/io/openlineage/client/DefaultConfigPathProvider.html
deleted file mode 100644
index a4b4314d30..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/DefaultConfigPathProvider.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-DefaultConfigPathProvider (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DefaultConfigPathProvider
-public DefaultConfigPathProvider ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/Environment.html b/website/static/apidocs/javadoc/io/openlineage/client/Environment.html
deleted file mode 100644
index eff12501e6..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/Environment.html
+++ /dev/null
@@ -1,158 +0,0 @@
-
-
-
-
-Environment (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class Environment
-
extends Object
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-Environment
-public Environment ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getEnvironmentVariable
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/MergeConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/MergeConfig.html
deleted file mode 100644
index c6fb02150d..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/MergeConfig.html
+++ /dev/null
@@ -1,238 +0,0 @@
-
-
-
-
-MergeConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-All Known Implementing Classes:
-DatasetConfig
, FacetsConfig
, HostListNamespaceResolverConfig
, HttpConfig
, JavaRuntimeCircuitBreakerConfig
, KafkaConfig
, KinesisConfig
, OpenLineageConfig
, PatternMatchingGroupNamespaceResolverConfig
, PatternNamespaceResolverConfig
, SimpleMemoryCircuitBreakerConfig
-
-
-public interface MergeConfig<T>
-Contains methods to merge different config classes. It is mainly used to merge config entries
- from YAML files with config entries provided in another way (like integration specific
- configuration mechanism: SparkConf, FlinkConf).
-
-
The general behaviour for classes implementing it is: implement a method that allows creating
- new config class which merges each property. When merging a non-value is taken and if two values
- are present then the argument of a method has higher precedence. If a property implements
- MergeConfig interface, then interface method is called. Merging logic needs to be aware of
- default values so that it does not overwrite a value with default entry.
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods Default Methods
-
-
-
-
-
-
-
-
-
Creates union of maps.
-
-
default <T> T
-
-
-
Checks for nulls to avoid NPE.
-
-
-
-
-
Merges current instance with instance provided.
-
-
default <T> T
-
-
-
Overwrites base value with overwrite value only when it is does not equal default
-
-
-
-
-
Method to create new config class based on current instance and non-null argument value.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-mergeWith
-
-Merges current instance with instance provided. Checks if argument provided is non-null.
-
-Parameters:
-t
- object to be merged with
-Returns:
-merged value
-
-
-
-
-
-mergePropertyWith
-default Map mergePropertyWith (Map base,
- Map overwrite)
-Creates union of maps. In case of key collision, second parameter overwrites the first. Does
- null checking to avoid NPE
-
-Parameters:
-base
- base value
-overwrite
- overwrite value
-Returns:
-merged map
-
-
-
-
-
-mergePropertyWith
-default <T> T mergePropertyWith (T base,
- T overwrite)
-Checks for nulls to avoid NPE. If arguments are of different classes, the latter is returned.
- If they implement MergeConfig interface, then interface methods are used to merge values.
-
-Type Parameters:
-T
- generic type of merged object
-Parameters:
-base
- base value
-overwrite
- overwrite value
-Returns:
-merged config entry
-
-
-
-
-
-mergeWithDefaultValue
-default <T> T mergeWithDefaultValue (T base,
- T overwrite,
- T def)
-Overwrites base value with overwrite value only when it is does not equal default
-
-Type Parameters:
-T
- generic type of merged object
-Parameters:
-base
- base value
-overwrite
- overwrite value
-def
- default value
-Returns:
-merged object
-
-
-
-
-
-mergeWithNonNull
-
-Method to create new config class based on current instance and non-null argument value. In
- most cases, implementation needs to create a new instance of T, while merging all the
- properties.
-
-Parameters:
-t
- overwrite value
-Returns:
-merged config entry
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.BaseEvent.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.BaseEvent.html
deleted file mode 100644
index d0dee98dfd..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.BaseEvent.html
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
-OpenLineage.BaseEvent (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getEventTime
-
-
-Returns:
-the time the event occurred at
-
-
-
-
-
-getProducer
-
-
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-getSchemaURL
-
-
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this RunEvent
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.BaseFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.BaseFacet.html
deleted file mode 100644
index 7fd416173e..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.BaseFacet.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-OpenLineage.BaseFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static interface OpenLineage.BaseFacet
-Interface for BaseFacet
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-
-
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-
-
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.Builder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.Builder.html
deleted file mode 100644
index 8371c58611..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.Builder.html
+++ /dev/null
@@ -1,136 +0,0 @@
-
-
-
-
-OpenLineage.Builder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-All Known Implementing Classes:
-OpenLineage.ColumnLineageDatasetFacetBuilder
, OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder
, OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder
, OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder
, OpenLineage.ColumnLineageDatasetFacetFieldsBuilder
, OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder
, OpenLineage.DataQualityAssertionsDatasetFacetBuilder
, OpenLineage.DataQualityMetricsInputDatasetFacetBuilder
, OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder
, OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder
, OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder
, OpenLineage.DatasetEventBuilder
, OpenLineage.DatasetFacetsBuilder
, OpenLineage.DatasetVersionDatasetFacetBuilder
, OpenLineage.DatasourceDatasetFacetBuilder
, OpenLineage.DocumentationDatasetFacetBuilder
, OpenLineage.DocumentationJobFacetBuilder
, OpenLineage.ErrorMessageRunFacetBuilder
, OpenLineage.ExternalQueryRunFacetBuilder
, OpenLineage.ExtractionErrorRunFacetBuilder
, OpenLineage.ExtractionErrorRunFacetErrorsBuilder
, OpenLineage.GcpCommonJobFacetBuilder
, OpenLineage.GcpCommonJobFacetOriginBuilder
, OpenLineage.InputDatasetBuilder
, OpenLineage.InputDatasetInputFacetsBuilder
, OpenLineage.JobBuilder
, OpenLineage.JobEventBuilder
, OpenLineage.JobFacetsBuilder
, OpenLineage.JobTypeJobFacetBuilder
, OpenLineage.LifecycleStateChangeDatasetFacetBuilder
, OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder
, OpenLineage.NominalTimeRunFacetBuilder
, OpenLineage.OutputDatasetBuilder
, OpenLineage.OutputDatasetOutputFacetsBuilder
, OpenLineage.OutputStatisticsOutputDatasetFacetBuilder
, OpenLineage.OwnershipDatasetFacetBuilder
, OpenLineage.OwnershipDatasetFacetOwnersBuilder
, OpenLineage.OwnershipJobFacetBuilder
, OpenLineage.OwnershipJobFacetOwnersBuilder
, OpenLineage.ParentRunFacetBuilder
, OpenLineage.ParentRunFacetJobBuilder
, OpenLineage.ParentRunFacetRunBuilder
, OpenLineage.ProcessingEngineRunFacetBuilder
, OpenLineage.RunBuilder
, OpenLineage.RunEventBuilder
, OpenLineage.RunFacetsBuilder
, OpenLineage.SchemaDatasetFacetBuilder
, OpenLineage.SchemaDatasetFacetFieldsBuilder
, OpenLineage.SourceCodeJobFacetBuilder
, OpenLineage.SourceCodeLocationJobFacetBuilder
, OpenLineage.SQLJobFacetBuilder
, OpenLineage.StaticDatasetBuilder
, OpenLineage.StorageDatasetFacetBuilder
, OpenLineage.SymlinksDatasetFacetBuilder
, OpenLineage.SymlinksDatasetFacetIdentifiersBuilder
-
-
-Enclosing class:
-OpenLineage
-
-
-public static interface OpenLineage.Builder<T>
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-build
-
-
-Returns:
-the constructed type
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacet.html
deleted file mode 100644
index deeba46780..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacet.html
+++ /dev/null
@@ -1,208 +0,0 @@
-
-
-
-
-OpenLineage.ColumnLineageDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.DatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.DatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getFields
-
-
-Returns:
-Column level lineage that maps output fields into input fields used to evaluate them.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetBuilder.html
deleted file mode 100644
index 36f518920e..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetBuilder.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-OpenLineage.ColumnLineageDatasetFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ColumnLineageDatasetFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ColumnLineageDatasetFacetBuilder
-public ColumnLineageDatasetFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-fields
-
-
-Parameters:
-fields
- Column level lineage that maps output fields into input fields used to evaluate them.
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFields.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFields.html
deleted file mode 100644
index 586f18b958..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFields.html
+++ /dev/null
@@ -1,140 +0,0 @@
-
-
-
-
-OpenLineage.ColumnLineageDatasetFacetFields (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFields
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.ColumnLineageDatasetFacetFields
-
extends Object
-model class for ColumnLineageDatasetFacetFields
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditional.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditional.html
deleted file mode 100644
index b548d8634b..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditional.html
+++ /dev/null
@@ -1,175 +0,0 @@
-
-
-
-
-OpenLineage.ColumnLineageDatasetFacetFieldsAdditional (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditional
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.ColumnLineageDatasetFacetFieldsAdditional
-
extends Object
-model class for ColumnLineageDatasetFacetFieldsAdditional
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder.html
deleted file mode 100644
index b3bd4b8d31..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ColumnLineageDatasetFacetFieldsAdditional from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ColumnLineageDatasetFacetFieldsAdditionalBuilder
-public ColumnLineageDatasetFacetFieldsAdditionalBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields.html
deleted file mode 100644
index 085032b040..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields.html
+++ /dev/null
@@ -1,188 +0,0 @@
-
-
-
-
-OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
extends Object
-model class for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getNamespace
-
-
-Returns:
-The input dataset namespace
-
-
-
-
-
-getName
-
-
-Returns:
-The input dataset name
-
-
-
-
-
-getField
-
-
-Returns:
-The input field
-
-
-
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder.html
deleted file mode 100644
index 2984fae0d9..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder.html
+++ /dev/null
@@ -1,258 +0,0 @@
-
-
-
-
-OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ColumnLineageDatasetFacetFieldsAdditionalInputFields from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder
-public ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-namespace
-
-
-Parameters:
-namespace
- The input dataset namespace
-Returns:
-this
-
-
-
-
-
-name
-
-
-Parameters:
-name
- The input dataset name
-Returns:
-this
-
-
-
-
-
-field
-
-
-Parameters:
-field
- The input field
-Returns:
-this
-
-
-
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations.html
deleted file mode 100644
index c9959ba704..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
extends Object
-model class for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getType
-
-
-Returns:
-The type of the transformation. Allowed values are: DIRECT, INDIRECT
-
-
-
-
-
-getSubtype
-
-
-Returns:
-The subtype of the transformation
-
-
-
-
-
-getDescription
-public String getDescription ()
-
-Returns:
-a string representation of the transformation applied
-
-
-
-
-
-getMasking
-
-
-Returns:
-is transformation masking the data or not
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder.html
deleted file mode 100644
index 854ec11fc8..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder.html
+++ /dev/null
@@ -1,258 +0,0 @@
-
-
-
-
-OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder
-public ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-type
-
-
-Parameters:
-type
- The type of the transformation. Allowed values are: DIRECT, INDIRECT
-Returns:
-this
-
-
-
-
-
-subtype
-
-
-Parameters:
-subtype
- The subtype of the transformation
-Returns:
-this
-
-
-
-
-
-description
-
-
-Parameters:
-description
- a string representation of the transformation applied
-Returns:
-this
-
-
-
-
-
-masking
-
-
-Parameters:
-masking
- is transformation masking the data or not
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsBuilder.html
deleted file mode 100644
index 44df0d26b2..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ColumnLineageDatasetFacetFieldsBuilder.html
+++ /dev/null
@@ -1,198 +0,0 @@
-
-
-
-
-OpenLineage.ColumnLineageDatasetFacetFieldsBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ColumnLineageDatasetFacetFields from the fields set in the builder
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ColumnLineageDatasetFacetFieldsBuilder
-public ColumnLineageDatasetFacetFieldsBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityAssertionsDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityAssertionsDatasetFacet.html
deleted file mode 100644
index ae05db7436..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityAssertionsDatasetFacet.html
+++ /dev/null
@@ -1,186 +0,0 @@
-
-
-
-
-OpenLineage.DataQualityAssertionsDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacet
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.InputDatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.InputDatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityAssertionsDatasetFacetAssertions.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityAssertionsDatasetFacetAssertions.html
deleted file mode 100644
index c002996ee3..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityAssertionsDatasetFacetAssertions.html
+++ /dev/null
@@ -1,162 +0,0 @@
-
-
-
-
-OpenLineage.DataQualityAssertionsDatasetFacetAssertions (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetAssertions
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.DataQualityAssertionsDatasetFacetAssertions
-
extends Object
-model class for DataQualityAssertionsDatasetFacetAssertions
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getAssertion
-
-
-Returns:
-Type of expectation test that dataset is subjected to
-
-
-
-
-
-
-
-
-getColumn
-
-
-Returns:
-Column that expectation is testing. It should match the name provided in SchemaDatasetFacet. If column field is empty, then expectation refers to whole dataset.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder.html
deleted file mode 100644
index b72d11bd1b..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder.html
+++ /dev/null
@@ -1,222 +0,0 @@
-
-
-
-
-OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
build an instance of DataQualityAssertionsDatasetFacetAssertions from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DataQualityAssertionsDatasetFacetAssertionsBuilder
-public DataQualityAssertionsDatasetFacetAssertionsBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-assertion
-
-
-Parameters:
-assertion
- Type of expectation test that dataset is subjected to
-Returns:
-this
-
-
-
-
-
-success
-
-
-Parameters:
-success
- the success
-Returns:
-this
-
-
-
-
-
-column
-
-
-Parameters:
-column
- Column that expectation is testing. It should match the name provided in SchemaDatasetFacet. If column field is empty, then expectation refers to whole dataset.
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityAssertionsDatasetFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityAssertionsDatasetFacetBuilder.html
deleted file mode 100644
index 1cb5a77c16..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityAssertionsDatasetFacetBuilder.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-OpenLineage.DataQualityAssertionsDatasetFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
build an instance of DataQualityAssertionsDatasetFacet from the fields set in the builder
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DataQualityAssertionsDatasetFacetBuilder
-public DataQualityAssertionsDatasetFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-assertions
-
-
-Parameters:
-assertions
- the assertions
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacet.html
deleted file mode 100644
index 2e24f6d01d..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacet.html
+++ /dev/null
@@ -1,229 +0,0 @@
-
-
-
-
-OpenLineage.DataQualityMetricsInputDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacet
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.InputDatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.InputDatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-getRowCount
-public Long getRowCount ()
-
-Returns:
-The number of rows evaluated
-
-
-
-
-
-getBytes
-
-
-Returns:
-The size in bytes
-
-
-
-
-
-getFileCount
-public Long getFileCount ()
-
-Returns:
-The number of files evaluated
-
-
-
-
-
-getColumnMetrics
-
-
-Returns:
-The property key is the column name
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetBuilder.html
deleted file mode 100644
index f0bac599d4..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetBuilder.html
+++ /dev/null
@@ -1,258 +0,0 @@
-
-
-
-
-OpenLineage.DataQualityMetricsInputDatasetFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of DataQualityMetricsInputDatasetFacet from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DataQualityMetricsInputDatasetFacetBuilder
-public DataQualityMetricsInputDatasetFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-rowCount
-
-
-Parameters:
-rowCount
- The number of rows evaluated
-Returns:
-this
-
-
-
-
-
-bytes
-
-
-Parameters:
-bytes
- The size in bytes
-Returns:
-this
-
-
-
-
-
-fileCount
-
-
-Parameters:
-fileCount
- The number of files evaluated
-Returns:
-this
-
-
-
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics.html
deleted file mode 100644
index 910e09604f..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics.html
+++ /dev/null
@@ -1,140 +0,0 @@
-
-
-
-
-OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics
-
extends Object
-model class for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional.html
deleted file mode 100644
index 7a46f4d510..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional.html
+++ /dev/null
@@ -1,210 +0,0 @@
-
-
-
-
-OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
extends Object
-model class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getNullCount
-public Long getNullCount ()
-
-Returns:
-The number of null values in this column for the rows evaluated
-
-
-
-
-
-getDistinctCount
-public Long getDistinctCount ()
-
-Returns:
-The number of distinct values in this column for the rows evaluated
-
-
-
-
-
-getSum
-
-
-Returns:
-The total sum of values in this column for the rows evaluated
-
-
-
-
-
-getCount
-
-
-Returns:
-The number of values in this column
-
-
-
-
-
-
-
-
-
-
-
-getQuantiles
-
-
-Returns:
-The property key is the quantile. Examples: 0.1 0.25 0.5 0.75 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder.html
deleted file mode 100644
index 4f81795ce8..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder.html
+++ /dev/null
@@ -1,282 +0,0 @@
-
-
-
-
-OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of DataQualityMetricsInputDatasetFacetColumnMetricsAdditional from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder
-public DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-nullCount
-
-
-Parameters:
-nullCount
- The number of null values in this column for the rows evaluated
-Returns:
-this
-
-
-
-
-
-distinctCount
-
-
-Parameters:
-distinctCount
- The number of distinct values in this column for the rows evaluated
-Returns:
-this
-
-
-
-
-
-sum
-
-
-Parameters:
-sum
- The total sum of values in this column for the rows evaluated
-Returns:
-this
-
-
-
-
-
-count
-
-
-Parameters:
-count
- The number of values in this column
-Returns:
-this
-
-
-
-
-
-min
-
-
-Parameters:
-min
- the min
-Returns:
-this
-
-
-
-
-
-max
-
-
-Parameters:
-max
- the max
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles.html
deleted file mode 100644
index 340dda58fe..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles.html
+++ /dev/null
@@ -1,140 +0,0 @@
-
-
-
-
-OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
extends Object
-model class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder.html
deleted file mode 100644
index ca9e9b30b5..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder.html
+++ /dev/null
@@ -1,198 +0,0 @@
-
-
-
-
-OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles from the fields set in the builder
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder
-public DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder.html
deleted file mode 100644
index 8d36607551..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder.html
+++ /dev/null
@@ -1,198 +0,0 @@
-
-
-
-
-OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of DataQualityMetricsInputDatasetFacetColumnMetrics from the fields set in the builder
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DataQualityMetricsInputDatasetFacetColumnMetricsBuilder
-public DataQualityMetricsInputDatasetFacetColumnMetricsBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.Dataset.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.Dataset.html
deleted file mode 100644
index 17e3d629f8..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.Dataset.html
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
-OpenLineage.Dataset (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getNamespace
-
-
-Returns:
-The namespace containing that dataset
-
-
-
-
-
-getName
-
-
-Returns:
-The unique name for that dataset within that namespace
-
-
-
-
-
-getFacets
-
-
-Returns:
-The facets for this dataset
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetEvent.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetEvent.html
deleted file mode 100644
index fdcf36b5dc..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetEvent.html
+++ /dev/null
@@ -1,186 +0,0 @@
-
-
-
-
-OpenLineage.DatasetEvent (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getProducer
-
-
-Specified by:
-getProducer
in interface OpenLineage.BaseEvent
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-getSchemaURL
-public URI getSchemaURL ()
-
-Specified by:
-getSchemaURL
in interface OpenLineage.BaseEvent
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this RunEvent
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetEventBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetEventBuilder.html
deleted file mode 100644
index f732dd235e..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetEventBuilder.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-OpenLineage.DatasetEventBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of DatasetEvent from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DatasetEventBuilder
-public DatasetEventBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-eventTime
-
-
-Parameters:
-eventTime
- the time the event occurred at
-Returns:
-this
-
-
-
-
-
-dataset
-
-
-Parameters:
-dataset
- the dataset
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetFacet.html
deleted file mode 100644
index c791aefeb1..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetFacet.html
+++ /dev/null
@@ -1,189 +0,0 @@
-
-
-
-
-OpenLineage.DatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods Default Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-
-
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-
-
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-get_deleted
-
-
-Returns:
-set to true to delete a facet
-
-
-
-
-
-isDeleted
-
-
-Returns:
-set to true to delete a facet
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetFacets.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetFacets.html
deleted file mode 100644
index d9b208dd45..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetFacets.html
+++ /dev/null
@@ -1,221 +0,0 @@
-
-
-
-
-OpenLineage.DatasetFacets (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.DatasetFacets
-
extends Object
-model class for DatasetFacets
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getLifecycleStateChange
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetFacetsBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetFacetsBuilder.html
deleted file mode 100644
index d6c4e85e52..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetFacetsBuilder.html
+++ /dev/null
@@ -1,333 +0,0 @@
-
-
-
-
-OpenLineage.DatasetFacetsBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of DatasetFacets from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DatasetFacetsBuilder
-public DatasetFacetsBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-documentation
-
-
-Parameters:
-documentation
- the documentation
-Returns:
-this
-
-
-
-
-
-dataSource
-
-
-Parameters:
-dataSource
- the dataSource
-Returns:
-this
-
-
-
-
-
-version
-
-
-Parameters:
-version
- the version
-Returns:
-this
-
-
-
-
-
-schema
-
-
-Parameters:
-schema
- the schema
-Returns:
-this
-
-
-
-
-
-ownership
-
-
-Parameters:
-ownership
- the ownership
-Returns:
-this
-
-
-
-
-
-storage
-
-
-Parameters:
-storage
- the storage
-Returns:
-this
-
-
-
-
-
-columnLineage
-
-
-Parameters:
-columnLineage
- the columnLineage
-Returns:
-this
-
-
-
-
-
-symlinks
-
-
-Parameters:
-symlinks
- the symlinks
-Returns:
-this
-
-
-
-
-
-lifecycleStateChange
-
-
-Parameters:
-lifecycleStateChange
- the lifecycleStateChange
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetVersionDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetVersionDatasetFacet.html
deleted file mode 100644
index a1a84c4c52..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetVersionDatasetFacet.html
+++ /dev/null
@@ -1,208 +0,0 @@
-
-
-
-
-OpenLineage.DatasetVersionDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DatasetVersionDatasetFacet
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.DatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.DatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getDatasetVersion
-public String getDatasetVersion ()
-
-Returns:
-The version of the dataset.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetVersionDatasetFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetVersionDatasetFacetBuilder.html
deleted file mode 100644
index 7f805d6ee9..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasetVersionDatasetFacetBuilder.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-OpenLineage.DatasetVersionDatasetFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DatasetVersionDatasetFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of DatasetVersionDatasetFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DatasetVersionDatasetFacetBuilder
-public DatasetVersionDatasetFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-datasetVersion
-
-
-Parameters:
-datasetVersion
- The version of the dataset.
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasourceDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasourceDatasetFacet.html
deleted file mode 100644
index 58c203c12d..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasourceDatasetFacet.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-OpenLineage.DatasourceDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.DatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.DatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasourceDatasetFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasourceDatasetFacetBuilder.html
deleted file mode 100644
index ba3f97c4b2..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DatasourceDatasetFacetBuilder.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-OpenLineage.DatasourceDatasetFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DatasourceDatasetFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of DatasourceDatasetFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DatasourceDatasetFacetBuilder
-public DatasourceDatasetFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-name
-
-
-Parameters:
-name
- the name
-Returns:
-this
-
-
-
-
-
-uri
-
-
-Parameters:
-uri
- the uri
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultDatasetFacet.html
deleted file mode 100644
index 415eae814a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultDatasetFacet.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-OpenLineage.DefaultDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DefaultDatasetFacet
-public DefaultDatasetFacet (URI _producer,
- Boolean _deleted)
-
-Parameters:
-_producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-_deleted
- set to true to delete a facet
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.DatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.DatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultInputDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultInputDatasetFacet.html
deleted file mode 100644
index 4fab1653fb..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultInputDatasetFacet.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-OpenLineage.DefaultInputDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DefaultInputDatasetFacet
-public DefaultInputDatasetFacet (URI _producer)
-
-Parameters:
-_producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.InputDatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.InputDatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultJobFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultJobFacet.html
deleted file mode 100644
index 426554e6a4..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultJobFacet.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-OpenLineage.DefaultJobFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DefaultJobFacet
-public DefaultJobFacet (URI _producer,
- Boolean _deleted)
-
-Parameters:
-_producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-_deleted
- set to true to delete a facet
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.JobFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.JobFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultOutputDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultOutputDatasetFacet.html
deleted file mode 100644
index 39e6b09c57..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultOutputDatasetFacet.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-OpenLineage.DefaultOutputDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DefaultOutputDatasetFacet
-public DefaultOutputDatasetFacet (URI _producer)
-
-Parameters:
-_producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.OutputDatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.OutputDatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultRunFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultRunFacet.html
deleted file mode 100644
index e8dbf1df45..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DefaultRunFacet.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-OpenLineage.DefaultRunFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DefaultRunFacet
-public DefaultRunFacet (URI _producer)
-
-Parameters:
-_producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.RunFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.RunFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DocumentationDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DocumentationDatasetFacet.html
deleted file mode 100644
index 77365312d4..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DocumentationDatasetFacet.html
+++ /dev/null
@@ -1,208 +0,0 @@
-
-
-
-
-OpenLineage.DocumentationDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.DatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.DatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getDescription
-public String getDescription ()
-
-Returns:
-The description of the dataset.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DocumentationDatasetFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DocumentationDatasetFacetBuilder.html
deleted file mode 100644
index 6bbf90d4ad..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DocumentationDatasetFacetBuilder.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-OpenLineage.DocumentationDatasetFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DocumentationDatasetFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of DocumentationDatasetFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DocumentationDatasetFacetBuilder
-public DocumentationDatasetFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-description
-
-
-Parameters:
-description
- The description of the dataset.
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DocumentationJobFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DocumentationJobFacet.html
deleted file mode 100644
index 542a9406a5..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DocumentationJobFacet.html
+++ /dev/null
@@ -1,208 +0,0 @@
-
-
-
-
-OpenLineage.DocumentationJobFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.JobFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.JobFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getDescription
-public String getDescription ()
-
-Returns:
-The description of the job.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DocumentationJobFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DocumentationJobFacetBuilder.html
deleted file mode 100644
index 9ed8ecb96a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.DocumentationJobFacetBuilder.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-OpenLineage.DocumentationJobFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.DocumentationJobFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of DocumentationJobFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DocumentationJobFacetBuilder
-public DocumentationJobFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-description
-
-
-Parameters:
-description
- The description of the job.
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ErrorMessageRunFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ErrorMessageRunFacet.html
deleted file mode 100644
index 096bf31d84..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ErrorMessageRunFacet.html
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-OpenLineage.ErrorMessageRunFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.RunFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.RunFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-getMessage
-
-
-Returns:
-A human-readable string representing error message generated by observed system
-
-
-
-
-
-getProgrammingLanguage
-public String getProgrammingLanguage ()
-
-Returns:
-Programming language the observed system uses.
-
-
-
-
-
-getStackTrace
-
-
-Returns:
-A language-specific stack trace generated by observed system
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ErrorMessageRunFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ErrorMessageRunFacetBuilder.html
deleted file mode 100644
index b413f138d6..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ErrorMessageRunFacetBuilder.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-OpenLineage.ErrorMessageRunFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ErrorMessageRunFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ErrorMessageRunFacet from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ErrorMessageRunFacetBuilder
-public ErrorMessageRunFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-message
-
-
-Parameters:
-message
- A human-readable string representing error message generated by observed system
-Returns:
-this
-
-
-
-
-
-programmingLanguage
-
-
-Parameters:
-programmingLanguage
- Programming language the observed system uses.
-Returns:
-this
-
-
-
-
-
-stackTrace
-
-
-Parameters:
-stackTrace
- A language-specific stack trace generated by observed system
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExternalQueryRunFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExternalQueryRunFacet.html
deleted file mode 100644
index 342dc00feb..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExternalQueryRunFacet.html
+++ /dev/null
@@ -1,203 +0,0 @@
-
-
-
-
-OpenLineage.ExternalQueryRunFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.RunFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.RunFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-getExternalQueryId
-public String getExternalQueryId ()
-
-Returns:
-Identifier for the external system
-
-
-
-
-
-getSource
-
-
-Returns:
-source of the external query
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExternalQueryRunFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExternalQueryRunFacetBuilder.html
deleted file mode 100644
index c1f001e327..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExternalQueryRunFacetBuilder.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-OpenLineage.ExternalQueryRunFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ExternalQueryRunFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ExternalQueryRunFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ExternalQueryRunFacetBuilder
-public ExternalQueryRunFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-externalQueryId
-
-
-Parameters:
-externalQueryId
- Identifier for the external system
-Returns:
-this
-
-
-
-
-
-source
-
-
-Parameters:
-source
- source of the external query
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExtractionErrorRunFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExtractionErrorRunFacet.html
deleted file mode 100644
index 3204449d77..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExtractionErrorRunFacet.html
+++ /dev/null
@@ -1,212 +0,0 @@
-
-
-
-
-OpenLineage.ExtractionErrorRunFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.RunFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.RunFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-getTotalTasks
-public Long getTotalTasks ()
-
-Returns:
-The number of distinguishable tasks in a run that were processed by OpenLineage, whether successfully or not. Those could be, for example, distinct SQL statements.
-
-
-
-
-
-getFailedTasks
-public Long getFailedTasks ()
-
-Returns:
-The number of distinguishable tasks in a run that were processed not successfully by OpenLineage. Those could be, for example, distinct SQL statements.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExtractionErrorRunFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExtractionErrorRunFacetBuilder.html
deleted file mode 100644
index 56fd6ba950..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExtractionErrorRunFacetBuilder.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-OpenLineage.ExtractionErrorRunFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ExtractionErrorRunFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ExtractionErrorRunFacet from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ExtractionErrorRunFacetBuilder
-public ExtractionErrorRunFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-totalTasks
-
-
-Parameters:
-totalTasks
- The number of distinguishable tasks in a run that were processed by OpenLineage, whether successfully or not. Those could be, for example, distinct SQL statements.
-Returns:
-this
-
-
-
-
-
-failedTasks
-
-
-Parameters:
-failedTasks
- The number of distinguishable tasks in a run that were processed not successfully by OpenLineage. Those could be, for example, distinct SQL statements.
-Returns:
-this
-
-
-
-
-
-errors
-
-
-Parameters:
-errors
- the errors
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExtractionErrorRunFacetErrors.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExtractionErrorRunFacetErrors.html
deleted file mode 100644
index 2549b399ec..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExtractionErrorRunFacetErrors.html
+++ /dev/null
@@ -1,179 +0,0 @@
-
-
-
-
-OpenLineage.ExtractionErrorRunFacetErrors (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ExtractionErrorRunFacetErrors
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.ExtractionErrorRunFacetErrors
-
extends Object
-model class for ExtractionErrorRunFacetErrors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getErrorMessage
-public String getErrorMessage ()
-
-Returns:
-Text representation of extraction error message.
-
-
-
-
-
-getStackTrace
-
-
-Returns:
-Stack trace of extraction error message
-
-
-
-
-
-getTask
-
-
-Returns:
-Text representation of task that failed. This can be, for example, SQL statement that parser could not interpret.
-
-
-
-
-
-getTaskNumber
-public Long getTaskNumber ()
-
-Returns:
-Order of task (counted from 0).
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExtractionErrorRunFacetErrorsBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExtractionErrorRunFacetErrorsBuilder.html
deleted file mode 100644
index 7ba16aa81a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ExtractionErrorRunFacetErrorsBuilder.html
+++ /dev/null
@@ -1,237 +0,0 @@
-
-
-
-
-OpenLineage.ExtractionErrorRunFacetErrorsBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ExtractionErrorRunFacetErrorsBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ExtractionErrorRunFacetErrors from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ExtractionErrorRunFacetErrorsBuilder
-public ExtractionErrorRunFacetErrorsBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-errorMessage
-
-
-Parameters:
-errorMessage
- Text representation of extraction error message.
-Returns:
-this
-
-
-
-
-
-stackTrace
-
-
-Parameters:
-stackTrace
- Stack trace of extraction error message
-Returns:
-this
-
-
-
-
-
-task
-
-
-Parameters:
-task
- Text representation of task that failed. This can be, for example, SQL statement that parser could not interpret.
-Returns:
-this
-
-
-
-
-
-taskNumber
-
-
-Parameters:
-taskNumber
- Order of task (counted from 0).
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.GcpCommonJobFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.GcpCommonJobFacet.html
deleted file mode 100644
index 7ca8cc103e..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.GcpCommonJobFacet.html
+++ /dev/null
@@ -1,217 +0,0 @@
-
-
-
-
-OpenLineage.GcpCommonJobFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.JobFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.JobFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getDisplayName
-public String getDisplayName ()
-
-Returns:
-The name of the job to be used on UI
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.GcpCommonJobFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.GcpCommonJobFacetBuilder.html
deleted file mode 100644
index 4a514e3ced..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.GcpCommonJobFacetBuilder.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-OpenLineage.GcpCommonJobFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of GcpCommonJobFacet from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-GcpCommonJobFacetBuilder
-public GcpCommonJobFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-displayName
-
-
-Parameters:
-displayName
- The name of the job to be used on UI
-Returns:
-this
-
-
-
-
-
-origin
-
-
-Parameters:
-origin
- the origin
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.GcpCommonJobFacetOrigin.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.GcpCommonJobFacetOrigin.html
deleted file mode 100644
index 874972160f..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.GcpCommonJobFacetOrigin.html
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
-
-OpenLineage.GcpCommonJobFacetOrigin (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.GcpCommonJobFacetOrigin
-
extends Object
-model class for GcpCommonJobFacetOrigin
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getSourceType
-
-
-Returns:
-Type of the source. Possible values can be found in GCP documentation (https://cloud.google.com/data-catalog/docs/reference/data-lineage/rest/v1/projects.locations.processes#SourceType)
-
-
-
-
-
-getName
-
-
-Returns:
-If the sourceType isn't CUSTOM, the value of this field should be a GCP resource name of the system, which reports lineage. The project and location parts of the resource name must match the project and location of the lineage resource being created. More details in GCP documentation https://cloud.google.com/data-catalog/docs/reference/data-lineage/rest/v1/projects.locations.processes#origin
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.GcpCommonJobFacetOriginBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.GcpCommonJobFacetOriginBuilder.html
deleted file mode 100644
index bd80687271..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.GcpCommonJobFacetOriginBuilder.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-OpenLineage.GcpCommonJobFacetOriginBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.GcpCommonJobFacetOriginBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of GcpCommonJobFacetOrigin from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-GcpCommonJobFacetOriginBuilder
-public GcpCommonJobFacetOriginBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-sourceType
-
-
-Parameters:
-sourceType
- Type of the source. Possible values can be found in GCP documentation (https://cloud.google.com/data-catalog/docs/reference/data-lineage/rest/v1/projects.locations.processes#SourceType)
-Returns:
-this
-
-
-
-
-
-name
-
-
-Parameters:
-name
- If the sourceType isn't CUSTOM, the value of this field should be a GCP resource name of the system, which reports lineage. The project and location parts of the resource name must match the project and location of the lineage resource being created. More details in GCP documentation https://cloud.google.com/data-catalog/docs/reference/data-lineage/rest/v1/projects.locations.processes#origin
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDataset.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDataset.html
deleted file mode 100644
index f4d5c8418a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDataset.html
+++ /dev/null
@@ -1,190 +0,0 @@
-
-
-
-
-OpenLineage.InputDataset (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getName
-
-
-Specified by:
-getName
in interface OpenLineage.Dataset
-Returns:
-The unique name for that dataset within that namespace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDatasetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDatasetBuilder.html
deleted file mode 100644
index e51136383d..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDatasetBuilder.html
+++ /dev/null
@@ -1,237 +0,0 @@
-
-
-
-
-OpenLineage.InputDatasetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of InputDataset from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-InputDatasetBuilder
-public InputDatasetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-namespace
-
-
-Parameters:
-namespace
- The namespace containing that dataset
-Returns:
-this
-
-
-
-
-
-name
-
-
-Parameters:
-name
- The unique name for that dataset within that namespace
-Returns:
-this
-
-
-
-
-
-facets
-
-
-Parameters:
-facets
- The facets for this dataset
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDatasetFacet.html
deleted file mode 100644
index 0138585e38..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDatasetFacet.html
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
-OpenLineage.InputDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-
-
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-
-
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDatasetInputFacets.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDatasetInputFacets.html
deleted file mode 100644
index b64c065d0d..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDatasetInputFacets.html
+++ /dev/null
@@ -1,158 +0,0 @@
-
-
-
-
-OpenLineage.InputDatasetInputFacets (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.InputDatasetInputFacets
-
extends Object
-model class for InputDatasetInputFacets
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getDataQualityAssertions
-
-
-
-
-
-getDataQualityMetrics
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDatasetInputFacetsBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDatasetInputFacetsBuilder.html
deleted file mode 100644
index fe3c62f2d6..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.InputDatasetInputFacetsBuilder.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-OpenLineage.InputDatasetInputFacetsBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.InputDatasetInputFacetsBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of InputDatasetInputFacets from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-InputDatasetInputFacetsBuilder
-public InputDatasetInputFacetsBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-dataQualityAssertions
-
-
-Parameters:
-dataQualityAssertions
- the dataQualityAssertions
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.Job.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.Job.html
deleted file mode 100644
index 4a582b57d5..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.Job.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-OpenLineage.Job (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.Job
-
extends Object
-model class for Job
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getNamespace
-
-
-Returns:
-The namespace containing that job
-
-
-
-
-
-getName
-
-
-Returns:
-The unique name for that job within that namespace
-
-
-
-
-
-getFacets
-
-
-Returns:
-The job facets.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobBuilder.html
deleted file mode 100644
index f9123c9c2b..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobBuilder.html
+++ /dev/null
@@ -1,222 +0,0 @@
-
-
-
-
-OpenLineage.JobBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of Job from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-JobBuilder
-public JobBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-namespace
-
-
-Parameters:
-namespace
- The namespace containing that job
-Returns:
-this
-
-
-
-
-
-name
-
-
-Parameters:
-name
- The unique name for that job within that namespace
-Returns:
-this
-
-
-
-
-
-facets
-
-
-Parameters:
-facets
- The job facets.
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobEvent.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobEvent.html
deleted file mode 100644
index 6a1047ad74..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobEvent.html
+++ /dev/null
@@ -1,212 +0,0 @@
-
-
-
-
-OpenLineage.JobEvent (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getProducer
-
-
-Specified by:
-getProducer
in interface OpenLineage.BaseEvent
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-getSchemaURL
-public URI getSchemaURL ()
-
-Specified by:
-getSchemaURL
in interface OpenLineage.BaseEvent
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this RunEvent
-
-
-
-
-
-
-
-
-
-
-
-getOutputs
-
-
-Returns:
-The set of **output** datasets.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobEventBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobEventBuilder.html
deleted file mode 100644
index 5562a25fc8..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobEventBuilder.html
+++ /dev/null
@@ -1,237 +0,0 @@
-
-
-
-
-OpenLineage.JobEventBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of JobEvent from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-JobEventBuilder
-public JobEventBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-eventTime
-
-
-Parameters:
-eventTime
- the time the event occurred at
-Returns:
-this
-
-
-
-
-
-job
-
-
-Parameters:
-job
- the job
-Returns:
-this
-
-
-
-
-
-
-
-
-outputs
-
-
-Parameters:
-outputs
- The set of **output** datasets.
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobFacet.html
deleted file mode 100644
index 22730598eb..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobFacet.html
+++ /dev/null
@@ -1,189 +0,0 @@
-
-
-
-
-OpenLineage.JobFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods Default Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-
-
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-
-
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-get_deleted
-
-
-Returns:
-set to true to delete a facet
-
-
-
-
-
-isDeleted
-
-
-Returns:
-set to true to delete a facet
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobFacets.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobFacets.html
deleted file mode 100644
index d7ab8a940a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobFacets.html
+++ /dev/null
@@ -1,203 +0,0 @@
-
-
-
-
-OpenLineage.JobFacets (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.JobFacets
-
extends Object
-model class for JobFacets
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getSourceCodeLocation
-
-
-
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobFacetsBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobFacetsBuilder.html
deleted file mode 100644
index dfb937014b..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobFacetsBuilder.html
+++ /dev/null
@@ -1,303 +0,0 @@
-
-
-
-
-OpenLineage.JobFacetsBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of JobFacets from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-JobFacetsBuilder
-public JobFacetsBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-jobType
-
-
-Parameters:
-jobType
- the jobType
-Returns:
-this
-
-
-
-
-
-gcp_common
-
-
-Parameters:
-gcp_common
- the gcp_common
-Returns:
-this
-
-
-
-
-
-sourceCode
-
-
-Parameters:
-sourceCode
- the sourceCode
-Returns:
-this
-
-
-
-
-
-ownership
-
-
-Parameters:
-ownership
- the ownership
-Returns:
-this
-
-
-
-
-
-sql
-
-
-Parameters:
-sql
- the sql
-Returns:
-this
-
-
-
-
-
-sourceCodeLocation
-
-
-Parameters:
-sourceCodeLocation
- the sourceCodeLocation
-Returns:
-this
-
-
-
-
-
-documentation
-
-
-Parameters:
-documentation
- the documentation
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobTypeJobFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobTypeJobFacet.html
deleted file mode 100644
index 2c20046574..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobTypeJobFacet.html
+++ /dev/null
@@ -1,234 +0,0 @@
-
-
-
-
-OpenLineage.JobTypeJobFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.JobFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.JobFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getProcessingType
-public String getProcessingType ()
-
-Returns:
-Job processing type like: BATCH or STREAMING
-
-
-
-
-
-getIntegration
-public String getIntegration ()
-
-Returns:
-OpenLineage integration type of this job: for example SPARK|DBT|AIRFLOW|FLINK
-
-
-
-
-
-getJobType
-
-
-Returns:
-Run type, for example: QUERY|COMMAND|DAG|TASK|JOB|MODEL. This is an integration-specific field.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobTypeJobFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobTypeJobFacetBuilder.html
deleted file mode 100644
index 66ebf59baf..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.JobTypeJobFacetBuilder.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-OpenLineage.JobTypeJobFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of JobTypeJobFacet from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-JobTypeJobFacetBuilder
-public JobTypeJobFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-processingType
-
-
-Parameters:
-processingType
- Job processing type like: BATCH or STREAMING
-Returns:
-this
-
-
-
-
-
-integration
-
-
-Parameters:
-integration
- OpenLineage integration type of this job: for example SPARK|DBT|AIRFLOW|FLINK
-Returns:
-this
-
-
-
-
-
-jobType
-
-
-Parameters:
-jobType
- Run type, for example: QUERY|COMMAND|DAG|TASK|JOB|MODEL. This is an integration-specific field.
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange.html
deleted file mode 100644
index 00534a8fb2..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange.html
+++ /dev/null
@@ -1,253 +0,0 @@
-
-
-
-
-OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-Enum Constant Summary
-Enum Constants
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
-
-
-
Returns the enum constant of this class with the specified name.
-
-
-
-
-
Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-
-
-
-
-
Methods inherited from class java.lang.Enum
-
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
-
-
-
-
-
-
-
-
-
-
-Enum Constant Details
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-values
-
-Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-Returns:
-an array containing the constants of this enum class, in the order they are declared
-
-
-
-
-
-valueOf
-
-Returns the enum constant of this class with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this class. (Extraneous whitespace characters are
-not permitted.)
-
-Parameters:
-name
- the name of the enum constant to be returned.
-Returns:
-the enum constant with the specified name
-Throws:
-IllegalArgumentException
- if this enum class has no constant with the specified name
-NullPointerException
- if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacet.html
deleted file mode 100644
index a4818be2bc..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacet.html
+++ /dev/null
@@ -1,236 +0,0 @@
-
-
-
-
-OpenLineage.LifecycleStateChangeDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet
-
-
-
-
-
-
-
-Nested Class Summary
-Nested Classes
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.DatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.DatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getLifecycleStateChange
-
-
-Returns:
-The lifecycle state change.
-
-
-
-
-
-getPreviousIdentifier
-
-
-Returns:
-Previous name of the dataset in case of renaming it.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacetBuilder.html
deleted file mode 100644
index 90b642b3fd..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacetBuilder.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-OpenLineage.LifecycleStateChangeDatasetFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of LifecycleStateChangeDatasetFacet from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-LifecycleStateChangeDatasetFacetBuilder
-public LifecycleStateChangeDatasetFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-lifecycleStateChange
-
-
-Parameters:
-lifecycleStateChange
- The lifecycle state change.
-Returns:
-this
-
-
-
-
-
-previousIdentifier
-
-
-Parameters:
-previousIdentifier
- Previous name of the dataset in case of renaming it.
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier.html
deleted file mode 100644
index 9f2b782298..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier.html
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
-
-
-OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier
-
extends Object
-model class for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder.html
deleted file mode 100644
index 7a98da7f6c..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of LifecycleStateChangeDatasetFacetPreviousIdentifier from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder
-public LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-name
-
-
-Parameters:
-name
- the name
-Returns:
-this
-
-
-
-
-
-namespace
-
-
-Parameters:
-namespace
- the namespace
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.NominalTimeRunFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.NominalTimeRunFacet.html
deleted file mode 100644
index 4a5a78541f..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.NominalTimeRunFacet.html
+++ /dev/null
@@ -1,203 +0,0 @@
-
-
-
-
-OpenLineage.NominalTimeRunFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.RunFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.RunFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-getNominalStartTime
-
-
-Returns:
-An [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp representing the nominal start time (included) of the run. AKA the schedule time
-
-
-
-
-
-getNominalEndTime
-
-
-Returns:
-An [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp representing the nominal end time (excluded) of the run. (Should be the nominal start time of the next run)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.NominalTimeRunFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.NominalTimeRunFacetBuilder.html
deleted file mode 100644
index 4043c72620..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.NominalTimeRunFacetBuilder.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-OpenLineage.NominalTimeRunFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.NominalTimeRunFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of NominalTimeRunFacet from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-NominalTimeRunFacetBuilder
-public NominalTimeRunFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-nominalStartTime
-
-
-Parameters:
-nominalStartTime
- An [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp representing the nominal start time (included) of the run. AKA the schedule time
-Returns:
-this
-
-
-
-
-
-nominalEndTime
-
-
-Parameters:
-nominalEndTime
- An [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp representing the nominal end time (excluded) of the run. (Should be the nominal start time of the next run)
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDataset.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDataset.html
deleted file mode 100644
index 48f5df5160..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDataset.html
+++ /dev/null
@@ -1,190 +0,0 @@
-
-
-
-
-OpenLineage.OutputDataset (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getName
-
-
-Specified by:
-getName
in interface OpenLineage.Dataset
-Returns:
-The unique name for that dataset within that namespace
-
-
-
-
-
-
-
-
-getOutputFacets
-
-
-Returns:
-The output facets for this dataset
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDatasetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDatasetBuilder.html
deleted file mode 100644
index ca1ea096c7..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDatasetBuilder.html
+++ /dev/null
@@ -1,237 +0,0 @@
-
-
-
-
-OpenLineage.OutputDatasetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of OutputDataset from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OutputDatasetBuilder
-public OutputDatasetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-namespace
-
-
-Parameters:
-namespace
- The namespace containing that dataset
-Returns:
-this
-
-
-
-
-
-name
-
-
-Parameters:
-name
- The unique name for that dataset within that namespace
-Returns:
-this
-
-
-
-
-
-facets
-
-
-Parameters:
-facets
- The facets for this dataset
-Returns:
-this
-
-
-
-
-
-outputFacets
-
-
-Parameters:
-outputFacets
- The output facets for this dataset
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDatasetFacet.html
deleted file mode 100644
index 666e1aaf04..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDatasetFacet.html
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
-OpenLineage.OutputDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-
-
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-
-
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDatasetOutputFacets.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDatasetOutputFacets.html
deleted file mode 100644
index 933b0fa9c0..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDatasetOutputFacets.html
+++ /dev/null
@@ -1,149 +0,0 @@
-
-
-
-
-OpenLineage.OutputDatasetOutputFacets (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.OutputDatasetOutputFacets
-
extends Object
-model class for OutputDatasetOutputFacets
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDatasetOutputFacetsBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDatasetOutputFacetsBuilder.html
deleted file mode 100644
index 2803676253..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputDatasetOutputFacetsBuilder.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-OpenLineage.OutputDatasetOutputFacetsBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.OutputDatasetOutputFacetsBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of OutputDatasetOutputFacets from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OutputDatasetOutputFacetsBuilder
-public OutputDatasetOutputFacetsBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-outputStatistics
-
-
-Parameters:
-outputStatistics
- the outputStatistics
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputStatisticsOutputDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputStatisticsOutputDatasetFacet.html
deleted file mode 100644
index f8bf6dc672..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputStatisticsOutputDatasetFacet.html
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-OpenLineage.OutputStatisticsOutputDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacet
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.OutputDatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.OutputDatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-getRowCount
-public Long getRowCount ()
-
-Returns:
-The number of rows written to the dataset
-
-
-
-
-
-getSize
-
-
-Returns:
-The size in bytes written to the dataset
-
-
-
-
-
-getFileCount
-public Long getFileCount ()
-
-Returns:
-The number of files written to the dataset
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputStatisticsOutputDatasetFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputStatisticsOutputDatasetFacetBuilder.html
deleted file mode 100644
index 7be139f609..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OutputStatisticsOutputDatasetFacetBuilder.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-OpenLineage.OutputStatisticsOutputDatasetFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of OutputStatisticsOutputDatasetFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OutputStatisticsOutputDatasetFacetBuilder
-public OutputStatisticsOutputDatasetFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-rowCount
-
-
-Parameters:
-rowCount
- The number of rows written to the dataset
-Returns:
-this
-
-
-
-
-
-size
-
-
-Parameters:
-size
- The size in bytes written to the dataset
-Returns:
-this
-
-
-
-
-
-fileCount
-
-
-Parameters:
-fileCount
- The number of files written to the dataset
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipDatasetFacet.html
deleted file mode 100644
index cc3bb95170..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipDatasetFacet.html
+++ /dev/null
@@ -1,208 +0,0 @@
-
-
-
-
-OpenLineage.OwnershipDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.DatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.DatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getOwners
-
-
-Returns:
-The owners of the dataset.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipDatasetFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipDatasetFacetBuilder.html
deleted file mode 100644
index 1bdf809afb..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipDatasetFacetBuilder.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-OpenLineage.OwnershipDatasetFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.OwnershipDatasetFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of OwnershipDatasetFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OwnershipDatasetFacetBuilder
-public OwnershipDatasetFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-owners
-
-
-Parameters:
-owners
- The owners of the dataset.
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipDatasetFacetOwners.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipDatasetFacetOwners.html
deleted file mode 100644
index 2475044ec4..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipDatasetFacetOwners.html
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
-
-OpenLineage.OwnershipDatasetFacetOwners (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.OwnershipDatasetFacetOwners
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.OwnershipDatasetFacetOwners
-
extends Object
-model class for OwnershipDatasetFacetOwners
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getName
-
-
-Returns:
-the identifier of the owner of the Dataset. It is recommended to define this as a URN. For example application:foo, user:jdoe, team:data
-
-
-
-
-
-getType
-
-
-Returns:
-The type of ownership (optional)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipDatasetFacetOwnersBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipDatasetFacetOwnersBuilder.html
deleted file mode 100644
index 907393e935..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipDatasetFacetOwnersBuilder.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-OpenLineage.OwnershipDatasetFacetOwnersBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.OwnershipDatasetFacetOwnersBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of OwnershipDatasetFacetOwners from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OwnershipDatasetFacetOwnersBuilder
-public OwnershipDatasetFacetOwnersBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-name
-
-
-Parameters:
-name
- the identifier of the owner of the Dataset. It is recommended to define this as a URN. For example application:foo, user:jdoe, team:data
-Returns:
-this
-
-
-
-
-
-type
-
-
-Parameters:
-type
- The type of ownership (optional)
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipJobFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipJobFacet.html
deleted file mode 100644
index 587335b7c7..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipJobFacet.html
+++ /dev/null
@@ -1,208 +0,0 @@
-
-
-
-
-OpenLineage.OwnershipJobFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.JobFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.JobFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getOwners
-
-
-Returns:
-The owners of the job.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipJobFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipJobFacetBuilder.html
deleted file mode 100644
index 1d363a6d91..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipJobFacetBuilder.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-OpenLineage.OwnershipJobFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of OwnershipJobFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OwnershipJobFacetBuilder
-public OwnershipJobFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-owners
-
-
-Parameters:
-owners
- The owners of the job.
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipJobFacetOwners.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipJobFacetOwners.html
deleted file mode 100644
index a00b55f8a5..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipJobFacetOwners.html
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
-
-OpenLineage.OwnershipJobFacetOwners (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.OwnershipJobFacetOwners
-
extends Object
-model class for OwnershipJobFacetOwners
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getName
-
-
-Returns:
-the identifier of the owner of the Job. It is recommended to define this as a URN. For example application:foo, user:jdoe, team:data
-
-
-
-
-
-getType
-
-
-Returns:
-The type of ownership (optional)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipJobFacetOwnersBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipJobFacetOwnersBuilder.html
deleted file mode 100644
index 35e4774ab6..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.OwnershipJobFacetOwnersBuilder.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-OpenLineage.OwnershipJobFacetOwnersBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.OwnershipJobFacetOwnersBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of OwnershipJobFacetOwners from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OwnershipJobFacetOwnersBuilder
-public OwnershipJobFacetOwnersBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-name
-
-
-Parameters:
-name
- the identifier of the owner of the Job. It is recommended to define this as a URN. For example application:foo, user:jdoe, team:data
-Returns:
-this
-
-
-
-
-
-type
-
-
-Parameters:
-type
- The type of ownership (optional)
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacet.html
deleted file mode 100644
index 93271a2e5d..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacet.html
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
-OpenLineage.ParentRunFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.RunFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.RunFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetBuilder.html
deleted file mode 100644
index 92e4e15536..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetBuilder.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-OpenLineage.ParentRunFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ParentRunFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ParentRunFacetBuilder
-public ParentRunFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-run
-
-
-Parameters:
-run
- the run
-Returns:
-this
-
-
-
-
-
-job
-
-
-Parameters:
-job
- the job
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetJob.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetJob.html
deleted file mode 100644
index f308eef5ab..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetJob.html
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
-
-OpenLineage.ParentRunFacetJob (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.ParentRunFacetJob
-
extends Object
-model class for ParentRunFacetJob
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getNamespace
-
-
-Returns:
-The namespace containing that job
-
-
-
-
-
-getName
-
-
-Returns:
-The unique name for that job within that namespace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetJobBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetJobBuilder.html
deleted file mode 100644
index 21325cb056..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetJobBuilder.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-OpenLineage.ParentRunFacetJobBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ParentRunFacetJob from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ParentRunFacetJobBuilder
-public ParentRunFacetJobBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-namespace
-
-
-Parameters:
-namespace
- The namespace containing that job
-Returns:
-this
-
-
-
-
-
-name
-
-
-Parameters:
-name
- The unique name for that job within that namespace
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetRun.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetRun.html
deleted file mode 100644
index 2bc802d835..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetRun.html
+++ /dev/null
@@ -1,140 +0,0 @@
-
-
-
-
-OpenLineage.ParentRunFacetRun (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.ParentRunFacetRun
-
extends Object
-model class for ParentRunFacetRun
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getRunId
-
-
-Returns:
-The globally unique ID of the run associated with the job.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetRunBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetRunBuilder.html
deleted file mode 100644
index 4167607e21..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ParentRunFacetRunBuilder.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-OpenLineage.ParentRunFacetRunBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ParentRunFacetRun from the fields set in the builder
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ParentRunFacetRunBuilder
-public ParentRunFacetRunBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-runId
-
-
-Parameters:
-runId
- The globally unique ID of the run associated with the job.
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ProcessingEngineRunFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ProcessingEngineRunFacet.html
deleted file mode 100644
index e53f177629..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ProcessingEngineRunFacet.html
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-OpenLineage.ProcessingEngineRunFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.RunFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.RunFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-getVersion
-
-
-Returns:
-Processing engine version. Might be Airflow or Spark version.
-
-
-
-
-
-getName
-
-
-Returns:
-Processing engine name, e.g. Airflow or Spark
-
-
-
-
-
-getOpenlineageAdapterVersion
-public String getOpenlineageAdapterVersion ()
-
-Returns:
-OpenLineage adapter package version. Might be e.g. OpenLineage Airflow integration package version
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ProcessingEngineRunFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ProcessingEngineRunFacetBuilder.html
deleted file mode 100644
index 9350118027..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.ProcessingEngineRunFacetBuilder.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-OpenLineage.ProcessingEngineRunFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.ProcessingEngineRunFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of ProcessingEngineRunFacet from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ProcessingEngineRunFacetBuilder
-public ProcessingEngineRunFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-version
-
-
-Parameters:
-version
- Processing engine version. Might be Airflow or Spark version.
-Returns:
-this
-
-
-
-
-
-name
-
-
-Parameters:
-name
- Processing engine name, e.g. Airflow or Spark
-Returns:
-this
-
-
-
-
-
-openlineageAdapterVersion
-
-
-Parameters:
-openlineageAdapterVersion
- OpenLineage adapter package version. Might be e.g. OpenLineage Airflow integration package version
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.Run.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.Run.html
deleted file mode 100644
index 617fedf297..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.Run.html
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
-
-OpenLineage.Run (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.Run
-
extends Object
-model class for Run
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getRunId
-
-
-Returns:
-The globally unique ID of the run associated with the job.
-
-
-
-
-
-getFacets
-
-
-Returns:
-The run facets.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunBuilder.html
deleted file mode 100644
index 6b3a736f62..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunBuilder.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-OpenLineage.RunBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of Run from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-RunBuilder
-public RunBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-runId
-
-
-Parameters:
-runId
- The globally unique ID of the run associated with the job.
-Returns:
-this
-
-
-
-
-
-facets
-
-
-Parameters:
-facets
- The run facets.
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunEvent.EventType.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunEvent.EventType.html
deleted file mode 100644
index f410b3810e..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunEvent.EventType.html
+++ /dev/null
@@ -1,253 +0,0 @@
-
-
-
-
-OpenLineage.RunEvent.EventType (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-Enum Constant Summary
-Enum Constants
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
-
-
-
Returns the enum constant of this class with the specified name.
-
-
-
-
-
Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-
-
-
-
-
Methods inherited from class java.lang.Enum
-
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
-
-
-
-
-
-
-
-
-
-
-Enum Constant Details
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-values
-
-Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-Returns:
-an array containing the constants of this enum class, in the order they are declared
-
-
-
-
-
-valueOf
-
-Returns the enum constant of this class with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this class. (Extraneous whitespace characters are
-not permitted.)
-
-Parameters:
-name
- the name of the enum constant to be returned.
-Returns:
-the enum constant with the specified name
-Throws:
-IllegalArgumentException
- if this enum class has no constant with the specified name
-NullPointerException
- if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunEvent.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunEvent.html
deleted file mode 100644
index cb4192428c..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunEvent.html
+++ /dev/null
@@ -1,249 +0,0 @@
-
-
-
-
-OpenLineage.RunEvent (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-Nested Classes
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getProducer
-
-
-Specified by:
-getProducer
in interface OpenLineage.BaseEvent
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-getSchemaURL
-public URI getSchemaURL ()
-
-Specified by:
-getSchemaURL
in interface OpenLineage.BaseEvent
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this RunEvent
-
-
-
-
-
-getEventType
-
-
-Returns:
-the current transition of the run state. It is required to issue 1 START event and 1 of [ COMPLETE, ABORT, FAIL ] event per run. Additional events with OTHER eventType can be added to the same run. For example to send additional metadata after the run is complete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getOutputs
-
-
-Returns:
-The set of **output** datasets.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunEventBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunEventBuilder.html
deleted file mode 100644
index 87e1c00948..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunEventBuilder.html
+++ /dev/null
@@ -1,267 +0,0 @@
-
-
-
-
-OpenLineage.RunEventBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of RunEvent from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-RunEventBuilder
-public RunEventBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-eventTime
-
-
-Parameters:
-eventTime
- the time the event occurred at
-Returns:
-this
-
-
-
-
-
-eventType
-
-
-Parameters:
-eventType
- the current transition of the run state. It is required to issue 1 START event and 1 of [ COMPLETE, ABORT, FAIL ] event per run. Additional events with OTHER eventType can be added to the same run. For example to send additional metadata after the run is complete
-Returns:
-this
-
-
-
-
-
-run
-
-
-Parameters:
-run
- the run
-Returns:
-this
-
-
-
-
-
-job
-
-
-Parameters:
-job
- the job
-Returns:
-this
-
-
-
-
-
-
-
-
-outputs
-
-
-Parameters:
-outputs
- The set of **output** datasets.
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunFacet.html
deleted file mode 100644
index 042b13ee41..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunFacet.html
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
-OpenLineage.RunFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-
-
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-
-
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunFacets.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunFacets.html
deleted file mode 100644
index 75788074ae..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunFacets.html
+++ /dev/null
@@ -1,194 +0,0 @@
-
-
-
-
-OpenLineage.RunFacets (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.RunFacets
-
extends Object
-model class for RunFacets
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getProcessing_engine
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunFacetsBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunFacetsBuilder.html
deleted file mode 100644
index cb40e0886b..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.RunFacetsBuilder.html
+++ /dev/null
@@ -1,288 +0,0 @@
-
-
-
-
-OpenLineage.RunFacetsBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of RunFacets from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-RunFacetsBuilder
-public RunFacetsBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-errorMessage
-
-
-Parameters:
-errorMessage
- the errorMessage
-Returns:
-this
-
-
-
-
-
-externalQuery
-
-
-Parameters:
-externalQuery
- the externalQuery
-Returns:
-this
-
-
-
-
-
-
-
-
-parent
-
-
-Parameters:
-parent
- the parent
-Returns:
-this
-
-
-
-
-
-nominalTime
-
-
-Parameters:
-nominalTime
- the nominalTime
-Returns:
-this
-
-
-
-
-
-processing_engine
-
-
-Parameters:
-processing_engine
- the processing_engine
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SQLJobFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SQLJobFacet.html
deleted file mode 100644
index 9642af202a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SQLJobFacet.html
+++ /dev/null
@@ -1,204 +0,0 @@
-
-
-
-
-OpenLineage.SQLJobFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.JobFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.JobFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SQLJobFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SQLJobFacetBuilder.html
deleted file mode 100644
index b7115841bd..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SQLJobFacetBuilder.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-OpenLineage.SQLJobFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of SQLJobFacet from the fields set in the builder
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-SQLJobFacetBuilder
-public SQLJobFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-query
-
-
-Parameters:
-query
- the query
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SchemaDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SchemaDatasetFacet.html
deleted file mode 100644
index 51e4820c17..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SchemaDatasetFacet.html
+++ /dev/null
@@ -1,208 +0,0 @@
-
-
-
-
-OpenLineage.SchemaDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.DatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.DatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getFields
-
-
-Returns:
-The fields of the data source.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SchemaDatasetFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SchemaDatasetFacetBuilder.html
deleted file mode 100644
index 41e6a96b9f..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SchemaDatasetFacetBuilder.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-OpenLineage.SchemaDatasetFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of SchemaDatasetFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-SchemaDatasetFacetBuilder
-public SchemaDatasetFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-fields
-
-
-Parameters:
-fields
- The fields of the data source.
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SchemaDatasetFacetFields.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SchemaDatasetFacetFields.html
deleted file mode 100644
index c9bd8a98db..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SchemaDatasetFacetFields.html
+++ /dev/null
@@ -1,179 +0,0 @@
-
-
-
-
-OpenLineage.SchemaDatasetFacetFields (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.SchemaDatasetFacetFields
-
extends Object
-model class for SchemaDatasetFacetFields
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getName
-
-
-Returns:
-The name of the field.
-
-
-
-
-
-getType
-
-
-Returns:
-The type of the field.
-
-
-
-
-
-getDescription
-public String getDescription ()
-
-Returns:
-The description of the field.
-
-
-
-
-
-getFields
-
-
-Returns:
-Nested struct fields.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SchemaDatasetFacetFieldsBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SchemaDatasetFacetFieldsBuilder.html
deleted file mode 100644
index 515b331fa9..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SchemaDatasetFacetFieldsBuilder.html
+++ /dev/null
@@ -1,237 +0,0 @@
-
-
-
-
-OpenLineage.SchemaDatasetFacetFieldsBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.SchemaDatasetFacetFieldsBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of SchemaDatasetFacetFields from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-SchemaDatasetFacetFieldsBuilder
-public SchemaDatasetFacetFieldsBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-name
-
-
-Parameters:
-name
- The name of the field.
-Returns:
-this
-
-
-
-
-
-type
-
-
-Parameters:
-type
- The type of the field.
-Returns:
-this
-
-
-
-
-
-description
-
-
-Parameters:
-description
- The description of the field.
-Returns:
-this
-
-
-
-
-
-fields
-
-
-Parameters:
-fields
- Nested struct fields.
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SourceCodeJobFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SourceCodeJobFacet.html
deleted file mode 100644
index e45aeae407..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SourceCodeJobFacet.html
+++ /dev/null
@@ -1,221 +0,0 @@
-
-
-
-
-OpenLineage.SourceCodeJobFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.JobFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.JobFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getLanguage
-
-
-Returns:
-Language in which source code of this job was written.
-
-
-
-
-
-getSourceCode
-
-
-Returns:
-Source code of this job.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SourceCodeJobFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SourceCodeJobFacetBuilder.html
deleted file mode 100644
index a206d7a522..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SourceCodeJobFacetBuilder.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-OpenLineage.SourceCodeJobFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of SourceCodeJobFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-SourceCodeJobFacetBuilder
-public SourceCodeJobFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-language
-
-
-Parameters:
-language
- Language in which source code of this job was written.
-Returns:
-this
-
-
-
-
-
-sourceCode
-
-
-Parameters:
-sourceCode
- Source code of this job.
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SourceCodeLocationJobFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SourceCodeLocationJobFacet.html
deleted file mode 100644
index 9a9556e8b5..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SourceCodeLocationJobFacet.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-OpenLineage.SourceCodeLocationJobFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.JobFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.JobFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getType
-
-
-Returns:
-the source control system
-
-
-
-
-
-getUrl
-
-
-Returns:
-the full http URL to locate the file
-
-
-
-
-
-getRepoUrl
-
-
-Returns:
-the URL to the repository
-
-
-
-
-
-getPath
-
-
-Returns:
-the path in the repo containing the source files
-
-
-
-
-
-getVersion
-
-
-Returns:
-the current version deployed (not a branch name, the actual unique version)
-
-
-
-
-
-getTag
-
-
-Returns:
-optional tag name
-
-
-
-
-
-getBranch
-
-
-Returns:
-optional branch name
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SourceCodeLocationJobFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SourceCodeLocationJobFacetBuilder.html
deleted file mode 100644
index c64172eda3..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SourceCodeLocationJobFacetBuilder.html
+++ /dev/null
@@ -1,303 +0,0 @@
-
-
-
-
-OpenLineage.SourceCodeLocationJobFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.SourceCodeLocationJobFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
build an instance of SourceCodeLocationJobFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-SourceCodeLocationJobFacetBuilder
-public SourceCodeLocationJobFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-type
-
-
-Parameters:
-type
- the source control system
-Returns:
-this
-
-
-
-
-
-url
-
-
-Parameters:
-url
- the full http URL to locate the file
-Returns:
-this
-
-
-
-
-
-repoUrl
-
-
-Parameters:
-repoUrl
- the URL to the repository
-Returns:
-this
-
-
-
-
-
-path
-
-
-Parameters:
-path
- the path in the repo containing the source files
-Returns:
-this
-
-
-
-
-
-version
-
-
-Parameters:
-version
- the current version deployed (not a branch name, the actual unique version)
-Returns:
-this
-
-
-
-
-
-tag
-
-
-Parameters:
-tag
- optional tag name
-Returns:
-this
-
-
-
-
-
-branch
-
-
-Parameters:
-branch
- optional branch name
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.StaticDataset.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.StaticDataset.html
deleted file mode 100644
index 44f908cbc4..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.StaticDataset.html
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-OpenLineage.StaticDataset (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getName
-
-
-Specified by:
-getName
in interface OpenLineage.Dataset
-Returns:
-The unique name for that dataset within that namespace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.StaticDatasetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.StaticDatasetBuilder.html
deleted file mode 100644
index 1262e43584..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.StaticDatasetBuilder.html
+++ /dev/null
@@ -1,222 +0,0 @@
-
-
-
-
-OpenLineage.StaticDatasetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of StaticDataset from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-StaticDatasetBuilder
-public StaticDatasetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-namespace
-
-
-Parameters:
-namespace
- The namespace containing that dataset
-Returns:
-this
-
-
-
-
-
-name
-
-
-Parameters:
-name
- The unique name for that dataset within that namespace
-Returns:
-this
-
-
-
-
-
-facets
-
-
-Parameters:
-facets
- The facets for this dataset
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.StorageDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.StorageDatasetFacet.html
deleted file mode 100644
index d81748c57d..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.StorageDatasetFacet.html
+++ /dev/null
@@ -1,221 +0,0 @@
-
-
-
-
-OpenLineage.StorageDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.DatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.DatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-getStorageLayer
-public String getStorageLayer ()
-
-Returns:
-Storage layer provider with allowed values: iceberg, delta.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.StorageDatasetFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.StorageDatasetFacetBuilder.html
deleted file mode 100644
index 503bfe75b3..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.StorageDatasetFacetBuilder.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-OpenLineage.StorageDatasetFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.StorageDatasetFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of StorageDatasetFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-StorageDatasetFacetBuilder
-public StorageDatasetFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-storageLayer
-
-
-Parameters:
-storageLayer
- Storage layer provider with allowed values: iceberg, delta.
-Returns:
-this
-
-
-
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SymlinksDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SymlinksDatasetFacet.html
deleted file mode 100644
index 37368b98ea..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SymlinksDatasetFacet.html
+++ /dev/null
@@ -1,204 +0,0 @@
-
-
-
-
-OpenLineage.SymlinksDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.DatasetFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.DatasetFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SymlinksDatasetFacetBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SymlinksDatasetFacetBuilder.html
deleted file mode 100644
index c0b8f4231f..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SymlinksDatasetFacetBuilder.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-OpenLineage.SymlinksDatasetFacetBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.SymlinksDatasetFacetBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of SymlinksDatasetFacet from the fields set in the builder
-
-
-
-
-
-
-
-
add additional properties
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-SymlinksDatasetFacetBuilder
-public SymlinksDatasetFacetBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-identifiers
-
-
-Parameters:
-identifiers
- the identifiers
-Returns:
-this
-
-
-
-
-
-put
-
-add additional properties
-
-Parameters:
-key
- the additional property name
-value
- the additional property value
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SymlinksDatasetFacetIdentifiers.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SymlinksDatasetFacetIdentifiers.html
deleted file mode 100644
index 0e2508edb9..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SymlinksDatasetFacetIdentifiers.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-OpenLineage.SymlinksDatasetFacetIdentifiers (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.SymlinksDatasetFacetIdentifiers
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.SymlinksDatasetFacetIdentifiers
-
extends Object
-model class for SymlinksDatasetFacetIdentifiers
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getNamespace
-
-
-Returns:
-The dataset namespace
-
-
-
-
-
-getName
-
-
-Returns:
-The dataset name
-
-
-
-
-
-getType
-
-
-Returns:
-Identifier type
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SymlinksDatasetFacetIdentifiersBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SymlinksDatasetFacetIdentifiersBuilder.html
deleted file mode 100644
index f6adf9f8fe..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.SymlinksDatasetFacetIdentifiersBuilder.html
+++ /dev/null
@@ -1,222 +0,0 @@
-
-
-
-
-OpenLineage.SymlinksDatasetFacetIdentifiersBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineage.SymlinksDatasetFacetIdentifiersBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
build an instance of SymlinksDatasetFacetIdentifiers from the fields set in the builder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-SymlinksDatasetFacetIdentifiersBuilder
-public SymlinksDatasetFacetIdentifiersBuilder ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-namespace
-
-
-Parameters:
-namespace
- The dataset namespace
-Returns:
-this
-
-
-
-
-
-name
-
-
-Parameters:
-name
- The dataset name
-Returns:
-this
-
-
-
-
-
-type
-
-
-Parameters:
-type
- Identifier type
-Returns:
-this
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.html
deleted file mode 100644
index a2d3c3923a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineage.html
+++ /dev/null
@@ -1,3036 +0,0 @@
-
-
-
-
-OpenLineage (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public final class OpenLineage
-
extends Object
-Usage:
-
- URI producer = URI.create("http://my.producer/uri");
- OpenLineage ol = new OpenLineage(producer);
- UUID runId = UUID.randomUUID();
- RunFacets runFacets =
- ol.newRunFacetsBuilder().nominalTime(ol.newNominalTimeRunFacet(now, now)).build();
- Run run = ol.newRun(runId, runFacets);
- String name = "jobName";
- String namespace = "namespace";
- JobFacets jobFacets = ol.newJobFacetsBuilder().build();
- Job job = ol.newJob(namespace, name, jobFacets);
- List<InputDataset> inputs = Arrays.asList(ol.newInputDataset("ins", "input", null, null));
- List<OutputDataset> outputs = Arrays.asList(ol.newOutputDataset("ons", "output", null, null));
- RunEvent runStateUpdate =
- ol.newRunEvent(now, OpenLineage.RunEvent.EventType.START, run, job, inputs, outputs);
-
-
-
-
-
-
-
-Nested Class Summary
-Nested Classes
-
-
-
-
-
static interface
-
-
-
Interface for BaseEvent
-
-
static interface
-
-
-
Interface for BaseFacet
-
-
static interface
-
-
-
static final class
-
-
-
model class for ColumnLineageDatasetFacet
-
-
final class
-
-
-
builder class for ColumnLineageDatasetFacet
-
-
static final class
-
-
-
model class for ColumnLineageDatasetFacetFields
-
-
static final class
-
-
-
model class for ColumnLineageDatasetFacetFieldsAdditional
-
-
static final class
-
-
-
builder class for ColumnLineageDatasetFacetFieldsAdditional
-
-
static final class
-
-
-
model class for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-
static final class
-
-
-
builder class for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-
static final class
-
-
-
model class for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-
static final class
-
-
-
builder class for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-
static final class
-
-
-
builder class for ColumnLineageDatasetFacetFields
-
-
static final class
-
-
-
model class for DataQualityAssertionsDatasetFacet
-
-
static final class
-
-
-
model class for DataQualityAssertionsDatasetFacetAssertions
-
-
static final class
-
-
-
builder class for DataQualityAssertionsDatasetFacetAssertions
-
-
final class
-
-
-
builder class for DataQualityAssertionsDatasetFacet
-
-
static final class
-
-
-
model class for DataQualityMetricsInputDatasetFacet
-
-
final class
-
-
-
builder class for DataQualityMetricsInputDatasetFacet
-
-
static final class
-
-
-
model class for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-
static final class
-
-
-
model class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-
static final class
-
-
-
builder class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-
static final class
-
-
-
model class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-
static final class
-
-
-
builder class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-
static final class
-
-
-
builder class for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-
static interface
-
-
-
static final class
-
-
-
model class for DatasetEvent
-
-
final class
-
-
-
builder class for DatasetEvent
-
-
static interface
-
-
-
Interface for DatasetFacet
-
-
static final class
-
-
-
model class for DatasetFacets
-
-
static final class
-
-
-
builder class for DatasetFacets
-
-
static final class
-
-
-
model class for DatasetVersionDatasetFacet
-
-
final class
-
-
-
builder class for DatasetVersionDatasetFacet
-
-
static final class
-
-
-
model class for DatasourceDatasetFacet
-
-
final class
-
-
-
builder class for DatasourceDatasetFacet
-
-
static class
-
-
-
static class
-
-
-
static class
-
-
-
static class
-
-
-
static class
-
-
-
static final class
-
-
-
model class for DocumentationDatasetFacet
-
-
final class
-
-
-
builder class for DocumentationDatasetFacet
-
-
static final class
-
-
-
model class for DocumentationJobFacet
-
-
final class
-
-
-
builder class for DocumentationJobFacet
-
-
static final class
-
-
-
model class for ErrorMessageRunFacet
-
-
final class
-
-
-
builder class for ErrorMessageRunFacet
-
-
static final class
-
-
-
model class for ExternalQueryRunFacet
-
-
final class
-
-
-
builder class for ExternalQueryRunFacet
-
-
static final class
-
-
-
model class for ExtractionErrorRunFacet
-
-
final class
-
-
-
builder class for ExtractionErrorRunFacet
-
-
static final class
-
-
-
model class for ExtractionErrorRunFacetErrors
-
-
static final class
-
-
-
builder class for ExtractionErrorRunFacetErrors
-
-
static final class
-
-
-
model class for GcpCommonJobFacet
-
-
final class
-
-
-
builder class for GcpCommonJobFacet
-
-
static final class
-
-
-
model class for GcpCommonJobFacetOrigin
-
-
static final class
-
-
-
builder class for GcpCommonJobFacetOrigin
-
-
static final class
-
-
-
model class for InputDataset
-
-
static final class
-
-
-
builder class for InputDataset
-
-
static interface
-
-
-
Interface for InputDatasetFacet
-
-
static final class
-
-
-
model class for InputDatasetInputFacets
-
-
static final class
-
-
-
builder class for InputDatasetInputFacets
-
-
static final class
-
-
-
static final class
-
-
-
static final class
-
-
-
model class for JobEvent
-
-
final class
-
-
-
builder class for JobEvent
-
-
static interface
-
-
-
Interface for JobFacet
-
-
static final class
-
-
-
model class for JobFacets
-
-
static final class
-
-
-
builder class for JobFacets
-
-
static final class
-
-
-
model class for JobTypeJobFacet
-
-
final class
-
-
-
builder class for JobTypeJobFacet
-
-
static final class
-
-
-
model class for LifecycleStateChangeDatasetFacet
-
-
final class
-
-
-
builder class for LifecycleStateChangeDatasetFacet
-
-
static final class
-
-
-
model class for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-
static final class
-
-
-
builder class for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-
static final class
-
-
-
model class for NominalTimeRunFacet
-
-
final class
-
-
-
builder class for NominalTimeRunFacet
-
-
static final class
-
-
-
model class for OutputDataset
-
-
static final class
-
-
-
builder class for OutputDataset
-
-
static interface
-
-
-
Interface for OutputDatasetFacet
-
-
static final class
-
-
-
model class for OutputDatasetOutputFacets
-
-
static final class
-
-
-
builder class for OutputDatasetOutputFacets
-
-
static final class
-
-
-
model class for OutputStatisticsOutputDatasetFacet
-
-
final class
-
-
-
builder class for OutputStatisticsOutputDatasetFacet
-
-
static final class
-
-
-
model class for OwnershipDatasetFacet
-
-
final class
-
-
-
builder class for OwnershipDatasetFacet
-
-
static final class
-
-
-
model class for OwnershipDatasetFacetOwners
-
-
static final class
-
-
-
builder class for OwnershipDatasetFacetOwners
-
-
static final class
-
-
-
model class for OwnershipJobFacet
-
-
final class
-
-
-
builder class for OwnershipJobFacet
-
-
static final class
-
-
-
model class for OwnershipJobFacetOwners
-
-
static final class
-
-
-
builder class for OwnershipJobFacetOwners
-
-
static final class
-
-
-
model class for ParentRunFacet
-
-
final class
-
-
-
builder class for ParentRunFacet
-
-
static final class
-
-
-
model class for ParentRunFacetJob
-
-
static final class
-
-
-
builder class for ParentRunFacetJob
-
-
static final class
-
-
-
model class for ParentRunFacetRun
-
-
static final class
-
-
-
builder class for ParentRunFacetRun
-
-
static final class
-
-
-
model class for ProcessingEngineRunFacet
-
-
final class
-
-
-
builder class for ProcessingEngineRunFacet
-
-
static final class
-
-
-
static final class
-
-
-
static final class
-
-
-
model class for RunEvent
-
-
final class
-
-
-
builder class for RunEvent
-
-
static interface
-
-
-
Interface for RunFacet
-
-
static final class
-
-
-
model class for RunFacets
-
-
static final class
-
-
-
builder class for RunFacets
-
-
static final class
-
-
-
model class for SchemaDatasetFacet
-
-
final class
-
-
-
builder class for SchemaDatasetFacet
-
-
static final class
-
-
-
model class for SchemaDatasetFacetFields
-
-
static final class
-
-
-
builder class for SchemaDatasetFacetFields
-
-
static final class
-
-
-
model class for SourceCodeJobFacet
-
-
final class
-
-
-
builder class for SourceCodeJobFacet
-
-
static final class
-
-
-
model class for SourceCodeLocationJobFacet
-
-
final class
-
-
-
builder class for SourceCodeLocationJobFacet
-
-
static final class
-
-
-
model class for SQLJobFacet
-
-
final class
-
-
-
builder class for SQLJobFacet
-
-
static final class
-
-
-
model class for StaticDataset
-
-
static final class
-
-
-
builder class for StaticDataset
-
-
static final class
-
-
-
model class for StorageDatasetFacet
-
-
final class
-
-
-
builder class for StorageDatasetFacet
-
-
static final class
-
-
-
model class for SymlinksDatasetFacet
-
-
final class
-
-
-
builder class for SymlinksDatasetFacet
-
-
static final class
-
-
-
model class for SymlinksDatasetFacetIdentifiers
-
-
static final class
-
-
-
builder class for SymlinksDatasetFacetIdentifiers
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
Starting point to create OpenLineage objects.
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
Factory method for ColumnLineageDatasetFacet
-
-
-
-
-
Creates a builder for ColumnLineageDatasetFacet
-
-
-
-
-
Factory method for ColumnLineageDatasetFacetFields
-
-
-
-
-
Factory method for ColumnLineageDatasetFacetFieldsAdditional
-
-
-
-
-
Creates a builder for ColumnLineageDatasetFacetFieldsAdditional
-
-
-
-
-
Factory method for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-
-
-
-
Creates a builder for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-
-
-
-
Factory method for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-
-
-
-
Creates a builder for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-
-
-
-
Creates a builder for ColumnLineageDatasetFacetFields
-
-
-
-
-
Factory method for DataQualityAssertionsDatasetFacet
-
-
-
-
-
Factory method for DataQualityAssertionsDatasetFacetAssertions
-
-
-
-
-
Creates a builder for DataQualityAssertionsDatasetFacetAssertions
-
-
-
-
-
Creates a builder for DataQualityAssertionsDatasetFacet
-
-
-
-
-
Factory method for DataQualityMetricsInputDatasetFacet
-
-
-
-
-
Creates a builder for DataQualityMetricsInputDatasetFacet
-
-
-
-
-
Factory method for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-
-
-
-
Factory method for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-
-
-
-
Creates a builder for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-
-
-
-
Factory method for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-
-
-
-
Creates a builder for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-
-
-
-
Creates a builder for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-
-
-
-
Factory method for DatasetEvent
-
-
-
-
-
Creates a builder for DatasetEvent
-
-
-
-
-
-
-
-
Factory method for DatasetFacets
-
-
-
-
-
Creates a builder for DatasetFacets
-
-
-
-
-
Factory method for DatasetVersionDatasetFacet
-
-
-
-
-
Creates a builder for DatasetVersionDatasetFacet
-
-
-
-
-
Factory method for DatasourceDatasetFacet
-
-
-
-
-
Creates a builder for DatasourceDatasetFacet
-
-
-
-
-
-
-
-
-
-
-
Factory method for DocumentationDatasetFacet
-
-
-
-
-
Creates a builder for DocumentationDatasetFacet
-
-
-
-
-
Factory method for DocumentationJobFacet
-
-
-
-
-
Creates a builder for DocumentationJobFacet
-
-
-
-
-
Factory method for ErrorMessageRunFacet
-
-
-
-
-
Creates a builder for ErrorMessageRunFacet
-
-
-
-
-
Factory method for ExternalQueryRunFacet
-
-
-
-
-
Creates a builder for ExternalQueryRunFacet
-
-
-
-
-
Factory method for ExtractionErrorRunFacet
-
-
-
-
-
Creates a builder for ExtractionErrorRunFacet
-
-
-
-
-
Factory method for ExtractionErrorRunFacetErrors
-
-
-
-
-
Creates a builder for ExtractionErrorRunFacetErrors
-
-
-
-
-
Factory method for GcpCommonJobFacet
-
-
-
-
-
Creates a builder for GcpCommonJobFacet
-
-
-
-
-
Factory method for GcpCommonJobFacetOrigin
-
-
-
-
-
Creates a builder for GcpCommonJobFacetOrigin
-
-
-
-
-
Factory method for InputDataset
-
-
-
-
-
Creates a builder for InputDataset
-
-
-
-
-
-
-
-
Factory method for InputDatasetInputFacets
-
-
-
-
-
Creates a builder for InputDatasetInputFacets
-
-
-
-
-
Factory method for Job
-
-
-
-
-
Creates a builder for Job
-
-
-
-
-
Factory method for JobEvent
-
-
-
-
-
Creates a builder for JobEvent
-
-
-
-
-
-
-
-
Factory method for JobFacets
-
-
-
-
-
Creates a builder for JobFacets
-
-
-
-
-
Factory method for JobTypeJobFacet
-
-
-
-
-
Creates a builder for JobTypeJobFacet
-
-
-
-
-
Factory method for LifecycleStateChangeDatasetFacet
-
-
-
-
-
Creates a builder for LifecycleStateChangeDatasetFacet
-
-
-
-
-
Factory method for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-
-
-
-
Creates a builder for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-
-
-
-
Factory method for NominalTimeRunFacet
-
-
-
-
-
Creates a builder for NominalTimeRunFacet
-
-
-
-
-
Factory method for OutputDataset
-
-
-
-
-
Creates a builder for OutputDataset
-
-
-
-
-
-
-
-
Factory method for OutputDatasetOutputFacets
-
-
-
-
-
Creates a builder for OutputDatasetOutputFacets
-
-
-
-
-
Factory method for OutputStatisticsOutputDatasetFacet
-
-
-
-
-
Creates a builder for OutputStatisticsOutputDatasetFacet
-
-
-
-
-
Factory method for OwnershipDatasetFacet
-
-
-
-
-
Creates a builder for OwnershipDatasetFacet
-
-
-
-
-
Factory method for OwnershipDatasetFacetOwners
-
-
-
-
-
Creates a builder for OwnershipDatasetFacetOwners
-
-
-
-
-
Factory method for OwnershipJobFacet
-
-
-
-
-
Creates a builder for OwnershipJobFacet
-
-
-
-
-
Factory method for OwnershipJobFacetOwners
-
-
-
-
-
Creates a builder for OwnershipJobFacetOwners
-
-
-
-
-
Factory method for ParentRunFacet
-
-
-
-
-
Creates a builder for ParentRunFacet
-
-
-
-
-
Factory method for ParentRunFacetJob
-
-
-
-
-
Creates a builder for ParentRunFacetJob
-
-
-
-
-
Factory method for ParentRunFacetRun
-
-
-
-
-
Creates a builder for ParentRunFacetRun
-
-
-
-
-
Factory method for ProcessingEngineRunFacet
-
-
-
-
-
Creates a builder for ProcessingEngineRunFacet
-
-
-
-
-
Factory method for Run
-
-
-
-
-
Creates a builder for Run
-
-
-
-
-
Factory method for RunEvent
-
-
-
-
-
Creates a builder for RunEvent
-
-
-
-
-
-
-
-
Factory method for RunFacets
-
-
-
-
-
Creates a builder for RunFacets
-
-
-
-
-
Factory method for SchemaDatasetFacet
-
-
-
-
-
Creates a builder for SchemaDatasetFacet
-
-
-
-
-
Factory method for SchemaDatasetFacetFields
-
-
-
-
-
Creates a builder for SchemaDatasetFacetFields
-
-
-
-
-
Factory method for SourceCodeJobFacet
-
-
-
-
-
Creates a builder for SourceCodeJobFacet
-
-
-
-
-
Factory method for SourceCodeLocationJobFacet
-
-
-
-
-
Creates a builder for SourceCodeLocationJobFacet
-
-
-
-
-
Factory method for SQLJobFacet
-
-
-
-
-
Creates a builder for SQLJobFacet
-
-
-
-
-
Factory method for StaticDataset
-
-
-
-
-
Creates a builder for StaticDataset
-
-
-
-
-
Factory method for StorageDatasetFacet
-
-
-
-
-
Creates a builder for StorageDatasetFacet
-
-
-
-
-
Factory method for SymlinksDatasetFacet
-
-
-
-
-
Creates a builder for SymlinksDatasetFacet
-
-
-
-
-
Factory method for SymlinksDatasetFacetIdentifiers
-
-
-
-
-
Creates a builder for SymlinksDatasetFacetIdentifiers
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OpenLineage
-public OpenLineage (URI producer)
-Starting point to create OpenLineage objects. Use the OpenLineage instance to create events and facets
-
-Parameters:
-producer
- the identifier of the library using the client to generate OpenLineage events
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-newRunEvent
-
-Factory method for RunEvent
-
-Parameters:
-eventTime
- the time the event occurred at
-eventType
- the current transition of the run state. It is required to issue 1 START event and 1 of [ COMPLETE, ABORT, FAIL ] event per run. Additional events with OTHER eventType can be added to the same run. For example to send additional metadata after the run is complete
-run
- the run
-job
- the job
-inputs
- The set of **input** datasets.
-outputs
- The set of **output** datasets.
-Returns:
-RunEvent
-
-
-
-
-
-newRunEventBuilder
-
-Creates a builder for RunEvent
-
-Returns:
-a new builder for RunEvent
-
-
-
-
-
-newSchemaDatasetFacetFields
-
-Factory method for SchemaDatasetFacetFields
-
-Parameters:
-name
- The name of the field.
-type
- The type of the field.
-description
- The description of the field.
-fields
- Nested struct fields.
-Returns:
-SchemaDatasetFacetFields
-
-
-
-
-
-newSchemaDatasetFacetFieldsBuilder
-
-Creates a builder for SchemaDatasetFacetFields
-
-Returns:
-a new builder for SchemaDatasetFacetFields
-
-
-
-
-
-newParentRunFacet
-
-Factory method for ParentRunFacet
-
-Parameters:
-run
- the run
-job
- the job
-Returns:
-ParentRunFacet
-
-
-
-
-
-newParentRunFacetBuilder
-
-Creates a builder for ParentRunFacet
-
-Returns:
-a new builder for ParentRunFacet
-
-
-
-
-
-newOutputStatisticsOutputDatasetFacet
-
-Factory method for OutputStatisticsOutputDatasetFacet
-
-Parameters:
-rowCount
- The number of rows written to the dataset
-size
- The size in bytes written to the dataset
-fileCount
- The number of files written to the dataset
-Returns:
-OutputStatisticsOutputDatasetFacet
-
-
-
-
-
-newOutputStatisticsOutputDatasetFacetBuilder
-
-Creates a builder for OutputStatisticsOutputDatasetFacet
-
-Returns:
-a new builder for OutputStatisticsOutputDatasetFacet
-
-
-
-
-
-
-
-
-
-
-
-newJobTypeJobFacet
-
-Factory method for JobTypeJobFacet
-
-Parameters:
-processingType
- Job processing type like: BATCH or STREAMING
-integration
- OpenLineage integration type of this job: for example SPARK|DBT|AIRFLOW|FLINK
-jobType
- Run type, for example: QUERY|COMMAND|DAG|TASK|JOB|MODEL. This is an integration-specific field.
-Returns:
-JobTypeJobFacet
-
-
-
-
-
-newJobTypeJobFacetBuilder
-
-Creates a builder for JobTypeJobFacet
-
-Returns:
-a new builder for JobTypeJobFacet
-
-
-
-
-
-newRun
-
-Factory method for Run
-
-Parameters:
-runId
- The globally unique ID of the run associated with the job.
-facets
- The run facets.
-Returns:
-Run
-
-
-
-
-
-newRunBuilder
-
-Creates a builder for Run
-
-Returns:
-a new builder for Run
-
-
-
-
-
-
-
-
-
-
-
-newExternalQueryRunFacet
-
-Factory method for ExternalQueryRunFacet
-
-Parameters:
-externalQueryId
- Identifier for the external system
-source
- source of the external query
-Returns:
-ExternalQueryRunFacet
-
-
-
-
-
-newExternalQueryRunFacetBuilder
-
-Creates a builder for ExternalQueryRunFacet
-
-Returns:
-a new builder for ExternalQueryRunFacet
-
-
-
-
-
-newOutputDatasetOutputFacets
-
-Factory method for OutputDatasetOutputFacets
-
-Parameters:
-outputStatistics
- the outputStatistics
-Returns:
-OutputDatasetOutputFacets
-
-
-
-
-
-newOutputDatasetOutputFacetsBuilder
-
-Creates a builder for OutputDatasetOutputFacets
-
-Returns:
-a new builder for OutputDatasetOutputFacets
-
-
-
-
-
-newNominalTimeRunFacet
-
-Factory method for NominalTimeRunFacet
-
-Parameters:
-nominalStartTime
- An [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp representing the nominal start time (included) of the run. AKA the schedule time
-nominalEndTime
- An [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp representing the nominal end time (excluded) of the run. (Should be the nominal start time of the next run)
-Returns:
-NominalTimeRunFacet
-
-
-
-
-
-newNominalTimeRunFacetBuilder
-
-Creates a builder for NominalTimeRunFacet
-
-Returns:
-a new builder for NominalTimeRunFacet
-
-
-
-
-
-newRunFacet
-
-
-Returns:
-RunFacet
-
-
-
-
-
-newOwnershipJobFacetOwners
-
-Factory method for OwnershipJobFacetOwners
-
-Parameters:
-name
- the identifier of the owner of the Job. It is recommended to define this as a URN. For example application:foo, user:jdoe, team:data
-type
- The type of ownership (optional)
-Returns:
-OwnershipJobFacetOwners
-
-
-
-
-
-newOwnershipJobFacetOwnersBuilder
-
-Creates a builder for OwnershipJobFacetOwners
-
-Returns:
-a new builder for OwnershipJobFacetOwners
-
-
-
-
-
-
-
-
-newJobEvent
-
-Factory method for JobEvent
-
-Parameters:
-eventTime
- the time the event occurred at
-job
- the job
-inputs
- The set of **input** datasets.
-outputs
- The set of **output** datasets.
-Returns:
-JobEvent
-
-
-
-
-
-newJobEventBuilder
-
-Creates a builder for JobEvent
-
-Returns:
-a new builder for JobEvent
-
-
-
-
-
-newColumnLineageDatasetFacetFieldsAdditional
-
-Factory method for ColumnLineageDatasetFacetFieldsAdditional
-
-Parameters:
-inputFields
- the inputFields
-transformationDescription
- a string representation of the transformation applied
-transformationType
- IDENTITY|MASKED reflects a clearly defined behavior. IDENTITY: exact same as input; MASKED: no original data available (like a hash of PII for example)
-Returns:
-ColumnLineageDatasetFacetFieldsAdditional
-
-
-
-
-
-newColumnLineageDatasetFacetFieldsAdditionalBuilder
-
-Creates a builder for ColumnLineageDatasetFacetFieldsAdditional
-
-Returns:
-a new builder for ColumnLineageDatasetFacetFieldsAdditional
-
-
-
-
-
-
-
-
-
-
-
-newOwnershipDatasetFacetOwners
-
-Factory method for OwnershipDatasetFacetOwners
-
-Parameters:
-name
- the identifier of the owner of the Dataset. It is recommended to define this as a URN. For example application:foo, user:jdoe, team:data
-type
- The type of ownership (optional)
-Returns:
-OwnershipDatasetFacetOwners
-
-
-
-
-
-newOwnershipDatasetFacetOwnersBuilder
-
-Creates a builder for OwnershipDatasetFacetOwners
-
-Returns:
-a new builder for OwnershipDatasetFacetOwners
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-newDocumentationJobFacet
-
-Factory method for DocumentationJobFacet
-
-Parameters:
-description
- The description of the job.
-Returns:
-DocumentationJobFacet
-
-
-
-
-
-newDocumentationJobFacetBuilder
-
-Creates a builder for DocumentationJobFacet
-
-Returns:
-a new builder for DocumentationJobFacet
-
-
-
-
-
-newGcpCommonJobFacet
-
-Factory method for GcpCommonJobFacet
-
-Parameters:
-displayName
- The name of the job to be used on UI
-origin
- the origin
-Returns:
-GcpCommonJobFacet
-
-
-
-
-
-newGcpCommonJobFacetBuilder
-
-Creates a builder for GcpCommonJobFacet
-
-Returns:
-a new builder for GcpCommonJobFacet
-
-
-
-
-
-newJobFacets
-
-Factory method for JobFacets
-
-Parameters:
-jobType
- the jobType
-gcp_common
- the gcp_common
-sourceCode
- the sourceCode
-ownership
- the ownership
-sql
- the sql
-sourceCodeLocation
- the sourceCodeLocation
-documentation
- the documentation
-Returns:
-JobFacets
-
-
-
-
-
-newJobFacetsBuilder
-
-Creates a builder for JobFacets
-
-Returns:
-a new builder for JobFacets
-
-
-
-
-
-
-
-
-
-
-
-newDatasetFacet
-
-
-Returns:
-DatasetFacet
-
-
-
-
-
-newDeletedDatasetFacet
-
-
-Returns:
-a deleted DatasetFacet
-
-
-
-
-
-newOwnershipDatasetFacet
-
-Factory method for OwnershipDatasetFacet
-
-Parameters:
-owners
- The owners of the dataset.
-Returns:
-OwnershipDatasetFacet
-
-
-
-
-
-newOwnershipDatasetFacetBuilder
-
-Creates a builder for OwnershipDatasetFacet
-
-Returns:
-a new builder for OwnershipDatasetFacet
-
-
-
-
-
-newSQLJobFacet
-
-Factory method for SQLJobFacet
-
-Parameters:
-query
- the query
-Returns:
-SQLJobFacet
-
-
-
-
-
-newSQLJobFacetBuilder
-
-Creates a builder for SQLJobFacet
-
-Returns:
-a new builder for SQLJobFacet
-
-
-
-
-
-newDatasetFacets
-
-Factory method for DatasetFacets
-
-Parameters:
-documentation
- the documentation
-dataSource
- the dataSource
-version
- the version
-schema
- the schema
-ownership
- the ownership
-storage
- the storage
-columnLineage
- the columnLineage
-symlinks
- the symlinks
-lifecycleStateChange
- the lifecycleStateChange
-Returns:
-DatasetFacets
-
-
-
-
-
-newDatasetFacetsBuilder
-
-Creates a builder for DatasetFacets
-
-Returns:
-a new builder for DatasetFacets
-
-
-
-
-
-newOwnershipJobFacet
-
-Factory method for OwnershipJobFacet
-
-Parameters:
-owners
- The owners of the job.
-Returns:
-OwnershipJobFacet
-
-
-
-
-
-newOwnershipJobFacetBuilder
-
-Creates a builder for OwnershipJobFacet
-
-Returns:
-a new builder for OwnershipJobFacet
-
-
-
-
-
-newParentRunFacetJob
-
-Factory method for ParentRunFacetJob
-
-Parameters:
-namespace
- The namespace containing that job
-name
- The unique name for that job within that namespace
-Returns:
-ParentRunFacetJob
-
-
-
-
-
-newParentRunFacetJobBuilder
-
-Creates a builder for ParentRunFacetJob
-
-Returns:
-a new builder for ParentRunFacetJob
-
-
-
-
-
-newOutputDataset
-
-Factory method for OutputDataset
-
-Parameters:
-namespace
- The namespace containing that dataset
-name
- The unique name for that dataset within that namespace
-facets
- The facets for this dataset
-outputFacets
- The output facets for this dataset
-Returns:
-OutputDataset
-
-
-
-
-
-newOutputDatasetBuilder
-
-Creates a builder for OutputDataset
-
-Returns:
-a new builder for OutputDataset
-
-
-
-
-
-newErrorMessageRunFacet
-
-Factory method for ErrorMessageRunFacet
-
-Parameters:
-message
- A human-readable string representing error message generated by observed system
-programmingLanguage
- Programming language the observed system uses.
-stackTrace
- A language-specific stack trace generated by observed system
-Returns:
-ErrorMessageRunFacet
-
-
-
-
-
-newErrorMessageRunFacetBuilder
-
-Creates a builder for ErrorMessageRunFacet
-
-Returns:
-a new builder for ErrorMessageRunFacet
-
-
-
-
-
-newJobFacet
-
-
-Returns:
-JobFacet
-
-
-
-
-
-newDeletedJobFacet
-
-
-Returns:
-a deleted JobFacet
-
-
-
-
-
-
-
-
-newRunFacetsBuilder
-
-Creates a builder for RunFacets
-
-Returns:
-a new builder for RunFacets
-
-
-
-
-
-newSchemaDatasetFacet
-
-Factory method for SchemaDatasetFacet
-
-Parameters:
-fields
- The fields of the data source.
-Returns:
-SchemaDatasetFacet
-
-
-
-
-
-newSchemaDatasetFacetBuilder
-
-Creates a builder for SchemaDatasetFacet
-
-Returns:
-a new builder for SchemaDatasetFacet
-
-
-
-
-
-newGcpCommonJobFacetOrigin
-
-Factory method for GcpCommonJobFacetOrigin
-
-Parameters:
-sourceType
- Type of the source. Possible values can be found in GCP documentation (https://cloud.google.com/data-catalog/docs/reference/data-lineage/rest/v1/projects.locations.processes#SourceType)
-name
- If the sourceType isn't CUSTOM, the value of this field should be a GCP resource name of the system, which reports lineage. The project and location parts of the resource name must match the project and location of the lineage resource being created. More details in GCP documentation https://cloud.google.com/data-catalog/docs/reference/data-lineage/rest/v1/projects.locations.processes#origin
-Returns:
-GcpCommonJobFacetOrigin
-
-
-
-
-
-newGcpCommonJobFacetOriginBuilder
-
-Creates a builder for GcpCommonJobFacetOrigin
-
-Returns:
-a new builder for GcpCommonJobFacetOrigin
-
-
-
-
-
-newSourceCodeJobFacet
-
-Factory method for SourceCodeJobFacet
-
-Parameters:
-language
- Language in which source code of this job was written.
-sourceCode
- Source code of this job.
-Returns:
-SourceCodeJobFacet
-
-
-
-
-
-newSourceCodeJobFacetBuilder
-
-Creates a builder for SourceCodeJobFacet
-
-Returns:
-a new builder for SourceCodeJobFacet
-
-
-
-
-
-newDocumentationDatasetFacet
-
-Factory method for DocumentationDatasetFacet
-
-Parameters:
-description
- The description of the dataset.
-Returns:
-DocumentationDatasetFacet
-
-
-
-
-
-newDocumentationDatasetFacetBuilder
-
-Creates a builder for DocumentationDatasetFacet
-
-Returns:
-a new builder for DocumentationDatasetFacet
-
-
-
-
-
-newSourceCodeLocationJobFacet
-
-Factory method for SourceCodeLocationJobFacet
-
-Parameters:
-type
- the source control system
-url
- the full http URL to locate the file
-repoUrl
- the URL to the repository
-path
- the path in the repo containing the source files
-version
- the current version deployed (not a branch name, the actual unique version)
-tag
- optional tag name
-branch
- optional branch name
-Returns:
-SourceCodeLocationJobFacet
-
-
-
-
-
-newSourceCodeLocationJobFacetBuilder
-
-Creates a builder for SourceCodeLocationJobFacet
-
-Returns:
-a new builder for SourceCodeLocationJobFacet
-
-
-
-
-
-newColumnLineageDatasetFacet
-
-Factory method for ColumnLineageDatasetFacet
-
-Parameters:
-fields
- Column level lineage that maps output fields into input fields used to evaluate them.
-Returns:
-ColumnLineageDatasetFacet
-
-
-
-
-
-newColumnLineageDatasetFacetBuilder
-
-Creates a builder for ColumnLineageDatasetFacet
-
-Returns:
-a new builder for ColumnLineageDatasetFacet
-
-
-
-
-
-newDataQualityAssertionsDatasetFacet
-
-Factory method for DataQualityAssertionsDatasetFacet
-
-Parameters:
-assertions
- the assertions
-Returns:
-DataQualityAssertionsDatasetFacet
-
-
-
-
-
-newDataQualityAssertionsDatasetFacetBuilder
-
-Creates a builder for DataQualityAssertionsDatasetFacet
-
-Returns:
-a new builder for DataQualityAssertionsDatasetFacet
-
-
-
-
-
-newDatasetEvent
-
-Factory method for DatasetEvent
-
-Parameters:
-eventTime
- the time the event occurred at
-dataset
- the dataset
-Returns:
-DatasetEvent
-
-
-
-
-
-newDatasetEventBuilder
-
-Creates a builder for DatasetEvent
-
-Returns:
-a new builder for DatasetEvent
-
-
-
-
-
-newProcessingEngineRunFacet
-
-Factory method for ProcessingEngineRunFacet
-
-Parameters:
-version
- Processing engine version. Might be Airflow or Spark version.
-name
- Processing engine name, e.g. Airflow or Spark
-openlineageAdapterVersion
- OpenLineage adapter package version. Might be e.g. OpenLineage Airflow integration package version
-Returns:
-ProcessingEngineRunFacet
-
-
-
-
-
-newProcessingEngineRunFacetBuilder
-
-Creates a builder for ProcessingEngineRunFacet
-
-Returns:
-a new builder for ProcessingEngineRunFacet
-
-
-
-
-
-newLifecycleStateChangeDatasetFacetPreviousIdentifier
-
-Factory method for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-Parameters:
-name
- the name
-namespace
- the namespace
-Returns:
-LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-
-
-
-
-newLifecycleStateChangeDatasetFacetPreviousIdentifierBuilder
-
-Creates a builder for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-Returns:
-a new builder for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-
-
-
-
-newJob
-
-Factory method for Job
-
-Parameters:
-namespace
- The namespace containing that job
-name
- The unique name for that job within that namespace
-facets
- The job facets.
-Returns:
-Job
-
-
-
-
-
-newJobBuilder
-
-Creates a builder for Job
-
-Returns:
-a new builder for Job
-
-
-
-
-
-newDatasetVersionDatasetFacet
-
-Factory method for DatasetVersionDatasetFacet
-
-Parameters:
-datasetVersion
- The version of the dataset.
-Returns:
-DatasetVersionDatasetFacet
-
-
-
-
-
-newDatasetVersionDatasetFacetBuilder
-
-Creates a builder for DatasetVersionDatasetFacet
-
-Returns:
-a new builder for DatasetVersionDatasetFacet
-
-
-
-
-
-newSymlinksDatasetFacetIdentifiers
-
-Factory method for SymlinksDatasetFacetIdentifiers
-
-Parameters:
-namespace
- The dataset namespace
-name
- The dataset name
-type
- Identifier type
-Returns:
-SymlinksDatasetFacetIdentifiers
-
-
-
-
-
-newSymlinksDatasetFacetIdentifiersBuilder
-
-Creates a builder for SymlinksDatasetFacetIdentifiers
-
-Returns:
-a new builder for SymlinksDatasetFacetIdentifiers
-
-
-
-
-
-newDataQualityAssertionsDatasetFacetAssertions
-
-Factory method for DataQualityAssertionsDatasetFacetAssertions
-
-Parameters:
-assertion
- Type of expectation test that dataset is subjected to
-success
- the success
-column
- Column that expectation is testing. It should match the name provided in SchemaDatasetFacet. If column field is empty, then expectation refers to whole dataset.
-Returns:
-DataQualityAssertionsDatasetFacetAssertions
-
-
-
-
-
-newDataQualityAssertionsDatasetFacetAssertionsBuilder
-
-Creates a builder for DataQualityAssertionsDatasetFacetAssertions
-
-Returns:
-a new builder for DataQualityAssertionsDatasetFacetAssertions
-
-
-
-
-
-
-
-
-
-
-
-newParentRunFacetRun
-
-Factory method for ParentRunFacetRun
-
-Parameters:
-runId
- The globally unique ID of the run associated with the job.
-Returns:
-ParentRunFacetRun
-
-
-
-
-
-newParentRunFacetRunBuilder
-
-Creates a builder for ParentRunFacetRun
-
-Returns:
-a new builder for ParentRunFacetRun
-
-
-
-
-
-newOutputDatasetFacet
-
-
-Returns:
-OutputDatasetFacet
-
-
-
-
-
-newStaticDataset
-
-Factory method for StaticDataset
-
-Parameters:
-namespace
- The namespace containing that dataset
-name
- The unique name for that dataset within that namespace
-facets
- The facets for this dataset
-Returns:
-StaticDataset
-
-
-
-
-
-newStaticDatasetBuilder
-
-Creates a builder for StaticDataset
-
-Returns:
-a new builder for StaticDataset
-
-
-
-
-
-newColumnLineageDatasetFacetFields
-
-Factory method for ColumnLineageDatasetFacetFields
-
-Returns:
-ColumnLineageDatasetFacetFields
-
-
-
-
-
-newColumnLineageDatasetFacetFieldsBuilder
-
-Creates a builder for ColumnLineageDatasetFacetFields
-
-Returns:
-a new builder for ColumnLineageDatasetFacetFields
-
-
-
-
-
-newSymlinksDatasetFacet
-
-Factory method for SymlinksDatasetFacet
-
-Parameters:
-identifiers
- the identifiers
-Returns:
-SymlinksDatasetFacet
-
-
-
-
-
-newSymlinksDatasetFacetBuilder
-
-Creates a builder for SymlinksDatasetFacet
-
-Returns:
-a new builder for SymlinksDatasetFacet
-
-
-
-
-
-
-
-
-
-
-
-newStorageDatasetFacet
-
-Factory method for StorageDatasetFacet
-
-Parameters:
-storageLayer
- Storage layer provider with allowed values: iceberg, delta.
-fileFormat
- File format with allowed values: parquet, orc, avro, json, csv, text, xml.
-Returns:
-StorageDatasetFacet
-
-
-
-
-
-newStorageDatasetFacetBuilder
-
-Creates a builder for StorageDatasetFacet
-
-Returns:
-a new builder for StorageDatasetFacet
-
-
-
-
-
-
-
-
-
-
-
-newDatasourceDatasetFacet
-
-Factory method for DatasourceDatasetFacet
-
-Parameters:
-name
- the name
-uri
- the uri
-Returns:
-DatasourceDatasetFacet
-
-
-
-
-
-newDatasourceDatasetFacetBuilder
-
-Creates a builder for DatasourceDatasetFacet
-
-Returns:
-a new builder for DatasourceDatasetFacet
-
-
-
-
-
-newLifecycleStateChangeDatasetFacet
-
-Factory method for LifecycleStateChangeDatasetFacet
-
-Parameters:
-lifecycleStateChange
- The lifecycle state change.
-previousIdentifier
- Previous name of the dataset in case of renaming it.
-Returns:
-LifecycleStateChangeDatasetFacet
-
-
-
-
-
-newLifecycleStateChangeDatasetFacetBuilder
-
-Creates a builder for LifecycleStateChangeDatasetFacet
-
-Returns:
-a new builder for LifecycleStateChangeDatasetFacet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClient.Builder.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClient.Builder.html
deleted file mode 100644
index 879e1cb5eb..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClient.Builder.html
+++ /dev/null
@@ -1,188 +0,0 @@
-
-
-
-
-OpenLineageClient.Builder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineageClient
-
-
-public static final class OpenLineageClient.Builder
-
extends Object
-Builder for
OpenLineageClient
instances.
-
-
Usage:
-
-
- OpenLineageClient client = OpenLineageClient().builder()
- .url("http://localhost:5000")
- .build()
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
meterRegistry (@NonNull io.micrometer.core.instrument.MeterRegistry meterRegistry)
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-meterRegistry
-public OpenLineageClient.Builder meterRegistry (@NonNull
- @NonNull io.micrometer.core.instrument.MeterRegistry meterRegistry)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClient.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClient.html
deleted file mode 100644
index e9f41aa587..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClient.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-OpenLineageClient (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public final class OpenLineageClient
-
extends Object
-
-
-
-
-
-
-
-Nested Class Summary
-Nested Classes
-
-
-
-
-
static final class
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
Creates a new OpenLineageClient
object.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
void
-
-
-
Emit the given dataset event to HTTP backend.
-
-
void
-
-
-
Emit the given run event to HTTP backend.
-
-
void
-
-
-
Emit the given run event to HTTP backend.
-
-
void
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OpenLineageClient
-public OpenLineageClient ()
-Creates a new OpenLineageClient
object.
-
-
-
-
-OpenLineageClient
-public OpenLineageClient (@NonNull
- @NonNull Transport transport)
-
-
-
-
-OpenLineageClient
-public OpenLineageClient (@NonNull
- @NonNull Transport transport,
- String ... disabledFacets)
-
-
-
-
-OpenLineageClient
-public OpenLineageClient (@NonNull
- @NonNull Transport transport,
- CircuitBreaker circuitBreaker,
- io.micrometer.core.instrument.MeterRegistry meterRegistry,
- String ... disabledFacets)
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-emit
-
-Emit the given run event to HTTP backend. The method will return successfully after the run
- event has been emitted, regardless of any exceptions thrown by the HTTP backend.
-
-Parameters:
-runEvent
- The run event to emit.
-
-
-
-
-
-emit
-
-Emit the given dataset event to HTTP backend. The method will return successfully after the
- dataset event has been emitted, regardless of any exceptions thrown by the HTTP backend.
-
-Parameters:
-datasetEvent
- The dataset event to emit.
-
-
-
-
-
-emit
-
-Emit the given run event to HTTP backend. The method will return successfully after the run
- event has been emitted, regardless of any exceptions thrown by the HTTP backend.
-
-Parameters:
-jobEvent
- The job event to emit.
-
-
-
-
-
-initializeMetrics
-public void initializeMetrics ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClientException.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClientException.html
deleted file mode 100644
index 1070c9b548..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClientException.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-OpenLineageClientException (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-
-
Constructs a OpenLineageClientException
with the message message
.
-
-
-
-
Constructs a OpenLineageClientException
with the message message
and the cause
- cause
.
-
-
-
-
Constructs a OpenLineageClientException
with the cause cause
.
-
-
-
-
-
-
-
-Method Summary
-
-
Methods inherited from class java.lang.Throwable
-
addSuppressed , fillInStackTrace , getCause , getLocalizedMessage , getMessage , getStackTrace , getSuppressed , initCause , printStackTrace , printStackTrace , printStackTrace , setStackTrace , toString
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OpenLineageClientException
-public OpenLineageClientException (@Nullable
- String message)
-Constructs a OpenLineageClientException
with the message message
.
-
-Parameters:
-message
- message
-
-
-
-
-
-OpenLineageClientException
-public OpenLineageClientException (@Nullable
- Throwable cause)
-Constructs a OpenLineageClientException
with the cause cause
.
-
-Parameters:
-cause
- cause
-
-
-
-
-
-OpenLineageClientException
-public OpenLineageClientException (@Nullable
- String message,
- @Nullable
- Throwable cause)
-Constructs a OpenLineageClientException
with the message message
and the cause
- cause
.
-
-Parameters:
-message
- message
-cause
- cause
-
-
-
-
-
-OpenLineageClientException
-public OpenLineageClientException ()
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClientUtils.DisabledFacetsMixin.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClientUtils.DisabledFacetsMixin.html
deleted file mode 100644
index 268780caa7..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClientUtils.DisabledFacetsMixin.html
+++ /dev/null
@@ -1,131 +0,0 @@
-
-
-
-
-OpenLineageClientUtils.DisabledFacetsMixin (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.OpenLineageClientUtils.DisabledFacetsMixin
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DisabledFacetsMixin
-public DisabledFacetsMixin ()
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClientUtils.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClientUtils.html
deleted file mode 100644
index 728c2b561f..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageClientUtils.html
+++ /dev/null
@@ -1,428 +0,0 @@
-
-
-
-
-OpenLineageClientUtils (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public final class OpenLineageClientUtils
-
extends Object
-Utility class for
OpenLineageClient
that provides common functionalities for object
- mapping, JSON and YAML parsing, and URI manipulation.
-
-
-
-
-
-
-Nested Class Summary
-Nested Classes
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
static void
-
-
-
Configures the object mapper to exclude specified facets from being serialized.
-
-
static <T> T
-
-
-
Converts the value of an object from one type to another.
-
-
static <T> T
-
fromJson (@NonNull String json,
- @NonNull com.fasterxml.jackson.core.type.TypeReference<T> type)
-
-
Converts the provided JSON string to an instance of the specified type.
-
-
-
-
-
Loads and parses OpenLineage JSON configuration from an
InputStream
.
-
-
-
-
-
Loads and parses OpenLineage configuration from the provided paths.
-
-
-
-
-
Loads and parses OpenLineage YAML configuration from an
InputStream
.
-
-
static <T,
-F> T
-
-
-
Merges the given facets map with an existing facets container, giving precedence to the values
- in the facets map.
-
-
static com.fasterxml.jackson.databind.ObjectMapper
-
-
-
Creates a new ObjectMapper
instance configured with modules for JDK8 and JavaTime,
- including settings to ignore unknown properties and to not write dates as timestamps.
-
-
static com.fasterxml.jackson.databind.ObjectMapper
-
-
-
Creates a new ObjectMapper
instance configured with modules for JDK8 and JavaTime,
- including settings to ignore unknown properties and to not write dates as timestamps.
-
-
-
-
-
-
-
-
Converts the provided value to a JSON string.
-
-
-
-
-
Converts a string URL into an
URI
object.
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-newObjectMapper
-public static com.fasterxml.jackson.databind.ObjectMapper newObjectMapper ()
-Creates a new ObjectMapper
instance configured with modules for JDK8 and JavaTime,
- including settings to ignore unknown properties and to not write dates as timestamps.
-
-Returns:
-A configured ObjectMapper
instance.
-
-
-
-
-
-newObjectMapper
-public static com.fasterxml.jackson.databind.ObjectMapper newObjectMapper (com.fasterxml.jackson.core.JsonFactory jsonFactory)
-Creates a new ObjectMapper
instance configured with modules for JDK8 and JavaTime,
- including settings to ignore unknown properties and to not write dates as timestamps.
-
-Parameters:
-jsonFactory
- JsonFactory
-Returns:
-A configured ObjectMapper
instance.
-
-
-
-
-
-
-
-
-toJson
-
-Converts the provided value to a JSON string.
-
-Parameters:
-value
- The object to be converted to JSON.
-Returns:
-A JSON string representation of the object.
-Throws:
-UncheckedIOException
- If an I/O error occurs during conversion.
-
-
-
-
-
-fromJson
-public static <T> T fromJson (@NonNull
- @NonNull String json,
- @NonNull
- @NonNull com.fasterxml.jackson.core.type.TypeReference<T> type)
- throws UncheckedIOException
-Converts the provided JSON string to an instance of the specified type.
-
-Type Parameters:
-T
- The generic type of the return value.
-Parameters:
-json
- The JSON string to be converted.
-type
- The type to convert the JSON string into.
-Returns:
-An instance of the specified type.
-Throws:
-UncheckedIOException
- If an I/O error occurs during conversion.
-
-
-
-
-
-
-
-
-convertValue
-public static <T> T convertValue (Object fromValue,
- Class <T> toValueType)
-Converts the value of an object from one type to another.
-
-Type Parameters:
-T
- The generic type of the target type.
-Parameters:
-fromValue
- The object whose value is to be converted.
-toValueType
- The target type for the conversion.
-Returns:
-An object of the target type with the value converted from the original object.
-
-
-
-
-
-mergeFacets
-public static <T,
-F> T mergeFacets (Map <String ,F> facetsMap,
- T facetsContainer,
- Class <T> klass)
-Merges the given facets map with an existing facets container, giving precedence to the values
- in the facets map.
-
-Type Parameters:
-T
- The type of the facets container.
-F
- The type of facets in the map.
-Parameters:
-facetsMap
- A map containing facets to be merged.
-facetsContainer
- The existing container of facets.
-klass
- The class of the facets container.
-Returns:
-A new instance of the facets container with merged values.
-
-
-
-
-
-toUri
-
-Converts a string URL into an
URI
object.
-
-Parameters:
-urlString
- The string URL to be converted.
-Returns:
-An URI
object.
-Throws:
-OpenLineageClientException
- If the given string does not conform to the URI
- specification.
-
-
-
-
-
-loadOpenLineageConfigYaml
-
-Loads and parses OpenLineage configuration from the provided paths. Throws an
OpenLineageClientException
if one of the following conditions are met:
-
-
- The provided configPathProvider is null
- No configuration file could be found at any of the provided paths
- Load the default configuration from the classpath if no file is found
-
-
-Type Parameters:
-T
- generic type of merged config
-Parameters:
-configPathProvider
- Provides the paths where the configuration files can be found.
-valueTypeRef
- The type to convert the JSON string into.
-Returns:
-An instance of OpenLineageConfig
containing the parsed configuration.
-Throws:
-OpenLineageClientException
- According to the rules defined above.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageConfig.html
deleted file mode 100644
index c57957c0f5..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/OpenLineageConfig.html
+++ /dev/null
@@ -1,353 +0,0 @@
-
-
-
-
-OpenLineageConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Type Parameters:
-T
- generic type extending OpenLineageConfig
, used for merging config objects
-
-
-All Implemented Interfaces:
-MergeConfig <T>
-
-
-public class OpenLineageConfig<T extends OpenLineageConfig>
-
extends Object
-implements MergeConfig <T>
-
-
-
-
-
-
-
-Field Summary
-Fields
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Overwrites existing object with properties of other config entries whenever they're present.
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-Field Details
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OpenLineageConfig
-public OpenLineageConfig ()
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-mergeWithNonNull
-
-Overwrites existing object with properties of other config entries whenever they're present.
-
-Specified by:
-mergeWithNonNull
in interface MergeConfig <T extends OpenLineageConfig >
-Parameters:
-other
- value to merge
-Returns:
-merged config entry
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreaker.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreaker.html
deleted file mode 100644
index a51b6a573e..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreaker.html
+++ /dev/null
@@ -1,191 +0,0 @@
-
-
-
-
-CircuitBreaker (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-Fields
-
-
-
-
-
static final int
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods Default Methods
-
-
-
-
-
-
-
-
-
default int
-
-
-
<T> T
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Details
-
-
-
-CIRCUIT_CHECK_INTERVAL_IN_MILLIS
-static final int CIRCUIT_CHECK_INTERVAL_IN_MILLIS
-
-See Also:
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-run
-
-
-Type Parameters:
-T
- callable generic type
-Parameters:
-callable
- The callable to be run
-Returns:
-result of callable
-
-
-
-
-
-getCheckIntervalMillis
-default int getCheckIntervalMillis ()
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerBuilder.html
deleted file mode 100644
index 1b924a0d96..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerBuilder.html
+++ /dev/null
@@ -1,146 +0,0 @@
-
-
-
-
-CircuitBreakerBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerConfig.html
deleted file mode 100644
index 6c38d050dc..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerConfig.html
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
-CircuitBreakerConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerConfigTypeIdResolver.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerConfigTypeIdResolver.html
deleted file mode 100644
index a1b9c960b6..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerConfigTypeIdResolver.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-CircuitBreakerConfigTypeIdResolver (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
io.openlineage.client.circuitBreaker.CircuitBreakerConfigTypeIdResolver
-
-
-
-
-All Implemented Interfaces:
-com.fasterxml.jackson.databind.jsontype.TypeIdResolver
-
-
-public class CircuitBreakerConfigTypeIdResolver
-extends com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
-
-
-
-
-
-Field Summary
-
-
Fields inherited from class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-_baseType, _typeFactory
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
com.fasterxml.jackson.annotation.JsonTypeInfo.Id
-
-
-
-
-
-
-
-
-
void
-
init (com.fasterxml.jackson.databind.JavaType baseType)
-
-
com.fasterxml.jackson.databind.JavaType
-
-
-
-
-
-
-
Methods inherited from class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-getDescForKnownTypeIds, idFromBaseType
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-CircuitBreakerConfigTypeIdResolver
-public CircuitBreakerConfigTypeIdResolver ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-init
-public void init (com.fasterxml.jackson.databind.JavaType baseType)
-
-Specified by:
-init
in interface com.fasterxml.jackson.databind.jsontype.TypeIdResolver
-Overrides:
-init
in class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
-
-
-
-
-
-
-
-
-
-
-typeFromId
-public com.fasterxml.jackson.databind.JavaType typeFromId (com.fasterxml.jackson.databind.DatabindContext context,
- String id)
-
-Specified by:
-typeFromId
in interface com.fasterxml.jackson.databind.jsontype.TypeIdResolver
-Overrides:
-typeFromId
in class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
-
-
-
-
-getMechanism
-public com.fasterxml.jackson.annotation.JsonTypeInfo.Id getMechanism ()
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerFactory.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerFactory.html
deleted file mode 100644
index 4f00210238..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerFactory.html
+++ /dev/null
@@ -1,158 +0,0 @@
-
-
-
-
-CircuitBreakerFactory (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class CircuitBreakerFactory
-
extends Object
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-CircuitBreakerFactory
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerResolver.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerResolver.html
deleted file mode 100644
index 2ca4300530..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerResolver.html
+++ /dev/null
@@ -1,176 +0,0 @@
-
-
-
-
-CircuitBreakerResolver (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class CircuitBreakerResolver
-
extends Object
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-CircuitBreakerResolver
-public CircuitBreakerResolver ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-resolveCircuitBreakerConfigByType
-
-
-
-
-
-resolveCircuitBreakerTypeByConfigClass
-public static String resolveCircuitBreakerTypeByConfigClass (Class circuitBreakerConfigClass)
-
-
-
-
-resolveCircuitBreakerByConfig
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerState.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerState.html
deleted file mode 100644
index 890310d4bf..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/CircuitBreakerState.html
+++ /dev/null
@@ -1,235 +0,0 @@
-
-
-
-
-CircuitBreakerState (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class CircuitBreakerState
-
extends Object
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
protected boolean
-
-
-
boolean
-
-
-
-
-
-
int
-
-
-
boolean
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-CircuitBreakerState
-public CircuitBreakerState (boolean isClosed)
-
-
-
-
-CircuitBreakerState
-public CircuitBreakerState (boolean isClosed,
- String reason)
-
-
-
-
-CircuitBreakerState
-public CircuitBreakerState (boolean isClosed,
- Optional <String > reason)
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-canEqual
-protected boolean canEqual (Object other)
-
-
-
-
-hashCode
-public int hashCode ()
-
-Overrides:
-hashCode
in class Object
-
-
-
-
-
-
-
-
-isClosed
-public boolean isClosed ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/ExecutorCircuitBreaker.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/ExecutorCircuitBreaker.html
deleted file mode 100644
index 2e9cbf10ec..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/ExecutorCircuitBreaker.html
+++ /dev/null
@@ -1,253 +0,0 @@
-
-
-
-
-ExecutorCircuitBreaker (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-Fields
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
int
-
-
-
-
-
-
protected boolean
-
-
-
<T> T
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ExecutorCircuitBreaker
-public ExecutorCircuitBreaker (Integer circuitCheckIntervalInMillis)
-
-
-
-
-ExecutorCircuitBreaker
-public ExecutorCircuitBreaker (Integer circuitCheckIntervalInMillis,
- Duration timeout)
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-run
-
-
-Specified by:
-run
in interface CircuitBreaker
-Type Parameters:
-T
- callable generic type
-Parameters:
-callable
- The callable to be run
-Returns:
-result of callable
-
-
-
-
-
-
-
-
-
-
-
-isPercentageValueValid
-protected boolean isPercentageValueValid (Integer value)
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/JavaRuntimeCircuitBreaker.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/JavaRuntimeCircuitBreaker.html
deleted file mode 100644
index 4401ca2575..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/JavaRuntimeCircuitBreaker.html
+++ /dev/null
@@ -1,180 +0,0 @@
-
-
-
-
-JavaRuntimeCircuitBreaker (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-JavaRuntimeCircuitBreaker
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/JavaRuntimeCircuitBreakerBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/JavaRuntimeCircuitBreakerBuilder.html
deleted file mode 100644
index cdf89e2d3d..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/JavaRuntimeCircuitBreakerBuilder.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-JavaRuntimeCircuitBreakerBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-JavaRuntimeCircuitBreakerBuilder
-public JavaRuntimeCircuitBreakerBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/JavaRuntimeCircuitBreakerConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/JavaRuntimeCircuitBreakerConfig.html
deleted file mode 100644
index efbb029f57..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/JavaRuntimeCircuitBreakerConfig.html
+++ /dev/null
@@ -1,381 +0,0 @@
-
-
-
-
-JavaRuntimeCircuitBreakerConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig
-
-
-
-
-
-
-
-Field Summary
-Fields
-
-
-
-
-
static final int
-
-
-
static final int
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
int
-
-
-
-
-
-
Method to create new config class based on current instance and non-null argument value.
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Details
-
-
-
-DEFAULT_MEMORY_THRESHOLD
-public static final int DEFAULT_MEMORY_THRESHOLD
-
-See Also:
-
-
-
-
-
-
-
-
-DEFAULT_GC_CPU_THRESHOLD
-public static final int DEFAULT_GC_CPU_THRESHOLD
-
-See Also:
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-JavaRuntimeCircuitBreakerConfig
-public JavaRuntimeCircuitBreakerConfig (int memoryThreshold,
- int gcCpuThreshold,
- int circuitCheckIntervalInMillis)
-
-
-
-
-JavaRuntimeCircuitBreakerConfig
-public JavaRuntimeCircuitBreakerConfig (int memoryThreshold,
- int gcCpuThreshold)
-
-
-
-
-JavaRuntimeCircuitBreakerConfig
-public JavaRuntimeCircuitBreakerConfig ()
-
-
-
-
-JavaRuntimeCircuitBreakerConfig
-public JavaRuntimeCircuitBreakerConfig (Integer memoryThreshold,
- Integer gcCpuThreshold,
- Integer circuitCheckIntervalInMillis,
- Integer timeoutInSeconds)
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-mergeWithNonNull
-
-
-Method to create new config class based on current instance and non-null argument value. In
- most cases, implementation needs to create a new instance of T, while merging all the
- properties.
-
-Specified by:
-mergeWithNonNull
in interface MergeConfig <JavaRuntimeCircuitBreakerConfig >
-Parameters:
-other
- overwrite value
-Returns:
-merged config entry
-
-
-
-
-
-
-
-
-
-
-
-hashCode
-public int hashCode ()
-
-Overrides:
-hashCode
in class Object
-
-
-
-
-
-getMemoryThreshold
-public Integer getMemoryThreshold ()
-
-
-
-
-setMemoryThreshold
-public void setMemoryThreshold (Integer memoryThreshold)
-
-
-
-
-
-
-
-setGcCpuThreshold
-public void setGcCpuThreshold (Integer gcCpuThreshold)
-
-
-
-
-getCircuitCheckIntervalInMillis
-public Integer getCircuitCheckIntervalInMillis ()
-
-
-
-
-setCircuitCheckIntervalInMillis
-public void setCircuitCheckIntervalInMillis (Integer circuitCheckIntervalInMillis)
-
-
-
-
-getTimeoutInSeconds
-public Integer getTimeoutInSeconds ()
-
-
-
-
-setTimeoutInSeconds
-public void setTimeoutInSeconds (Integer timeoutInSeconds)
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/NoOpCircuitBreaker.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/NoOpCircuitBreaker.html
deleted file mode 100644
index a2c610e1ed..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/NoOpCircuitBreaker.html
+++ /dev/null
@@ -1,201 +0,0 @@
-
-
-
-
-NoOpCircuitBreaker (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-CircuitBreaker
-
-
-
-Non-closing circuit breaker which always runs callable.
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-NoOpCircuitBreaker
-public NoOpCircuitBreaker ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-run
-
-
-Specified by:
-run
in interface CircuitBreaker
-Overrides:
-run
in class ExecutorCircuitBreaker
-Type Parameters:
-T
- callable generic type
-Parameters:
-callable
- The callable to be run
-Returns:
-result of callable
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/NoOpCircuitBreakerBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/NoOpCircuitBreakerBuilder.html
deleted file mode 100644
index 54e0c80994..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/NoOpCircuitBreakerBuilder.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-NoOpCircuitBreakerBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.circuitBreaker.NoOpCircuitBreakerBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-NoOpCircuitBreakerBuilder
-public NoOpCircuitBreakerBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/SimpleMemoryCircuitBreaker.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/SimpleMemoryCircuitBreaker.html
deleted file mode 100644
index 8c0c9a96ce..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/SimpleMemoryCircuitBreaker.html
+++ /dev/null
@@ -1,180 +0,0 @@
-
-
-
-
-SimpleMemoryCircuitBreaker (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-SimpleMemoryCircuitBreaker
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/SimpleMemoryCircuitBreakerBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/SimpleMemoryCircuitBreakerBuilder.html
deleted file mode 100644
index 540830d069..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/SimpleMemoryCircuitBreakerBuilder.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-SimpleMemoryCircuitBreakerBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-SimpleMemoryCircuitBreakerBuilder
-public SimpleMemoryCircuitBreakerBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/SimpleMemoryCircuitBreakerConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/SimpleMemoryCircuitBreakerConfig.html
deleted file mode 100644
index e57d8b0b51..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/SimpleMemoryCircuitBreakerConfig.html
+++ /dev/null
@@ -1,340 +0,0 @@
-
-
-
-
-SimpleMemoryCircuitBreakerConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig
-
-
-
-
-
-
-
-Field Summary
-Fields
-
-
-
-
-
static final int
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
-
-
-
-
-
int
-
-
-
-
-
-
Method to create new config class based on current instance and non-null argument value.
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Details
-
-
-
-DEFAULT_MEMORY_THRESHOLD
-public static final int DEFAULT_MEMORY_THRESHOLD
-
-See Also:
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-SimpleMemoryCircuitBreakerConfig
-public SimpleMemoryCircuitBreakerConfig (int memoryThreshold)
-
-
-
-
-SimpleMemoryCircuitBreakerConfig
-public SimpleMemoryCircuitBreakerConfig (int memoryThreshold,
- int circuitCheckIntervalInMillis)
-
-
-
-
-SimpleMemoryCircuitBreakerConfig
-public SimpleMemoryCircuitBreakerConfig ()
-
-
-
-
-SimpleMemoryCircuitBreakerConfig
-public SimpleMemoryCircuitBreakerConfig (Integer memoryThreshold,
- Integer circuitCheckIntervalInMillis,
- Integer timeoutInSeconds)
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-mergeWithNonNull
-
-
-Method to create new config class based on current instance and non-null argument value. In
- most cases, implementation needs to create a new instance of T, while merging all the
- properties.
-
-Specified by:
-mergeWithNonNull
in interface MergeConfig <SimpleMemoryCircuitBreakerConfig >
-Parameters:
-other
- overwrite value
-Returns:
-merged config entry
-
-
-
-
-
-
-
-
-
-
-
-hashCode
-public int hashCode ()
-
-Overrides:
-hashCode
in class Object
-
-
-
-
-
-getMemoryThreshold
-public Integer getMemoryThreshold ()
-
-
-
-
-setMemoryThreshold
-public void setMemoryThreshold (Integer memoryThreshold)
-
-
-
-
-getCircuitCheckIntervalInMillis
-public Integer getCircuitCheckIntervalInMillis ()
-
-
-
-
-setCircuitCheckIntervalInMillis
-public void setCircuitCheckIntervalInMillis (Integer circuitCheckIntervalInMillis)
-
-
-
-
-getTimeoutInSeconds
-public Integer getTimeoutInSeconds ()
-
-
-
-
-setTimeoutInSeconds
-public void setTimeoutInSeconds (Integer timeoutInSeconds)
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/StaticCircuitBreaker.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/StaticCircuitBreaker.html
deleted file mode 100644
index 87b75d7580..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/StaticCircuitBreaker.html
+++ /dev/null
@@ -1,182 +0,0 @@
-
-
-
-
-StaticCircuitBreaker (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-CircuitBreaker
-
-
-
-Static circuit breaker used mainly for the integration tests. Its config contains a sequence of
- boolean values determining behaviour of isClosed method in a sequence of the calls.
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-StaticCircuitBreaker
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/StaticCircuitBreakerBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/StaticCircuitBreakerBuilder.html
deleted file mode 100644
index 055839a0d3..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/StaticCircuitBreakerBuilder.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-StaticCircuitBreakerBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.circuitBreaker.StaticCircuitBreakerBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-StaticCircuitBreakerBuilder
-public StaticCircuitBreakerBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/StaticCircuitBreakerConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/StaticCircuitBreakerConfig.html
deleted file mode 100644
index 95909cf41f..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/StaticCircuitBreakerConfig.html
+++ /dev/null
@@ -1,247 +0,0 @@
-
-
-
-
-StaticCircuitBreakerConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.circuitBreaker.StaticCircuitBreakerConfig
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
-
-
int
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-StaticCircuitBreakerConfig
-public StaticCircuitBreakerConfig (String valuesReturned)
-
-
-
-
-StaticCircuitBreakerConfig
-public StaticCircuitBreakerConfig ()
-
-
-
-
-StaticCircuitBreakerConfig
-public StaticCircuitBreakerConfig (String valuesReturned,
- Integer circuitCheckIntervalInMillis)
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-hashCode
-public int hashCode ()
-
-Overrides:
-hashCode
in class Object
-
-
-
-
-
-getValuesReturned
-public String getValuesReturned ()
-
-
-
-
-setValuesReturned
-public void setValuesReturned (String valuesReturned)
-
-
-
-
-getCircuitCheckIntervalInMillis
-public Integer getCircuitCheckIntervalInMillis ()
-
-
-
-
-setCircuitCheckIntervalInMillis
-public void setCircuitCheckIntervalInMillis (Integer circuitCheckIntervalInMillis)
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/package-summary.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/package-summary.html
deleted file mode 100644
index 44c97e7ea0..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/package-summary.html
+++ /dev/null
@@ -1,147 +0,0 @@
-
-
-
-
-io.openlineage.client.circuitBreaker (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-package io.openlineage.client.circuitBreaker
-
-
-
-
-
-
-
-
All Classes and Interfaces Interfaces Classes
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Non-closing circuit breaker which always runs callable.
-
-
-
-
-
-
-
-
-
-
-
-
Static circuit breaker used mainly for the integration tests.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/package-tree.html b/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/package-tree.html
deleted file mode 100644
index 150ff7bb90..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/circuitBreaker/package-tree.html
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
-
-io.openlineage.client.circuitBreaker Class Hierarchy (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/DatasetConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/DatasetConfig.html
deleted file mode 100644
index 58ef1233ab..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/DatasetConfig.html
+++ /dev/null
@@ -1,219 +0,0 @@
-
-
-
-
-DatasetConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
Method to create new config class based on current instance and non-null argument value.
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DatasetConfig
-public DatasetConfig ()
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-mergeWithNonNull
-
-
-Method to create new config class based on current instance and non-null argument value. In
- most cases, implementation needs to create a new instance of T, while merging all the
- properties.
-
-Specified by:
-mergeWithNonNull
in interface MergeConfig <DatasetConfig >
-Parameters:
-other
- overwrite value
-Returns:
-merged config entry
-
-
-
-
-
-
-
-
-getNamespaceResolvers
-
-
-
-
-
-setNamespaceResolvers
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceCombinedResolver.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceCombinedResolver.html
deleted file mode 100644
index b28b465740..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceCombinedResolver.html
+++ /dev/null
@@ -1,206 +0,0 @@
-
-
-
-
-DatasetNamespaceCombinedResolver (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceCombinedResolver
-
-
-
-public class DatasetNamespaceCombinedResolver
-
extends Object
-Utility class to resolve hosts based on the dataset host resolver configured. Methods of the
- class should return original host address in case of no dataset host resolver defined
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
Resolves namespace by dataset host resolvers defined in dataset config.
-
-
-
-
-
Resolves namespace uri by dataset host resolvers defined in dataset config.
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DatasetNamespaceCombinedResolver
-
-
-
-
-
-DatasetNamespaceCombinedResolver
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-resolve
-
-Resolves namespace by dataset host resolvers defined in dataset config. Whole namespace string
- is passed to dataset namespace resolvers.
-
-Parameters:
-namespace
- namespace that may contain host address to be resolved
-Returns:
-resolved host address or the original one
-
-
-
-
-
-
-
-
-resolveHost
-public URI resolveHost (URI namespace)
-Resolves namespace uri by dataset host resolvers defined in dataset config. Only host of the
- URI is passed to dataset namespace resolvers configured.
-
-Parameters:
-namespace
- host address to be resolved
-Returns:
-resolved host address or the original one
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolver.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolver.html
deleted file mode 100644
index 78e45c46f2..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolver.html
+++ /dev/null
@@ -1,141 +0,0 @@
-
-
-
-
-DatasetNamespaceResolver (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-All Known Implementing Classes:
-HostListNamespaceResolver
, PatternMatchingGroupNamespaceResolver
, PatternNamespaceResolver
-
-
-public interface DatasetNamespaceResolver
-Interface used to resolve host name into more meaningful name that just host address. Common use
- case for the interface is: resolve DB server into more descriptive name which is stable when
- migrating hosts. Other use case is cluster matching: given any hostname from available in
- cluster, a dataset identifier should be based on cluster name.
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
Method should always return original value if hostAdress is not to be modified
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-resolve
-
-Method should always return original value if hostAdress is not to be modified
-
-Parameters:
-namespace
- address of the host
-Returns:
-resolved namespace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolverBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolverBuilder.html
deleted file mode 100644
index 2691c51037..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolverBuilder.html
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-
-
-DatasetNamespaceResolverBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolverConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolverConfig.html
deleted file mode 100644
index 2d1ed75a28..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolverConfig.html
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
-DatasetNamespaceResolverConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolverConfigTypeIdResolver.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolverConfigTypeIdResolver.html
deleted file mode 100644
index de58895cea..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolverConfigTypeIdResolver.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-DatasetNamespaceResolverConfigTypeIdResolver (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverConfigTypeIdResolver
-
-
-
-
-All Implemented Interfaces:
-com.fasterxml.jackson.databind.jsontype.TypeIdResolver
-
-
-public class DatasetNamespaceResolverConfigTypeIdResolver
-extends com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
-
-
-
-
-
-Field Summary
-
-
Fields inherited from class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-_baseType, _typeFactory
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
com.fasterxml.jackson.annotation.JsonTypeInfo.Id
-
-
-
-
-
-
-
-
-
void
-
init (com.fasterxml.jackson.databind.JavaType baseType)
-
-
com.fasterxml.jackson.databind.JavaType
-
-
-
-
-
-
-
Methods inherited from class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-getDescForKnownTypeIds, idFromBaseType
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DatasetNamespaceResolverConfigTypeIdResolver
-public DatasetNamespaceResolverConfigTypeIdResolver ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-init
-public void init (com.fasterxml.jackson.databind.JavaType baseType)
-
-Specified by:
-init
in interface com.fasterxml.jackson.databind.jsontype.TypeIdResolver
-Overrides:
-init
in class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
-
-
-
-
-
-
-
-
-
-
-typeFromId
-public com.fasterxml.jackson.databind.JavaType typeFromId (com.fasterxml.jackson.databind.DatabindContext context,
- String id)
-
-Specified by:
-typeFromId
in interface com.fasterxml.jackson.databind.jsontype.TypeIdResolver
-Overrides:
-typeFromId
in class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
-
-
-
-
-getMechanism
-public com.fasterxml.jackson.annotation.JsonTypeInfo.Id getMechanism ()
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolverLoader.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolverLoader.html
deleted file mode 100644
index 54ad0091cd..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/DatasetNamespaceResolverLoader.html
+++ /dev/null
@@ -1,176 +0,0 @@
-
-
-
-
-DatasetNamespaceResolverLoader (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverLoader
-
-
-
-public class DatasetNamespaceResolverLoader
-
extends Object
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DatasetNamespaceResolverLoader
-public DatasetNamespaceResolverLoader ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-loadDatasetNamespaceResolverConfigByType
-
-
-
-
-
-loadDatasetNamespaceResolverTypeByConfigClass
-public static String loadDatasetNamespaceResolverTypeByConfigClass (Class datasetNamespaceResolverConfigClass)
-
-
-
-
-loadDatasetNamespaceResolvers
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/HostListNamespaceResolver.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/HostListNamespaceResolver.html
deleted file mode 100644
index 0508dd6788..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/HostListNamespaceResolver.html
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-HostListNamespaceResolver (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolver
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
Method should always return original value if hostAdress is not to be modified
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-HostListNamespaceResolver
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-resolve
-
-
-Method should always return original value if hostAdress is not to be modified
-
-Specified by:
-resolve
in interface DatasetNamespaceResolver
-Parameters:
-namespace
- address of the host
-Returns:
-resolved namespace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/HostListNamespaceResolverBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/HostListNamespaceResolverBuilder.html
deleted file mode 100644
index b7a6c8f03a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/HostListNamespaceResolverBuilder.html
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
-HostListNamespaceResolverBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-HostListNamespaceResolverBuilder
-public HostListNamespaceResolverBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/HostListNamespaceResolverConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/HostListNamespaceResolverConfig.html
deleted file mode 100644
index 53aa54374c..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/HostListNamespaceResolverConfig.html
+++ /dev/null
@@ -1,277 +0,0 @@
-
-
-
-
-HostListNamespaceResolverConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
protected boolean
-
-
-
boolean
-
-
-
-
-
-
-
-
-
int
-
-
-
-
-
-
Method to create new config class based on current instance and non-null argument value.
-
-
void
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-HostListNamespaceResolverConfig
-public HostListNamespaceResolverConfig ()
-
-
-
-
-HostListNamespaceResolverConfig
-public HostListNamespaceResolverConfig (@NonNull
- @NonNull List <String > hosts,
- String schema)
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-mergeWithNonNull
-
-
-Method to create new config class based on current instance and non-null argument value. In
- most cases, implementation needs to create a new instance of T, while merging all the
- properties.
-
-Specified by:
-mergeWithNonNull
in interface MergeConfig <HostListNamespaceResolverConfig >
-Parameters:
-t
- overwrite value
-Returns:
-merged config entry
-
-
-
-
-
-
-
-
-
-
-
-canEqual
-protected boolean canEqual (Object other)
-
-
-
-
-hashCode
-public int hashCode ()
-
-Overrides:
-hashCode
in class Object
-
-
-
-
-
-
-
-
-setHosts
-public void setHosts (@NonNull
- @NonNull List <String > hosts)
-
-
-
-
-
-
-
-setSchema
-public void setSchema (String schema)
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternMatchingGroupNamespaceResolver.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternMatchingGroupNamespaceResolver.html
deleted file mode 100644
index 784449a631..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternMatchingGroupNamespaceResolver.html
+++ /dev/null
@@ -1,175 +0,0 @@
-
-
-
-
-PatternMatchingGroupNamespaceResolver (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolver
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
Method should always return original value if hostAdress is not to be modified
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-PatternMatchingGroupNamespaceResolver
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-resolve
-
-
-Method should always return original value if hostAdress is not to be modified
-
-Specified by:
-resolve
in interface DatasetNamespaceResolver
-Parameters:
-namespace
- address of the host
-Returns:
-resolved namespace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternMatchingGroupNamespaceResolverBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternMatchingGroupNamespaceResolverBuilder.html
deleted file mode 100644
index 7fbf4bd59e..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternMatchingGroupNamespaceResolverBuilder.html
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
-PatternMatchingGroupNamespaceResolverBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-PatternMatchingGroupNamespaceResolverBuilder
-public PatternMatchingGroupNamespaceResolverBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternMatchingGroupNamespaceResolverConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternMatchingGroupNamespaceResolverConfig.html
deleted file mode 100644
index ce3bfdeb03..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternMatchingGroupNamespaceResolverConfig.html
+++ /dev/null
@@ -1,300 +0,0 @@
-
-
-
-
-PatternMatchingGroupNamespaceResolverConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
protected boolean
-
-
-
boolean
-
-
-
-
-
-
-
-
-
-
-
-
int
-
-
-
-
-
-
Method to create new config class based on current instance and non-null argument value.
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-PatternMatchingGroupNamespaceResolverConfig
-public PatternMatchingGroupNamespaceResolverConfig ()
-
-
-
-
-PatternMatchingGroupNamespaceResolverConfig
-public PatternMatchingGroupNamespaceResolverConfig (@NonNull
- @NonNull String regex,
- @NonNull
- @NonNull String matchingGroup,
- String schema)
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-mergeWithNonNull
-
-
-Method to create new config class based on current instance and non-null argument value. In
- most cases, implementation needs to create a new instance of T, while merging all the
- properties.
-
-Specified by:
-mergeWithNonNull
in interface MergeConfig <PatternMatchingGroupNamespaceResolverConfig >
-Parameters:
-t
- overwrite value
-Returns:
-merged config entry
-
-
-
-
-
-
-
-
-
-
-
-canEqual
-protected boolean canEqual (Object other)
-
-
-
-
-hashCode
-public int hashCode ()
-
-Overrides:
-hashCode
in class Object
-
-
-
-
-
-getRegex
-@NonNull
- public @NonNull String getRegex ()
-
-
-
-
-setRegex
-public void setRegex (@NonNull
- @NonNull String regex)
-
-
-
-
-getMatchingGroup
-@NonNull
- public @NonNull String getMatchingGroup ()
-
-
-
-
-setMatchingGroup
-public void setMatchingGroup (@NonNull
- @NonNull String matchingGroup)
-
-
-
-
-
-
-
-setSchema
-public void setSchema (String schema)
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternNamespaceResolver.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternNamespaceResolver.html
deleted file mode 100644
index b32f33832f..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternNamespaceResolver.html
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-PatternNamespaceResolver (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolver
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
Method should always return original value if hostAdress is not to be modified
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-PatternNamespaceResolver
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-resolve
-
-
-Method should always return original value if hostAdress is not to be modified
-
-Specified by:
-resolve
in interface DatasetNamespaceResolver
-Parameters:
-namespace
- address of the host
-Returns:
-resolved namespace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternNamespaceResolverBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternNamespaceResolverBuilder.html
deleted file mode 100644
index ed12bb787e..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternNamespaceResolverBuilder.html
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
-PatternNamespaceResolverBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverBuilder
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-PatternNamespaceResolverBuilder
-public PatternNamespaceResolverBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternNamespaceResolverConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternNamespaceResolverConfig.html
deleted file mode 100644
index 3629f2d50b..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/PatternNamespaceResolverConfig.html
+++ /dev/null
@@ -1,277 +0,0 @@
-
-
-
-
-PatternNamespaceResolverConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
protected boolean
-
-
-
boolean
-
-
-
-
-
-
-
-
-
int
-
-
-
-
-
-
Method to create new config class based on current instance and non-null argument value.
-
-
void
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-PatternNamespaceResolverConfig
-public PatternNamespaceResolverConfig ()
-
-
-
-
-PatternNamespaceResolverConfig
-public PatternNamespaceResolverConfig (@NonNull
- @NonNull String regex,
- String schema)
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-mergeWithNonNull
-
-
-Method to create new config class based on current instance and non-null argument value. In
- most cases, implementation needs to create a new instance of T, while merging all the
- properties.
-
-Specified by:
-mergeWithNonNull
in interface MergeConfig <PatternNamespaceResolverConfig >
-Parameters:
-t
- overwrite value
-Returns:
-merged config entry
-
-
-
-
-
-
-
-
-
-
-
-canEqual
-protected boolean canEqual (Object other)
-
-
-
-
-hashCode
-public int hashCode ()
-
-Overrides:
-hashCode
in class Object
-
-
-
-
-
-getRegex
-@NonNull
- public @NonNull String getRegex ()
-
-
-
-
-setRegex
-public void setRegex (@NonNull
- @NonNull String regex)
-
-
-
-
-
-
-
-setSchema
-public void setSchema (String schema)
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/package-summary.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/package-summary.html
deleted file mode 100644
index cea282db6a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/package-summary.html
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-io.openlineage.client.dataset.namespace.resolver (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-package io.openlineage.client.dataset.namespace.resolver
-
-
-
-
-
All Classes and Interfaces Interfaces Classes
-
-
-
-
-
-
-
Utility class to resolve hosts based on the dataset host resolver configured.
-
-
-
-
Interface used to resolve host name into more meaningful name that just host address.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/package-tree.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/package-tree.html
deleted file mode 100644
index 98a5e03181..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/namespace/resolver/package-tree.html
+++ /dev/null
@@ -1,94 +0,0 @@
-
-
-
-
-io.openlineage.client.dataset.namespace.resolver Class Hierarchy (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/package-summary.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/package-summary.html
deleted file mode 100644
index 4e16a69584..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/package-summary.html
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
-
-io.openlineage.client.dataset (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-package io.openlineage.client.dataset
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/dataset/package-tree.html b/website/static/apidocs/javadoc/io/openlineage/client/dataset/package-tree.html
deleted file mode 100644
index 96953a3dc7..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/dataset/package-tree.html
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
-
-io.openlineage.client.dataset Class Hierarchy (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/metrics/CompositeMeterRegistryFactory.html b/website/static/apidocs/javadoc/io/openlineage/client/metrics/CompositeMeterRegistryFactory.html
deleted file mode 100644
index b567ad7c2a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/metrics/CompositeMeterRegistryFactory.html
+++ /dev/null
@@ -1,196 +0,0 @@
-
-
-
-
-CompositeMeterRegistryFactory (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-MeterRegistryFactory <io.micrometer.core.instrument.composite.CompositeMeterRegistry>
-
-
-public class CompositeMeterRegistryFactory
-
extends Object
-implements MeterRegistryFactory <io.micrometer.core.instrument.composite.CompositeMeterRegistry>
-A builder class that provides implementations to build composite meter registries. This class
- implements the MetricsBuilder interface with CompositeMeterRegistry as its type.
-
-
CompositeMeterRegistry is a type of MeterRegistry, that encapsulates two or more meter
- registries into one, and manages unified functionalities across all registries.
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
io.micrometer.core.instrument.composite.CompositeMeterRegistry
-
-
-
Constructs a CompositeMeterRegistry from a given map of configuration options.
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-CompositeMeterRegistryFactory
-public CompositeMeterRegistryFactory ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-registry
-public io.micrometer.core.instrument.composite.CompositeMeterRegistry registry (Map <String ,Object > config)
-Constructs a CompositeMeterRegistry from a given map of configuration options. The "registries"
- key in the map is expected to provide a list of meter registry configurations. Each
- configuration is parsed and, if parsed successfully, added to the CompositeMeterRegistry.
-
-Specified by:
-registry
in interface MeterRegistryFactory <io.micrometer.core.instrument.composite.CompositeMeterRegistry>
-Parameters:
-config
- The map containing the configurations for composite meter registry.
-Returns:
-A CompositeMeterRegistry built from the provided configuration. An empty
- CompositeMeterRegistry is returned if the the map doesn't contain a list of configurations
- extended by registries.
-
-
-
-
-
-type
-
-
-Specified by:
-type
in interface MeterRegistryFactory <io.micrometer.core.instrument.composite.CompositeMeterRegistry>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/metrics/MeterRegistryFactory.html b/website/static/apidocs/javadoc/io/openlineage/client/metrics/MeterRegistryFactory.html
deleted file mode 100644
index b3e38d3677..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/metrics/MeterRegistryFactory.html
+++ /dev/null
@@ -1,139 +0,0 @@
-
-
-
-
-MeterRegistryFactory (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/metrics/MicrometerProvider.html b/website/static/apidocs/javadoc/io/openlineage/client/metrics/MicrometerProvider.html
deleted file mode 100644
index 23646414d6..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/metrics/MicrometerProvider.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-MicrometerProvider (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class MicrometerProvider
-
extends Object
-MicrometerProvider is a class that manages global OpenLineage meter registry implementation that
- allows integrations to both add metrics backend from common OpenLineage config, or grab an
- instance of an initialized MeterRegistry.
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
static io.micrometer.core.instrument.MeterRegistry
-
-
-
Adds a MeterRegistry to the common OpenLineage meter registry.
-
-
static io.micrometer.core.instrument.MeterRegistry
-
-
-
Adds a MeterRegistry to the common OpenLineage meter registry based on the provided
- configuration.
-
-
static io.micrometer.core.instrument.MeterRegistry
-
-
-
Clears the global OpenLineage meter registry and creates a new instance of a
- CompositeMeterRegistry.
-
-
static io.micrometer.core.instrument.MeterRegistry
-
-
-
Returns the global OpenLineage meter registry.
-
-
static Optional <io.micrometer.core.instrument.MeterRegistry>
-
-
-
Parses the configuration map to create an optional MeterRegistry.
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-MicrometerProvider
-public MicrometerProvider ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-parseMeterRegistryConfig
-public static Optional <io.micrometer.core.instrument.MeterRegistry> parseMeterRegistryConfig (Map <String ,Object > config)
-Parses the configuration map to create an optional MeterRegistry.
-
-Parameters:
-config
- The configuration map for the MeterRegistry.
-Returns:
-Optional MeterRegistry created based on the configuration. Empty optional if the type
- is invalid or empty.
-
-
-
-
-
-addMeterRegistryFromConfig
-public static io.micrometer.core.instrument.MeterRegistry addMeterRegistryFromConfig (Map <String ,Object > config)
-Adds a MeterRegistry to the common OpenLineage meter registry based on the provided
- configuration.
-
-Parameters:
-config
- The configuration for the MeterRegistry.
-Returns:
-Common registry configured with the added MeterRegistry.
-
-
-
-
-
-addMeterRegistry
-public static io.micrometer.core.instrument.MeterRegistry addMeterRegistry (io.micrometer.core.instrument.MeterRegistry meterRegistry)
-Adds a MeterRegistry to the common OpenLineage meter registry.
-
-Parameters:
-meterRegistry
- The MeterRegistry to
-Returns:
-MeterRegistry
-
-
-
-
-
-getMeterRegistry
-public static io.micrometer.core.instrument.MeterRegistry getMeterRegistry ()
-Returns the global OpenLineage meter registry.
-
-Returns:
-The global OpenLineage meter registry.
-
-
-
-
-
-clear
-public static io.micrometer.core.instrument.MeterRegistry clear ()
-Clears the global OpenLineage meter registry and creates a new instance of a
- CompositeMeterRegistry.
-
-Returns:
-The newly created CompositeMeterRegistry instance.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/metrics/SimpleMeterRegistryFactory.html b/website/static/apidocs/javadoc/io/openlineage/client/metrics/SimpleMeterRegistryFactory.html
deleted file mode 100644
index 05281a70b2..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/metrics/SimpleMeterRegistryFactory.html
+++ /dev/null
@@ -1,191 +0,0 @@
-
-
-
-
-SimpleMeterRegistryFactory (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-MeterRegistryFactory <io.micrometer.core.instrument.simple.SimpleMeterRegistry>
-
-
-public class SimpleMeterRegistryFactory
-
extends Object
-implements MeterRegistryFactory <io.micrometer.core.instrument.simple.SimpleMeterRegistry>
-This class implements the MetricsBuilder interface with SimpleMeterRegistry as its type.
- SimpleMeterRegistry is a type of MeterRegistry, designed for testing functionality that does not
- require a backend monitoring system.
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
io.micrometer.core.instrument.simple.SimpleMeterRegistry
-
-
-
Constructs a SimpleMeterRegistry.
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-SimpleMeterRegistryFactory
-public SimpleMeterRegistryFactory ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-registry
-public io.micrometer.core.instrument.simple.SimpleMeterRegistry registry (Map <String ,Object > config)
-Constructs a SimpleMeterRegistry. This method doesn't use the given map parameter, as
- SimpleMeterRegistry does not require configuration options.
-
-Specified by:
-registry
in interface MeterRegistryFactory <io.micrometer.core.instrument.simple.SimpleMeterRegistry>
-Parameters:
-config
- The map intended to contain the configurations. This parameter is not used.
-Returns:
-A new SimpleMeterRegistry instance.
-
-
-
-
-
-type
-
-
-Specified by:
-type
in interface MeterRegistryFactory <io.micrometer.core.instrument.simple.SimpleMeterRegistry>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/metrics/StatsDMeterRegistryFactory.html b/website/static/apidocs/javadoc/io/openlineage/client/metrics/StatsDMeterRegistryFactory.html
deleted file mode 100644
index 0d19a18eff..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/metrics/StatsDMeterRegistryFactory.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-StatsDMeterRegistryFactory (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-MeterRegistryFactory <io.micrometer.statsd.StatsdMeterRegistry>
-
-
-public class StatsDMeterRegistryFactory
-
extends Object
-implements MeterRegistryFactory <io.micrometer.statsd.StatsdMeterRegistry>
-StatsDMetricsBuilder is a class that implements the
MeterRegistryFactory
interface
- specifically for
StatsdMeterRegistry
. It provides methods to check if the required
StatsdMeterRegistry
class is available and build a
StatsdMeterRegistry
instance based on
- a configuration map.
-
-See Also:
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
io.micrometer.statsd.StatsdMeterRegistry
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-StatsDMeterRegistryFactory
-public StatsDMeterRegistryFactory ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/metrics/package-summary.html b/website/static/apidocs/javadoc/io/openlineage/client/metrics/package-summary.html
deleted file mode 100644
index 788760ec37..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/metrics/package-summary.html
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-
-
-io.openlineage.client.metrics (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-package io.openlineage.client.metrics
-
-
-
-
-
-
-
-
All Classes and Interfaces Interfaces Classes
-
-
-
-
-
-
-
A builder class that provides implementations to build composite meter registries.
-
-
-
-
MeterRegistryFactory is an interface that defines methods to build different types of meter
- registries from OpenLineage config.
-
-
-
-
MicrometerProvider is a class that manages global OpenLineage meter registry implementation that
- allows integrations to both add metrics backend from common OpenLineage config, or grab an
- instance of an initialized MeterRegistry.
-
-
-
-
This class implements the MetricsBuilder interface with SimpleMeterRegistry as its type.
-
-
-
-
StatsDMetricsBuilder is a class that implements the
MeterRegistryFactory
interface
- specifically for
StatsdMeterRegistry
.
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/metrics/package-tree.html b/website/static/apidocs/javadoc/io/openlineage/client/metrics/package-tree.html
deleted file mode 100644
index 45f4d23505..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/metrics/package-tree.html
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
-io.openlineage.client.metrics Class Hierarchy (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/package-summary.html b/website/static/apidocs/javadoc/io/openlineage/client/package-summary.html
deleted file mode 100644
index 290f0f2d92..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/package-summary.html
+++ /dev/null
@@ -1,520 +0,0 @@
-
-
-
-
-io.openlineage.client (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-package io.openlineage.client
-
-
-
-
-
-
-
-
All Classes and Interfaces Interfaces Classes Enum Classes Exceptions
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Contains methods to merge different config classes.
-
-
-
-
-
-
Interface for BaseEvent
-
-
-
-
Interface for BaseFacet
-
-
-
-
-
-
model class for ColumnLineageDatasetFacet
-
-
-
-
model class for ColumnLineageDatasetFacetFields
-
-
-
-
model class for ColumnLineageDatasetFacetFieldsAdditional
-
-
-
-
builder class for ColumnLineageDatasetFacetFieldsAdditional
-
-
-
-
model class for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-
-
-
builder class for ColumnLineageDatasetFacetFieldsAdditionalInputFields
-
-
-
-
model class for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-
-
-
builder class for ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations
-
-
-
-
builder class for ColumnLineageDatasetFacetFields
-
-
-
-
model class for DataQualityAssertionsDatasetFacet
-
-
-
-
model class for DataQualityAssertionsDatasetFacetAssertions
-
-
-
-
builder class for DataQualityAssertionsDatasetFacetAssertions
-
-
-
-
model class for DataQualityMetricsInputDatasetFacet
-
-
-
-
model class for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-
-
-
model class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-
-
-
builder class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditional
-
-
-
-
model class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-
-
-
builder class for DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles
-
-
-
-
builder class for DataQualityMetricsInputDatasetFacetColumnMetrics
-
-
-
-
-
-
model class for DatasetEvent
-
-
-
-
Interface for DatasetFacet
-
-
-
-
model class for DatasetFacets
-
-
-
-
builder class for DatasetFacets
-
-
-
-
model class for DatasetVersionDatasetFacet
-
-
-
-
model class for DatasourceDatasetFacet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
model class for DocumentationDatasetFacet
-
-
-
-
model class for DocumentationJobFacet
-
-
-
-
model class for ErrorMessageRunFacet
-
-
-
-
model class for ExternalQueryRunFacet
-
-
-
-
model class for ExtractionErrorRunFacet
-
-
-
-
model class for ExtractionErrorRunFacetErrors
-
-
-
-
builder class for ExtractionErrorRunFacetErrors
-
-
-
-
model class for GcpCommonJobFacet
-
-
-
-
model class for GcpCommonJobFacetOrigin
-
-
-
-
builder class for GcpCommonJobFacetOrigin
-
-
-
-
model class for InputDataset
-
-
-
-
builder class for InputDataset
-
-
-
-
Interface for InputDatasetFacet
-
-
-
-
model class for InputDatasetInputFacets
-
-
-
-
builder class for InputDatasetInputFacets
-
-
-
-
-
-
-
-
model class for JobEvent
-
-
-
-
Interface for JobFacet
-
-
-
-
model class for JobFacets
-
-
-
-
builder class for JobFacets
-
-
-
-
model class for JobTypeJobFacet
-
-
-
-
model class for LifecycleStateChangeDatasetFacet
-
-
-
-
-
-
model class for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-
-
-
builder class for LifecycleStateChangeDatasetFacetPreviousIdentifier
-
-
-
-
model class for NominalTimeRunFacet
-
-
-
-
model class for OutputDataset
-
-
-
-
builder class for OutputDataset
-
-
-
-
Interface for OutputDatasetFacet
-
-
-
-
model class for OutputDatasetOutputFacets
-
-
-
-
builder class for OutputDatasetOutputFacets
-
-
-
-
model class for OutputStatisticsOutputDatasetFacet
-
-
-
-
model class for OwnershipDatasetFacet
-
-
-
-
model class for OwnershipDatasetFacetOwners
-
-
-
-
builder class for OwnershipDatasetFacetOwners
-
-
-
-
model class for OwnershipJobFacet
-
-
-
-
model class for OwnershipJobFacetOwners
-
-
-
-
builder class for OwnershipJobFacetOwners
-
-
-
-
model class for ParentRunFacet
-
-
-
-
model class for ParentRunFacetJob
-
-
-
-
builder class for ParentRunFacetJob
-
-
-
-
model class for ParentRunFacetRun
-
-
-
-
builder class for ParentRunFacetRun
-
-
-
-
model class for ProcessingEngineRunFacet
-
-
-
-
-
-
-
-
model class for RunEvent
-
-
-
-
-
-
Interface for RunFacet
-
-
-
-
model class for RunFacets
-
-
-
-
builder class for RunFacets
-
-
-
-
model class for SchemaDatasetFacet
-
-
-
-
model class for SchemaDatasetFacetFields
-
-
-
-
builder class for SchemaDatasetFacetFields
-
-
-
-
model class for SourceCodeJobFacet
-
-
-
-
model class for SourceCodeLocationJobFacet
-
-
-
-
model class for SQLJobFacet
-
-
-
-
model class for StaticDataset
-
-
-
-
builder class for StaticDataset
-
-
-
-
model class for StorageDatasetFacet
-
-
-
-
model class for SymlinksDatasetFacet
-
-
-
-
model class for SymlinksDatasetFacetIdentifiers
-
-
-
-
builder class for SymlinksDatasetFacetIdentifiers
-
-
-
-
-
-
-
-
An exception thrown to indicate a client error.
-
-
-
-
Utility class for
OpenLineageClient
that provides common functionalities for object
- mapping, JSON and YAML parsing, and URI manipulation.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/package-tree.html b/website/static/apidocs/javadoc/io/openlineage/client/package-tree.html
deleted file mode 100644
index 3fa77f1d25..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/package-tree.html
+++ /dev/null
@@ -1,238 +0,0 @@
-
-
-
-
-io.openlineage.client Class Hierarchy (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-Enum Class Hierarchy
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/ApiKeyTokenProvider.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/ApiKeyTokenProvider.html
deleted file mode 100644
index a77f739b26..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/ApiKeyTokenProvider.html
+++ /dev/null
@@ -1,198 +0,0 @@
-
-
-
-
-ApiKeyTokenProvider (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ApiKeyTokenProvider
-public ApiKeyTokenProvider ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-
-
-
-setApiKey
-public void setApiKey (String apiKey)
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/ConsoleConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/ConsoleConfig.html
deleted file mode 100644
index 8940e02999..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/ConsoleConfig.html
+++ /dev/null
@@ -1,132 +0,0 @@
-
-
-
-
-ConsoleConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ConsoleConfig
-public ConsoleConfig ()
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/ConsoleTransport.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/ConsoleTransport.html
deleted file mode 100644
index 92aa5713d9..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/ConsoleTransport.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-ConsoleTransport (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public final class ConsoleTransport
-
extends Transport
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ConsoleTransport
-public ConsoleTransport ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/ConsoleTransportBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/ConsoleTransportBuilder.html
deleted file mode 100644
index ad604d41e9..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/ConsoleTransportBuilder.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-ConsoleTransportBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ConsoleTransportBuilder
-public ConsoleTransportBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/FacetsConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/FacetsConfig.html
deleted file mode 100644
index 17382e4b19..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/FacetsConfig.html
+++ /dev/null
@@ -1,290 +0,0 @@
-
-
-
-
-FacetsConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods Deprecated Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Merges deprecated and new mechanism for disabled facets into one effective list
-
-
-
-
-
Method to create new config class based on current instance and non-null argument value.
-
-
void
-
-
-
This method accepts every other property we may receive in configuration.
-
-
void
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-FacetsConfig
-public FacetsConfig ()
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-setDeprecatedDisabledFacets
-public void setDeprecatedDisabledFacets (String [] disabledFacets)
-
-
-
-
-onOtherProperty
-
-This method accepts every other property we may receive in configuration. The only supported
- properties now are the "disabled" facet properties. The rest is silently ignored.
-
-Parameters:
-key
- the name of the property which is not directly deserialized to any other field
-value
- the value of the property. Can be a map for nested fields
-
-
-
-
-
-mergeWithNonNull
-
-
-Method to create new config class based on current instance and non-null argument value. In
- most cases, implementation needs to create a new instance of T, while merging all the
- properties.
-
-Specified by:
-mergeWithNonNull
in interface MergeConfig <FacetsConfig >
-Parameters:
-facetsConfig
- overwrite value
-Returns:
-merged config entry
-
-
-
-
-
-getEffectiveDisabledFacets
-public String [] getEffectiveDisabledFacets ()
-Merges deprecated and new mechanism for disabled facets into one effective list
-
-Returns:
-an array of disabled facets including facets from new and deprecated mechanisms.
-
-
-
-
-
-
-
-
-getDeprecatedDisabledFacets
-
-Deprecated.
-
-
-
-
-getCustomEnvironmentVariables
-public String [] getCustomEnvironmentVariables ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/FileConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/FileConfig.html
deleted file mode 100644
index f9267cd4aa..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/FileConfig.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-FileConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-FileConfig
-public FileConfig ()
-
-
-
-
-FileConfig
-public FileConfig (String location)
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-setLocation
-public void setLocation (String location)
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/FileTransport.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/FileTransport.html
deleted file mode 100644
index dcb40e4e05..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/FileTransport.html
+++ /dev/null
@@ -1,197 +0,0 @@
-
-
-
-
-FileTransport (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class FileTransport
-
extends Transport
-Appends Openlineage events to a file specified. Events are separated by a newline character,
- while all the existing newline characters within event json are removed. FileTransport was
- introduced for the purpose of integration tests.
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-FileTransport
-public FileTransport (@NonNull
- @NonNull FileConfig fileConfig)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/FileTransportBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/FileTransportBuilder.html
deleted file mode 100644
index fd74e99e8a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/FileTransportBuilder.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-FileTransportBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-FileTransportBuilder
-public FileTransportBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpConfig.Compression.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpConfig.Compression.html
deleted file mode 100644
index 1324541f83..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpConfig.Compression.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-HttpConfig.Compression (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-Enum Constant Summary
-Enum Constants
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
-
-
-
Returns the enum constant of this class with the specified name.
-
-
-
-
-
Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-
-
-
-
-
Methods inherited from class java.lang.Enum
-
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
-
-
-
-
-
-
-
-
-
-
-Enum Constant Details
-
-
-
-
-
-
-Method Details
-
-
-
-values
-
-Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-Returns:
-an array containing the constants of this enum class, in the order they are declared
-
-
-
-
-
-valueOf
-
-Returns the enum constant of this class with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this class. (Extraneous whitespace characters are
-not permitted.)
-
-Parameters:
-name
- the name of the enum constant to be returned.
-Returns:
-the enum constant with the specified name
-Throws:
-IllegalArgumentException
- if this enum class has no constant with the specified name
-NullPointerException
- if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpConfig.html
deleted file mode 100644
index c9df0cab0e..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpConfig.html
+++ /dev/null
@@ -1,395 +0,0 @@
-
-
-
-
-HttpConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-Nested Classes
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Method to create new config class based on current instance and non-null argument value.
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-HttpConfig
-public HttpConfig ()
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-mergeWithNonNull
-
-
-Method to create new config class based on current instance and non-null argument value. In
- most cases, implementation needs to create a new instance of T, while merging all the
- properties.
-
-Specified by:
-mergeWithNonNull
in interface MergeConfig <HttpConfig >
-Parameters:
-other
- overwrite value
-Returns:
-merged config entry
-
-
-
-
-
-
-
-
-
-
-
-setUrl
-public void setUrl (URI url)
-
-
-
-
-getEndpoint
-@Nullable
- public String getEndpoint ()
-
-
-
-
-setEndpoint
-public void setEndpoint (@Nullable
- String endpoint)
-
-
-
-
-getTimeout
-@Nullable
- public Double getTimeout ()
-
-
-
-
-setTimeout
-public void setTimeout (@Nullable
- Double timeout)
-
-
-
-
-getTimeoutInMillis
-@Nullable
- public Integer getTimeoutInMillis ()
-
-
-
-
-setTimeoutInMillis
-public void setTimeoutInMillis (@Nullable
- Integer timeoutInMillis)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpTransport.Builder.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpTransport.Builder.html
deleted file mode 100644
index f3ac2ced70..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpTransport.Builder.html
+++ /dev/null
@@ -1,525 +0,0 @@
-
-
-
-
-HttpTransport.Builder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-HttpTransport
-
-
-
-Deprecated.
-
-
-Builder for
HttpTransport
instances.
-
-
Usage:
-
-
- HttpTransport httpTransport = HttpTransport().builder()
- .url("http://localhost:5000")
- .build()
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods Deprecated Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
http (@NonNull org.apache.http.impl.client.CloseableHttpClient httpClient)
-
-
-
-
-
<T> T
-
-
-
-
-
-
<T> T
-
-
-
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-timeout
-
-Deprecated.
-
-
-
-
-http
-public HttpTransport.Builder http (@NonNull
- @NonNull org.apache.http.impl.client.CloseableHttpClient httpClient)
-Deprecated.
-
-
-
-
-tokenProvider
-
-Deprecated.
-
-
-
-
-
-
-
-
-
-
-mergeWithNonNull
-
-Deprecated.
-
-
-
-
-
-
-
-setUrl
-public void setUrl (URI url)
-Deprecated.
-
-
-
-
-getEndpoint
-
-Deprecated.
-
-
-
-
-setEndpoint
-public void setEndpoint (String endpoint)
-Deprecated.
-
-
-
-
-getTimeout
-
-Deprecated.
-
-
-
-
-setTimeout
-public void setTimeout (Double timeout)
-Deprecated.
-
-
-
-
-getTimeoutInMillis
-public Integer getTimeoutInMillis ()
-Deprecated.
-
-
-
-
-setTimeoutInMillis
-public void setTimeoutInMillis (Integer timeoutInMillis)
-Deprecated.
-
-
-
-
-getAuth
-
-Deprecated.
-
-
-
-
-setAuth
-
-Deprecated.
-
-
-
-
-getUrlParams
-
-Deprecated.
-
-
-
-
-setUrlParams
-
-Deprecated.
-
-
-
-
-
-
-
-
-
-
-getCompression
-
-Deprecated.
-
-
-
-
-setCompression
-
-Deprecated.
-
-
-
-
-mergeWith
-
-Deprecated.
-
-
-
-
-mergePropertyWith
-public Map mergePropertyWith (Map base,
- Map overwrite)
-Deprecated.
-
-
-
-
-mergePropertyWith
-public <T> T mergePropertyWith (T base,
- T overwrite)
-Deprecated.
-
-
-
-
-mergeWithDefaultValue
-public <T> T mergeWithDefaultValue (T base,
- T overwrite,
- T def)
-Deprecated.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpTransport.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpTransport.html
deleted file mode 100644
index d83c390ea9..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpTransport.html
+++ /dev/null
@@ -1,261 +0,0 @@
-
-
-
-
-HttpTransport (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-Nested Classes
-
-
-
-
-
static final class
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
HttpTransport (@NonNull org.apache.http.impl.client.CloseableHttpClient httpClient,
- @NonNull HttpConfig httpConfig)
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-HttpTransport
-public HttpTransport (@NonNull
- @NonNull HttpConfig httpConfig)
-
-
-
-
-HttpTransport
-public HttpTransport (@NonNull
- @NonNull org.apache.http.impl.client.CloseableHttpClient httpClient,
- @NonNull
- @NonNull HttpConfig httpConfig)
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpTransportBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpTransportBuilder.html
deleted file mode 100644
index 93e709cf00..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpTransportBuilder.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-HttpTransportBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-HttpTransportBuilder
-public HttpTransportBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpTransportResponseException.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpTransportResponseException.html
deleted file mode 100644
index be73c764ef..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/HttpTransportResponseException.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-HttpTransportResponseException (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-Serializable
-
-
-
-An exception thrown to indicate a client error relating to a http response.
-
-See Also:
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Throwable
-
addSuppressed , fillInStackTrace , getCause , getLocalizedMessage , getMessage , getStackTrace , getSuppressed , initCause , printStackTrace , printStackTrace , printStackTrace , setStackTrace , toString
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-HttpTransportResponseException
-public HttpTransportResponseException (int statusCode,
- String body)
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getStatusCode
-public int getStatusCode ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/KafkaConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/KafkaConfig.html
deleted file mode 100644
index 30eb683c20..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/KafkaConfig.html
+++ /dev/null
@@ -1,251 +0,0 @@
-
-
-
-
-KafkaConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Method to create new config class based on current instance and non-null argument value.
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-mergeWithNonNull
-
-
-Method to create new config class based on current instance and non-null argument value. In
- most cases, implementation needs to create a new instance of T, while merging all the
- properties.
-
-Specified by:
-mergeWithNonNull
in interface MergeConfig <KafkaConfig >
-Parameters:
-other
- overwrite value
-Returns:
-merged config entry
-
-
-
-
-
-
-
-
-
-
-
-setTopicName
-public void setTopicName (String topicName)
-
-
-
-
-
-
-
-setMessageKey
-public void setMessageKey (String messageKey)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/KafkaTransport.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/KafkaTransport.html
deleted file mode 100644
index e9539e8385..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/KafkaTransport.html
+++ /dev/null
@@ -1,206 +0,0 @@
-
-
-
-
-KafkaTransport (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public final class KafkaTransport
-
extends Transport
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-KafkaTransport
-public KafkaTransport (@NonNull
- @NonNull KafkaConfig kafkaConfig)
-
-
-
-
-KafkaTransport
-public KafkaTransport (@NonNull
- @NonNull org.apache.kafka.clients.producer.KafkaProducer<String ,String > kafkaProducer,
- @NonNull
- @NonNull KafkaConfig kafkaConfig)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/KafkaTransportBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/KafkaTransportBuilder.html
deleted file mode 100644
index eec08ace1a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/KafkaTransportBuilder.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-KafkaTransportBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-KafkaTransportBuilder
-public KafkaTransportBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/KinesisConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/KinesisConfig.html
deleted file mode 100644
index 954fe77e64..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/KinesisConfig.html
+++ /dev/null
@@ -1,279 +0,0 @@
-
-
-
-
-KinesisConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Method to create new config class based on current instance and non-null argument value.
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-KinesisConfig
-public KinesisConfig ()
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-mergeWithNonNull
-
-
-Method to create new config class based on current instance and non-null argument value. In
- most cases, implementation needs to create a new instance of T, while merging all the
- properties.
-
-Specified by:
-mergeWithNonNull
in interface MergeConfig <KinesisConfig >
-Parameters:
-other
- overwrite value
-Returns:
-merged config entry
-
-
-
-
-
-
-
-
-
-
-
-setStreamName
-public void setStreamName (String streamName)
-
-
-
-
-
-
-
-setRegion
-public void setRegion (String region)
-
-
-
-
-
-
-
-setRoleArn
-public void setRoleArn (String roleArn)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/KinesisTransport.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/KinesisTransport.html
deleted file mode 100644
index 8181aa59b6..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/KinesisTransport.html
+++ /dev/null
@@ -1,206 +0,0 @@
-
-
-
-
-KinesisTransport (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class KinesisTransport
-
extends Transport
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-KinesisTransport
-public KinesisTransport (@NonNull
- @NonNull com.amazonaws.services.kinesis.producer.KinesisProducer kinesisProducer,
- @NonNull
- @NonNull KinesisConfig kinesisConfig)
-
-
-
-
-KinesisTransport
-public KinesisTransport (@NonNull
- @NonNull KinesisConfig kinesisConfig)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/KinesisTransportBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/KinesisTransportBuilder.html
deleted file mode 100644
index 1a34339070..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/KinesisTransportBuilder.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-KinesisTransportBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-KinesisTransportBuilder
-public KinesisTransportBuilder ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/NoopTransport.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/NoopTransport.html
deleted file mode 100644
index a2dc6d1380..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/NoopTransport.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-NoopTransport (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class NoopTransport
-
extends Transport
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-NoopTransport
-public NoopTransport ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/TokenProvider.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/TokenProvider.html
deleted file mode 100644
index a0e075d2c7..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/TokenProvider.html
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
-
-TokenProvider (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/TokenProviderTypeIdResolver.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/TokenProviderTypeIdResolver.html
deleted file mode 100644
index 4eb850167a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/TokenProviderTypeIdResolver.html
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
-TokenProviderTypeIdResolver (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
io.openlineage.client.transports.TokenProviderTypeIdResolver
-
-
-
-
-All Implemented Interfaces:
-com.fasterxml.jackson.databind.jsontype.TypeIdResolver
-
-
-public class TokenProviderTypeIdResolver
-extends com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
-
-
-
-
-
-Field Summary
-
-
Fields inherited from class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-_baseType, _typeFactory
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
com.fasterxml.jackson.annotation.JsonTypeInfo.Id
-
-
-
-
-
-
-
-
-
void
-
init (com.fasterxml.jackson.databind.JavaType baseType)
-
-
com.fasterxml.jackson.databind.JavaType
-
-
-
-
-
-
-
Methods inherited from class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-getDescForKnownTypeIds, idFromBaseType
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-TokenProviderTypeIdResolver
-public TokenProviderTypeIdResolver ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-init
-public void init (com.fasterxml.jackson.databind.JavaType baseType)
-
-Specified by:
-init
in interface com.fasterxml.jackson.databind.jsontype.TypeIdResolver
-Overrides:
-init
in class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
-
-
-
-
-getMechanism
-public com.fasterxml.jackson.annotation.JsonTypeInfo.Id getMechanism ()
-
-
-
-
-
-
-
-
-
-
-typeFromId
-public com.fasterxml.jackson.databind.JavaType typeFromId (com.fasterxml.jackson.databind.DatabindContext context,
- String id)
-
-Specified by:
-typeFromId
in interface com.fasterxml.jackson.databind.jsontype.TypeIdResolver
-Overrides:
-typeFromId
in class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/Transport.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/Transport.html
deleted file mode 100644
index 18dc3a59cd..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/Transport.html
+++ /dev/null
@@ -1,183 +0,0 @@
-
-
-
-
-Transport (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
abstract void
-
-
-
abstract void
-
-
-
abstract void
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-Transport
-public Transport ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportBuilder.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportBuilder.html
deleted file mode 100644
index 55af05914c..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportBuilder.html
+++ /dev/null
@@ -1,146 +0,0 @@
-
-
-
-
-TransportBuilder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportConfig.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportConfig.html
deleted file mode 100644
index 39e0c42079..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportConfig.html
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
-TransportConfig (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportConfigTypeIdResolver.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportConfigTypeIdResolver.html
deleted file mode 100644
index 1210837873..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportConfigTypeIdResolver.html
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
-TransportConfigTypeIdResolver (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
io.openlineage.client.transports.TransportConfigTypeIdResolver
-
-
-
-
-All Implemented Interfaces:
-com.fasterxml.jackson.databind.jsontype.TypeIdResolver
-
-
-public class TransportConfigTypeIdResolver
-extends com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
-
-
-
-
-
-Field Summary
-
-
Fields inherited from class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-_baseType, _typeFactory
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
com.fasterxml.jackson.annotation.JsonTypeInfo.Id
-
-
-
-
-
-
-
-
-
void
-
init (com.fasterxml.jackson.databind.JavaType baseType)
-
-
com.fasterxml.jackson.databind.JavaType
-
-
-
-
-
-
-
Methods inherited from class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-getDescForKnownTypeIds, idFromBaseType
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-TransportConfigTypeIdResolver
-public TransportConfigTypeIdResolver ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-init
-public void init (com.fasterxml.jackson.databind.JavaType baseType)
-
-Specified by:
-init
in interface com.fasterxml.jackson.databind.jsontype.TypeIdResolver
-Overrides:
-init
in class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-
-
-
-
-
-
-
-
-
-
-
-typeFromId
-public com.fasterxml.jackson.databind.JavaType typeFromId (com.fasterxml.jackson.databind.DatabindContext context,
- String id)
- throws IOException
-
-Specified by:
-typeFromId
in interface com.fasterxml.jackson.databind.jsontype.TypeIdResolver
-Overrides:
-typeFromId
in class com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase
-Throws:
-IOException
-
-
-
-
-
-getMechanism
-public com.fasterxml.jackson.annotation.JsonTypeInfo.Id getMechanism ()
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportFactory.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportFactory.html
deleted file mode 100644
index 2ec64f90aa..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportFactory.html
+++ /dev/null
@@ -1,169 +0,0 @@
-
-
-
-
-TransportFactory (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public final class TransportFactory
-
extends Object
-A factory for creating
Transport
instances. A
Transport
must define a
TransportConfig
defining the set of parameters needed to construct a new
Transport
- instance. For example,
HttpConfig
defines the parameters for constructing a new
HttpTransport
instance when invoking
build()
. Below, we define a list
- of supported
Transport
s. Note, when defining your own
TransportConfig
, the
- type
parameter
must be specified.
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-TransportFactory
-public TransportFactory (@NonNull
- @NonNull TransportConfig transportConfig)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportResolver.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportResolver.html
deleted file mode 100644
index 1335960c12..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/TransportResolver.html
+++ /dev/null
@@ -1,176 +0,0 @@
-
-
-
-
-TransportResolver (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class TransportResolver
-
extends Object
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-TransportResolver
-public TransportResolver ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-resolveTransportConfigByType
-
-
-
-
-
-resolveTransportTypeByConfigClass
-public static String resolveTransportTypeByConfigClass (Class transportConfigClass)
-
-
-
-
-resolveTransportByConfig
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/package-summary.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/package-summary.html
deleted file mode 100644
index 76f4910e3a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/package-summary.html
+++ /dev/null
@@ -1,171 +0,0 @@
-
-
-
-
-io.openlineage.client.transports (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-package io.openlineage.client.transports
-
-
-
-
-
-
-
-
All Classes and Interfaces Interfaces Classes Enum Classes Exceptions
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Appends Openlineage events to a file specified.
-
-
-
-
-
-
-
-
-
-
-
Deprecated.
-
-
-
-
-
-
-
An exception thrown to indicate a client error relating to a http response.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/transports/package-tree.html b/website/static/apidocs/javadoc/io/openlineage/client/transports/package-tree.html
deleted file mode 100644
index 41e99abdcc..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/transports/package-tree.html
+++ /dev/null
@@ -1,140 +0,0 @@
-
-
-
-
-io.openlineage.client.transports Class Hierarchy (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-Enum Class Hierarchy
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/DatasetIdentifier.Symlink.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/DatasetIdentifier.Symlink.html
deleted file mode 100644
index 4ae51f101b..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/DatasetIdentifier.Symlink.html
+++ /dev/null
@@ -1,223 +0,0 @@
-
-
-
-
-DatasetIdentifier.Symlink (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
-
-
-
-
-
int
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-hashCode
-public int hashCode ()
-
-Overrides:
-hashCode
in class Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/DatasetIdentifier.SymlinkType.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/DatasetIdentifier.SymlinkType.html
deleted file mode 100644
index b16d3fef18..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/DatasetIdentifier.SymlinkType.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-DatasetIdentifier.SymlinkType (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-Enum Constant Summary
-Enum Constants
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
-
-
-
Returns the enum constant of this class with the specified name.
-
-
-
-
-
Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-
-
-
-
-
Methods inherited from class java.lang.Enum
-
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
-
-
-
-
-
-
-
-
-
-
-Enum Constant Details
-
-
-
-
-
-
-Method Details
-
-
-
-values
-
-Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-Returns:
-an array containing the constants of this enum class, in the order they are declared
-
-
-
-
-
-valueOf
-
-Returns the enum constant of this class with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this class. (Extraneous whitespace characters are
-not permitted.)
-
-Parameters:
-name
- the name of the enum constant to be returned.
-Returns:
-the enum constant with the specified name
-Throws:
-IllegalArgumentException
- if this enum class has no constant with the specified name
-NullPointerException
- if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/DatasetIdentifier.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/DatasetIdentifier.html
deleted file mode 100644
index 0a6c9eb1cd..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/DatasetIdentifier.html
+++ /dev/null
@@ -1,269 +0,0 @@
-
-
-
-
-DatasetIdentifier (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public final class DatasetIdentifier
-
extends Object
-
-
-
-
-
-
-Nested Class Summary
-Nested Classes
-
-
-
-
-
static final class
-
-
-
static enum
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
-
-
-
-
-
int
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-hashCode
-public int hashCode ()
-
-Overrides:
-hashCode
in class Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/ReflectionUtils.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/ReflectionUtils.html
deleted file mode 100644
index 855ee64b9e..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/ReflectionUtils.html
+++ /dev/null
@@ -1,193 +0,0 @@
-
-
-
-
-ReflectionUtils (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class ReflectionUtils
-
extends Object
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
static boolean
-
-
-
static boolean
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ReflectionUtils
-public ReflectionUtils ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-tryExecuteStaticMethodForClassName
-
-
-
-
-
-
-
-
-hasClass
-public static boolean hasClass (String aClass)
-
-
-
-
-hasClasses
-public static boolean hasClasses (String ... classes)
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/RuntimeUtils.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/RuntimeUtils.html
deleted file mode 100644
index fe71f94f88..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/RuntimeUtils.html
+++ /dev/null
@@ -1,196 +0,0 @@
-
-
-
-
-RuntimeUtils (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class RuntimeUtils
-
extends Object
-Class used to access static Runtime properties. Useful for testing as it can be mocked with
- mockStatic.
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
static long
-
-
-
-
-
-
static double
-
-
-
static long
-
-
-
static long
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-RuntimeUtils
-public RuntimeUtils ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-freeMemory
-public static long freeMemory ()
-
-
-
-
-totalMemory
-public static long totalMemory ()
-
-
-
-
-maxMemory
-public static long maxMemory ()
-
-
-
-
-getMemoryFractionUsage
-public static double getMemoryFractionUsage ()
-
-
-
-
-getGarbageCollectorMXBeans
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/UUIDUtils.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/UUIDUtils.html
deleted file mode 100644
index d86882e27d..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/UUIDUtils.html
+++ /dev/null
@@ -1,199 +0,0 @@
-
-
-
-
-UUIDUtils (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class UUIDUtils
-
extends Object
-Class used to generate UUID values.
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
Generate new UUID for an instant of time.
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-UUIDUtils
-public UUIDUtils ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-generateNewUUID
-public static UUID generateNewUUID ()
-Generate new UUID. Each function call returns a new UUID value.
-
-
UUID version is an implementation detail, and should not be relied on. For now it is
- UUIDv7 , so for increasing instant
- values, returned UUID is always greater than previous one.
-
-Returns:
-UUID
v7
-Since:
-1.15.0
-
-
-
-
-
-generateNewUUID
-
-Generate new UUID for an instant of time. Each function call returns a new UUID value.
-
-
UUID version is an implementation detail, and should not be relied on. For now it is
- UUIDv7 , so for increasing instant
- values, returned UUID is always greater than previous one.
-
-
Based on com.github.f4b6a3.uuid.UuidCreator.getTimeOrderedEpoch implementation (MIT
- License).
-
-Parameters:
-instant
- a given instant
-Returns:
-UUID
v7
-Since:
-1.15.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/FilesystemDatasetExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/FilesystemDatasetExtractor.html
deleted file mode 100644
index a6dcea8335..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/FilesystemDatasetExtractor.html
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-
-
-FilesystemDatasetExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-isDefinedAt
-boolean isDefinedAt (URI location)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/FilesystemDatasetUtils.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/FilesystemDatasetUtils.html
deleted file mode 100644
index 8cec9676d3..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/FilesystemDatasetUtils.html
+++ /dev/null
@@ -1,206 +0,0 @@
-
-
-
-
-FilesystemDatasetUtils (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.utils.filesystem.FilesystemDatasetUtils
-
-
-
-public class FilesystemDatasetUtils
-
extends Object
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
-
-
-
Get DatasetIdentifier from table location URI
-
-
-
-
-
Get DatasetIdentifier from table location URI and name
-
-
-
-
-
Get URI from DatasetIdentifier
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-FilesystemDatasetUtils
-public FilesystemDatasetUtils ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-fromLocation
-
-Get DatasetIdentifier from table location URI
-
-Parameters:
-location
- filesystem location
-Returns:
-DatasetIdentifier
-
-
-
-
-
-fromLocationAndName
-
-Get DatasetIdentifier from table location URI and name
-
-Parameters:
-location
- filesystem location
-name
- table name
-Returns:
-DatasetIdentifier
-
-
-
-
-
-toLocation
-
-Get URI from DatasetIdentifier
-
-Parameters:
-di
- dataset identifier
-Returns:
-URI
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/GenericFilesystemDatasetExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/GenericFilesystemDatasetExtractor.html
deleted file mode 100644
index 70492ec372..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/GenericFilesystemDatasetExtractor.html
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
-GenericFilesystemDatasetExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.utils.filesystem.GenericFilesystemDatasetExtractor
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-GenericFilesystemDatasetExtractor
-public GenericFilesystemDatasetExtractor ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/LocalFilesystemDatasetExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/LocalFilesystemDatasetExtractor.html
deleted file mode 100644
index cf879f7dd9..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/LocalFilesystemDatasetExtractor.html
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
-LocalFilesystemDatasetExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.utils.filesystem.LocalFilesystemDatasetExtractor
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-LocalFilesystemDatasetExtractor
-public LocalFilesystemDatasetExtractor ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/ObjectStorageDatasetExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/ObjectStorageDatasetExtractor.html
deleted file mode 100644
index b9b85c659f..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/ObjectStorageDatasetExtractor.html
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
-ObjectStorageDatasetExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
io.openlineage.client.utils.filesystem.ObjectStorageDatasetExtractor
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-ObjectStorageDatasetExtractor
-public ObjectStorageDatasetExtractor (String scheme)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/package-summary.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/package-summary.html
deleted file mode 100644
index c66c6ac281..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/package-summary.html
+++ /dev/null
@@ -1,109 +0,0 @@
-
-
-
-
-io.openlineage.client.utils.filesystem (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-package io.openlineage.client.utils.filesystem
-
-
-
-
-
-
-
-
All Classes and Interfaces Interfaces Classes
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/package-tree.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/package-tree.html
deleted file mode 100644
index 531debdb30..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/filesystem/package-tree.html
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
-io.openlineage.client.utils.filesystem Class Hierarchy (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/DerbyJdbcExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/DerbyJdbcExtractor.html
deleted file mode 100644
index f8ec16d709..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/DerbyJdbcExtractor.html
+++ /dev/null
@@ -1,185 +0,0 @@
-
-
-
-
-DerbyJdbcExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DerbyJdbcExtractor
-public DerbyJdbcExtractor ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/GenericJdbcExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/GenericJdbcExtractor.html
deleted file mode 100644
index 18fff10121..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/GenericJdbcExtractor.html
+++ /dev/null
@@ -1,189 +0,0 @@
-
-
-
-
-GenericJdbcExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-GenericJdbcExtractor
-public GenericJdbcExtractor ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/JdbcDatasetUtils.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/JdbcDatasetUtils.html
deleted file mode 100644
index dcc26343d7..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/JdbcDatasetUtils.html
+++ /dev/null
@@ -1,186 +0,0 @@
-
-
-
-
-JdbcDatasetUtils (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class JdbcDatasetUtils
-
extends Object
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
-
-
-
Get DatasetIdentifier from JdbcUrl and JDBC properties for specified table.
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-JdbcDatasetUtils
-public JdbcDatasetUtils ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getDatasetIdentifier
-
-Get DatasetIdentifier from JdbcUrl and JDBC properties for specified table.
-
-Parameters:
-jdbcUrl
- url to database
-name
- table name
-properties
- JDBC properties
-Returns:
-DatasetIdentifier
-
-
-
-
-
-getDatasetIdentifier
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/JdbcExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/JdbcExtractor.html
deleted file mode 100644
index b717ebc36a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/JdbcExtractor.html
+++ /dev/null
@@ -1,144 +0,0 @@
-
-
-
-
-JdbcExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-isDefinedAt
-boolean isDefinedAt (String jdbcUri)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/JdbcLocation.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/JdbcLocation.html
deleted file mode 100644
index ba1f92858c..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/JdbcLocation.html
+++ /dev/null
@@ -1,248 +0,0 @@
-
-
-
-
-JdbcLocation (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public class JdbcLocation
-
extends Object
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
void
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-
-
-
-getScheme
-@NonNull
- public @NonNull String getScheme ()
-
-
-
-
-setScheme
-public void setScheme (@NonNull
- @NonNull String scheme)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/MySqlJdbcExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/MySqlJdbcExtractor.html
deleted file mode 100644
index d4c80f61c2..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/MySqlJdbcExtractor.html
+++ /dev/null
@@ -1,185 +0,0 @@
-
-
-
-
-MySqlJdbcExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-MySqlJdbcExtractor
-public MySqlJdbcExtractor ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/OracleJdbcExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/OracleJdbcExtractor.html
deleted file mode 100644
index 2ff8ddf059..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/OracleJdbcExtractor.html
+++ /dev/null
@@ -1,185 +0,0 @@
-
-
-
-
-OracleJdbcExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OracleJdbcExtractor
-public OracleJdbcExtractor ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/OverridingJdbcExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/OverridingJdbcExtractor.html
deleted file mode 100644
index 737c0522ce..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/OverridingJdbcExtractor.html
+++ /dev/null
@@ -1,201 +0,0 @@
-
-
-
-
-OverridingJdbcExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OverridingJdbcExtractor
-public OverridingJdbcExtractor (String overrideScheme)
-
-
-
-
-OverridingJdbcExtractor
-public OverridingJdbcExtractor (String overrideScheme,
- String defaultPort)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/PostgresJdbcExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/PostgresJdbcExtractor.html
deleted file mode 100644
index 6c135e9967..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/PostgresJdbcExtractor.html
+++ /dev/null
@@ -1,185 +0,0 @@
-
-
-
-
-PostgresJdbcExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-PostgresJdbcExtractor
-public PostgresJdbcExtractor ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/SqlServerJdbcExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/SqlServerJdbcExtractor.html
deleted file mode 100644
index a6bb078452..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/SqlServerJdbcExtractor.html
+++ /dev/null
@@ -1,185 +0,0 @@
-
-
-
-
-SqlServerJdbcExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-SqlServerJdbcExtractor
-public SqlServerJdbcExtractor ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/TeradataJdbcExtractor.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/TeradataJdbcExtractor.html
deleted file mode 100644
index dc654c30e3..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/TeradataJdbcExtractor.html
+++ /dev/null
@@ -1,185 +0,0 @@
-
-
-
-
-TeradataJdbcExtractor (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
boolean
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-TeradataJdbcExtractor
-public TeradataJdbcExtractor ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/package-summary.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/package-summary.html
deleted file mode 100644
index 0fe73ea302..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/package-summary.html
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
-
-io.openlineage.client.utils.jdbc (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-package io.openlineage.client.utils.jdbc
-
-
-
-
-
-
-
-
All Classes and Interfaces Interfaces Classes
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/package-tree.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/package-tree.html
deleted file mode 100644
index a1ac8565f4..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/jdbc/package-tree.html
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
-
-io.openlineage.client.utils.jdbc Class Hierarchy (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/package-summary.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/package-summary.html
deleted file mode 100644
index 0815e6d1d4..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/package-summary.html
+++ /dev/null
@@ -1,125 +0,0 @@
-
-
-
-
-io.openlineage.client.utils (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-package io.openlineage.client.utils
-
-
-
-
-
-
-
-
All Classes and Interfaces Classes Enum Classes
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Class used to access static Runtime properties.
-
-
-
-
Class used to generate UUID values.
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/client/utils/package-tree.html b/website/static/apidocs/javadoc/io/openlineage/client/utils/package-tree.html
deleted file mode 100644
index fe2aaee629..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/client/utils/package-tree.html
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
-
-io.openlineage.client.utils Class Hierarchy (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-Enum Class Hierarchy
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.BaseEvent.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.BaseEvent.html
deleted file mode 100644
index c01c706a81..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.BaseEvent.html
+++ /dev/null
@@ -1,176 +0,0 @@
-
-
-
-
-OpenLineage.BaseEvent (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getEventTime
-
-
-Returns:
-the time the event occurred at
-
-
-
-
-
-getProducer
-
-
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-getSchemaURL
-
-
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this RunEvent
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.BaseFacet.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.BaseFacet.html
deleted file mode 100644
index 63da7bf795..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.BaseFacet.html
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
-OpenLineage.BaseFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-
-
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-
-
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.Builder.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.Builder.html
deleted file mode 100644
index d879a0f760..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.Builder.html
+++ /dev/null
@@ -1,132 +0,0 @@
-
-
-
-
-OpenLineage.Builder (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static interface OpenLineage.Builder<T>
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-build
-
-
-Returns:
-the constructed type
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.Dataset.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.Dataset.html
deleted file mode 100644
index 68be5fd25c..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.Dataset.html
+++ /dev/null
@@ -1,176 +0,0 @@
-
-
-
-
-OpenLineage.Dataset (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Abstract Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getNamespace
-
-
-Returns:
-The namespace containing that dataset
-
-
-
-
-
-getName
-
-
-Returns:
-The unique name for that dataset within that namespace
-
-
-
-
-
-getFacets
-
-
-Returns:
-The facets for this dataset
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.DatasetEvent.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.DatasetEvent.html
deleted file mode 100644
index de118eb046..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.DatasetEvent.html
+++ /dev/null
@@ -1,241 +0,0 @@
-
-
-
-
-OpenLineage.DatasetEvent (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DatasetEvent
-
-
-Parameters:
-eventTime
- the time the event occurred at
-producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-schemaURL
- The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this RunEvent
-dataset
- the dataset
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getProducer
-
-
-Specified by:
-getProducer
in interface OpenLineage.BaseEvent
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-getSchemaURL
-public URI getSchemaURL ()
-
-Specified by:
-getSchemaURL
in interface OpenLineage.BaseEvent
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this RunEvent
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.DatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.DatasetFacet.html
deleted file mode 100644
index dcff4d37d7..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.DatasetFacet.html
+++ /dev/null
@@ -1,224 +0,0 @@
-
-
-
-
-OpenLineage.DatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DatasetFacet
-public DatasetFacet (URI _producer,
- URI _schemaURL)
-
-Parameters:
-_producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-_schemaURL
- The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.BaseFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.BaseFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-get_deleted
-
-
-Returns:
-set to true to delete a facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.DatasetFacets.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.DatasetFacets.html
deleted file mode 100644
index 4cd9efefd4..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.DatasetFacets.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-OpenLineage.DatasetFacets (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.DatasetFacets
-
extends Object
-model class for DatasetFacets
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-DatasetFacets
-public DatasetFacets ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.InputDataset.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.InputDataset.html
deleted file mode 100644
index bad67bd31a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.InputDataset.html
+++ /dev/null
@@ -1,245 +0,0 @@
-
-
-
-
-OpenLineage.InputDataset (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getName
-
-
-Specified by:
-getName
in interface OpenLineage.Dataset
-Returns:
-The unique name for that dataset within that namespace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.InputDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.InputDatasetFacet.html
deleted file mode 100644
index 1d8676668a..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.InputDatasetFacet.html
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-OpenLineage.InputDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-InputDatasetFacet
-public InputDatasetFacet (URI _producer,
- URI _schemaURL)
-
-Parameters:
-_producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-_schemaURL
- The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.BaseFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.BaseFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.InputDatasetInputFacets.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.InputDatasetInputFacets.html
deleted file mode 100644
index 21a876a7af..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.InputDatasetInputFacets.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-OpenLineage.InputDatasetInputFacets (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.InputDatasetInputFacets
-
extends Object
-model class for InputDatasetInputFacets
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-InputDatasetInputFacets
-public InputDatasetInputFacets ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.Job.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.Job.html
deleted file mode 100644
index cf41c4ed03..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.Job.html
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-OpenLineage.Job (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.Job
-
extends Object
-model class for Job
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-Job
-
-
-Parameters:
-namespace
- The namespace containing that job
-name
- The unique name for that job within that namespace
-facets
- The job facets.
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getNamespace
-
-
-Returns:
-The namespace containing that job
-
-
-
-
-
-getName
-
-
-Returns:
-The unique name for that job within that namespace
-
-
-
-
-
-getFacets
-
-
-Returns:
-The job facets.
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.JobEvent.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.JobEvent.html
deleted file mode 100644
index dd1d6f8f83..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.JobEvent.html
+++ /dev/null
@@ -1,273 +0,0 @@
-
-
-
-
-OpenLineage.JobEvent (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-JobEvent
-
-
-Parameters:
-eventTime
- the time the event occurred at
-producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-schemaURL
- The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this RunEvent
-job
- the job
-inputs
- The set of **input** datasets.
-outputs
- The set of **output** datasets.
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getProducer
-
-
-Specified by:
-getProducer
in interface OpenLineage.BaseEvent
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-getSchemaURL
-public URI getSchemaURL ()
-
-Specified by:
-getSchemaURL
in interface OpenLineage.BaseEvent
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this RunEvent
-
-
-
-
-
-
-
-
-
-
-
-getOutputs
-
-
-Returns:
-The set of **output** datasets.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.JobFacet.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.JobFacet.html
deleted file mode 100644
index a02183e503..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.JobFacet.html
+++ /dev/null
@@ -1,224 +0,0 @@
-
-
-
-
-OpenLineage.JobFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-JobFacet
-public JobFacet (URI _producer,
- URI _schemaURL)
-
-Parameters:
-_producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-_schemaURL
- The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.BaseFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.BaseFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-get_deleted
-
-
-Returns:
-set to true to delete a facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.JobFacets.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.JobFacets.html
deleted file mode 100644
index 288b366a30..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.JobFacets.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-OpenLineage.JobFacets (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.JobFacets
-
extends Object
-model class for JobFacets
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-JobFacets
-public JobFacets ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.OutputDataset.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.OutputDataset.html
deleted file mode 100644
index 12ce611307..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.OutputDataset.html
+++ /dev/null
@@ -1,245 +0,0 @@
-
-
-
-
-OpenLineage.OutputDataset (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OutputDataset
-
-
-Parameters:
-namespace
- The namespace containing that dataset
-name
- The unique name for that dataset within that namespace
-facets
- The facets for this dataset
-outputFacets
- The output facets for this dataset
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getName
-
-
-Specified by:
-getName
in interface OpenLineage.Dataset
-Returns:
-The unique name for that dataset within that namespace
-
-
-
-
-
-
-
-
-getOutputFacets
-
-
-Returns:
-The output facets for this dataset
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.OutputDatasetFacet.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.OutputDatasetFacet.html
deleted file mode 100644
index de5335b230..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.OutputDatasetFacet.html
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-OpenLineage.OutputDatasetFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OutputDatasetFacet
-public OutputDatasetFacet (URI _producer,
- URI _schemaURL)
-
-Parameters:
-_producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-_schemaURL
- The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.BaseFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.BaseFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.OutputDatasetOutputFacets.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.OutputDatasetOutputFacets.html
deleted file mode 100644
index 352483d1d7..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.OutputDatasetOutputFacets.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-OpenLineage.OutputDatasetOutputFacets (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.OutputDatasetOutputFacets
-
extends Object
-model class for OutputDatasetOutputFacets
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OutputDatasetOutputFacets
-public OutputDatasetOutputFacets ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.Run.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.Run.html
deleted file mode 100644
index a5e44b8e0f..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.Run.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-OpenLineage.Run (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.Run
-
extends Object
-model class for Run
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-Run
-
-
-Parameters:
-runId
- The globally unique ID of the run associated with the job.
-facets
- The run facets.
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getRunId
-
-
-Returns:
-The globally unique ID of the run associated with the job.
-
-
-
-
-
-getFacets
-
-
-Returns:
-The run facets.
-
-
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.RunEvent.EventType.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.RunEvent.EventType.html
deleted file mode 100644
index d1ed36c69d..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.RunEvent.EventType.html
+++ /dev/null
@@ -1,253 +0,0 @@
-
-
-
-
-OpenLineage.RunEvent.EventType (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-Enum Constant Summary
-Enum Constants
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Static Methods Concrete Methods
-
-
-
-
-
-
-
-
-
Returns the enum constant of this class with the specified name.
-
-
-
-
-
Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-
-
-
-
-
Methods inherited from class java.lang.Enum
-
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
-
-
-
-
-
-
-
-
-
-
-Enum Constant Details
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-values
-
-Returns an array containing the constants of this enum class, in
-the order they are declared.
-
-Returns:
-an array containing the constants of this enum class, in the order they are declared
-
-
-
-
-
-valueOf
-
-Returns the enum constant of this class with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this class. (Extraneous whitespace characters are
-not permitted.)
-
-Parameters:
-name
- the name of the enum constant to be returned.
-Returns:
-the enum constant with the specified name
-Throws:
-IllegalArgumentException
- if this enum class has no constant with the specified name
-NullPointerException
- if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.RunEvent.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.RunEvent.html
deleted file mode 100644
index 2ece940fa5..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.RunEvent.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-OpenLineage.RunEvent (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-Nested Classes
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-RunEvent
-
-
-Parameters:
-eventTime
- the time the event occurred at
-producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-schemaURL
- The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this RunEvent
-eventType
- the current transition of the run state. It is required to issue 1 START event and 1 of [ COMPLETE, ABORT, FAIL ] event per run. Additional events with OTHER eventType can be added to the same run. For example to send additional metadata after the run is complete
-run
- the run
-job
- the job
-inputs
- The set of **input** datasets.
-outputs
- The set of **output** datasets.
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getProducer
-
-
-Specified by:
-getProducer
in interface OpenLineage.BaseEvent
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-getSchemaURL
-public URI getSchemaURL ()
-
-Specified by:
-getSchemaURL
in interface OpenLineage.BaseEvent
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this RunEvent
-
-
-
-
-
-getEventType
-
-
-Returns:
-the current transition of the run state. It is required to issue 1 START event and 1 of [ COMPLETE, ABORT, FAIL ] event per run. Additional events with OTHER eventType can be added to the same run. For example to send additional metadata after the run is complete
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getOutputs
-
-
-Returns:
-The set of **output** datasets.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.RunFacet.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.RunFacet.html
deleted file mode 100644
index 5362456039..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.RunFacet.html
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-OpenLineage.RunFacet (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-RunFacet
-public RunFacet (URI _producer,
- URI _schemaURL)
-
-Parameters:
-_producer
- URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-_schemaURL
- The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-get_producer
-public URI get_producer ()
-
-Specified by:
-get_producer
in interface OpenLineage.BaseFacet
-Returns:
-URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
-
-
-
-
-get_schemaURL
-public URI get_schemaURL ()
-
-Specified by:
-get_schemaURL
in interface OpenLineage.BaseFacet
-Returns:
-The JSON Pointer (https://tools.ietf.org/html/rfc6901) URL to the corresponding version of the schema definition for this facet
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.RunFacets.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.RunFacets.html
deleted file mode 100644
index e19acc6b00..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.RunFacets.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-OpenLineage.RunFacets (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Enclosing class:
-OpenLineage
-
-
-public static final class OpenLineage.RunFacets
-
extends Object
-model class for RunFacets
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-RunFacets
-public RunFacets ()
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-getAdditionalProperties
-
-
-Returns:
-additional properties
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.StaticDataset.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.StaticDataset.html
deleted file mode 100644
index 3976170d78..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.StaticDataset.html
+++ /dev/null
@@ -1,229 +0,0 @@
-
-
-
-
-OpenLineage.StaticDataset (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-StaticDataset
-
-
-Parameters:
-namespace
- The namespace containing that dataset
-name
- The unique name for that dataset within that namespace
-facets
- The facets for this dataset
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-
-
-
-getName
-
-
-Specified by:
-getName
in interface OpenLineage.Dataset
-Returns:
-The unique name for that dataset within that namespace
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.html b/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.html
deleted file mode 100644
index c633abdec7..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/OpenLineage.html
+++ /dev/null
@@ -1,247 +0,0 @@
-
-
-
-
-OpenLineage (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-public final class OpenLineage
-
extends Object
-
-
-
-
-
-
-Nested Class Summary
-Nested Classes
-
-
-
-
-
static interface
-
-
-
Interface for BaseEvent
-
-
static interface
-
-
-
Interface for BaseFacet
-
-
static interface
-
-
-
static interface
-
-
-
static final class
-
-
-
model class for DatasetEvent
-
-
static final class
-
-
-
model class for DatasetFacet
-
-
static final class
-
-
-
model class for DatasetFacets
-
-
static final class
-
-
-
model class for InputDataset
-
-
static final class
-
-
-
model class for InputDatasetFacet
-
-
static final class
-
-
-
model class for InputDatasetInputFacets
-
-
static final class
-
-
-
static final class
-
-
-
model class for JobEvent
-
-
static final class
-
-
-
model class for JobFacet
-
-
static final class
-
-
-
model class for JobFacets
-
-
static final class
-
-
-
model class for OutputDataset
-
-
static final class
-
-
-
model class for OutputDatasetFacet
-
-
static final class
-
-
-
model class for OutputDatasetOutputFacets
-
-
static final class
-
-
-
static final class
-
-
-
model class for RunEvent
-
-
static final class
-
-
-
model class for RunFacet
-
-
static final class
-
-
-
model class for RunFacets
-
-
static final class
-
-
-
model class for StaticDataset
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
-
-Method Summary
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-OpenLineage
-public OpenLineage ()
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/package-summary.html b/website/static/apidocs/javadoc/io/openlineage/server/package-summary.html
deleted file mode 100644
index cc2062a35e..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/package-summary.html
+++ /dev/null
@@ -1,176 +0,0 @@
-
-
-
-
-io.openlineage.server (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-package io.openlineage.server
-
-
-
-
-
All Classes and Interfaces Interfaces Classes Enum Classes
-
-
-
-
-
-
-
-
-
Interface for BaseEvent
-
-
-
-
Interface for BaseFacet
-
-
-
-
-
-
-
-
model class for DatasetEvent
-
-
-
-
model class for DatasetFacet
-
-
-
-
model class for DatasetFacets
-
-
-
-
model class for InputDataset
-
-
-
-
model class for InputDatasetFacet
-
-
-
-
model class for InputDatasetInputFacets
-
-
-
-
-
-
model class for JobEvent
-
-
-
-
model class for JobFacet
-
-
-
-
model class for JobFacets
-
-
-
-
model class for OutputDataset
-
-
-
-
model class for OutputDatasetFacet
-
-
-
-
model class for OutputDatasetOutputFacets
-
-
-
-
-
-
model class for RunEvent
-
-
-
-
-
-
model class for RunFacet
-
-
-
-
model class for RunFacets
-
-
-
-
model class for StaticDataset
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/io/openlineage/server/package-tree.html b/website/static/apidocs/javadoc/io/openlineage/server/package-tree.html
deleted file mode 100644
index 7c1c917208..0000000000
--- a/website/static/apidocs/javadoc/io/openlineage/server/package-tree.html
+++ /dev/null
@@ -1,112 +0,0 @@
-
-
-
-
-io.openlineage.server Class Hierarchy (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-Enum Class Hierarchy
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/jquery-ui.overrides.css b/website/static/apidocs/javadoc/jquery-ui.overrides.css
deleted file mode 100644
index facf852c27..0000000000
--- a/website/static/apidocs/javadoc/jquery-ui.overrides.css
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation. Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-.ui-state-active,
-.ui-widget-content .ui-state-active,
-.ui-widget-header .ui-state-active,
-a.ui-button:active,
-.ui-button:active,
-.ui-button.ui-state-active:hover {
- /* Overrides the color of selection used in jQuery UI */
- background: #F8981D;
- border: 1px solid #F8981D;
-}
diff --git a/website/static/apidocs/javadoc/legal/ADDITIONAL_LICENSE_INFO b/website/static/apidocs/javadoc/legal/ADDITIONAL_LICENSE_INFO
deleted file mode 100644
index ff700cd09f..0000000000
--- a/website/static/apidocs/javadoc/legal/ADDITIONAL_LICENSE_INFO
+++ /dev/null
@@ -1,37 +0,0 @@
- ADDITIONAL INFORMATION ABOUT LICENSING
-
-Certain files distributed by Oracle America, Inc. and/or its affiliates are
-subject to the following clarification and special exception to the GPLv2,
-based on the GNU Project exception for its Classpath libraries, known as the
-GNU Classpath Exception.
-
-Note that Oracle includes multiple, independent programs in this software
-package. Some of those programs are provided under licenses deemed
-incompatible with the GPLv2 by the Free Software Foundation and others.
-For example, the package includes programs licensed under the Apache
-License, Version 2.0 and may include FreeType. Such programs are licensed
-to you under their original licenses.
-
-Oracle facilitates your further distribution of this package by adding the
-Classpath Exception to the necessary parts of its GPLv2 code, which permits
-you to use that code in combination with other independent modules not
-licensed under the GPLv2. However, note that this would not permit you to
-commingle code under an incompatible license with Oracle's GPLv2 licensed
-code by, for example, cutting and pasting such code into a file also
-containing Oracle's GPLv2 licensed code and then distributing the result.
-
-Additionally, if you were to remove the Classpath Exception from any of the
-files to which it applies and distribute the result, you would likely be
-required to license some or all of the other code in that distribution under
-the GPLv2 as well, and since the GPLv2 is incompatible with the license terms
-of some items included in the distribution by Oracle, removing the Classpath
-Exception could therefore effectively compromise your ability to further
-distribute the package.
-
-Failing to distribute notices associated with some files may also create
-unexpected legal consequences.
-
-Proceed with caution and we recommend that you obtain the advice of a lawyer
-skilled in open source matters before removing the Classpath Exception or
-making modifications to this package which may subsequently be redistributed
-and/or involve the use of third party software.
diff --git a/website/static/apidocs/javadoc/legal/ASSEMBLY_EXCEPTION b/website/static/apidocs/javadoc/legal/ASSEMBLY_EXCEPTION
deleted file mode 100644
index 065b8d9023..0000000000
--- a/website/static/apidocs/javadoc/legal/ASSEMBLY_EXCEPTION
+++ /dev/null
@@ -1,27 +0,0 @@
-
-OPENJDK ASSEMBLY EXCEPTION
-
-The OpenJDK source code made available by Oracle America, Inc. (Oracle) at
-openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU
-General Public License version 2
-only ("GPL2"), with the following clarification and special exception.
-
- Linking this OpenJDK Code statically or dynamically with other code
- is making a combined work based on this library. Thus, the terms
- and conditions of GPL2 cover the whole combination.
-
- As a special exception, Oracle gives you permission to link this
- OpenJDK Code with certain code licensed by Oracle as indicated at
- http://openjdk.java.net/legal/exception-modules-2007-05-08.html
- ("Designated Exception Modules") to produce an executable,
- regardless of the license terms of the Designated Exception Modules,
- and to copy and distribute the resulting executable under GPL2,
- provided that the Designated Exception Modules continue to be
- governed by the licenses under which they were offered by Oracle.
-
-As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code
-to build an executable that includes those portions of necessary code that
-Oracle could not provide under GPL2 (or that Oracle has provided under GPL2
-with the Classpath exception). If you modify or add to the OpenJDK code,
-that new GPL2 code may still be combined with Designated Exception Modules
-if the new code is made subject to this exception by its copyright holder.
diff --git a/website/static/apidocs/javadoc/legal/LICENSE b/website/static/apidocs/javadoc/legal/LICENSE
deleted file mode 100644
index 8b400c7ab8..0000000000
--- a/website/static/apidocs/javadoc/legal/LICENSE
+++ /dev/null
@@ -1,347 +0,0 @@
-The GNU General Public License (GPL)
-
-Version 2, June 1991
-
-Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
-Everyone is permitted to copy and distribute verbatim copies of this license
-document, but changing it is not allowed.
-
-Preamble
-
-The licenses for most software are designed to take away your freedom to share
-and change it. By contrast, the GNU General Public License is intended to
-guarantee your freedom to share and change free software--to make sure the
-software is free for all its users. This General Public License applies to
-most of the Free Software Foundation's software and to any other program whose
-authors commit to using it. (Some other Free Software Foundation software is
-covered by the GNU Library General Public License instead.) You can apply it to
-your programs, too.
-
-When we speak of free software, we are referring to freedom, not price. Our
-General Public Licenses are designed to make sure that you have the freedom to
-distribute copies of free software (and charge for this service if you wish),
-that you receive source code or can get it if you want it, that you can change
-the software or use pieces of it in new free programs; and that you know you
-can do these things.
-
-To protect your rights, we need to make restrictions that forbid anyone to deny
-you these rights or to ask you to surrender the rights. These restrictions
-translate to certain responsibilities for you if you distribute copies of the
-software, or if you modify it.
-
-For example, if you distribute copies of such a program, whether gratis or for
-a fee, you must give the recipients all the rights that you have. You must
-make sure that they, too, receive or can get the source code. And you must
-show them these terms so they know their rights.
-
-We protect your rights with two steps: (1) copyright the software, and (2)
-offer you this license which gives you legal permission to copy, distribute
-and/or modify the software.
-
-Also, for each author's protection and ours, we want to make certain that
-everyone understands that there is no warranty for this free software. If the
-software is modified by someone else and passed on, we want its recipients to
-know that what they have is not the original, so that any problems introduced
-by others will not reflect on the original authors' reputations.
-
-Finally, any free program is threatened constantly by software patents. We
-wish to avoid the danger that redistributors of a free program will
-individually obtain patent licenses, in effect making the program proprietary.
-To prevent this, we have made it clear that any patent must be licensed for
-everyone's free use or not licensed at all.
-
-The precise terms and conditions for copying, distribution and modification
-follow.
-
-TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-0. This License applies to any program or other work which contains a notice
-placed by the copyright holder saying it may be distributed under the terms of
-this General Public License. The "Program", below, refers to any such program
-or work, and a "work based on the Program" means either the Program or any
-derivative work under copyright law: that is to say, a work containing the
-Program or a portion of it, either verbatim or with modifications and/or
-translated into another language. (Hereinafter, translation is included
-without limitation in the term "modification".) Each licensee is addressed as
-"you".
-
-Activities other than copying, distribution and modification are not covered by
-this License; they are outside its scope. The act of running the Program is
-not restricted, and the output from the Program is covered only if its contents
-constitute a work based on the Program (independent of having been made by
-running the Program). Whether that is true depends on what the Program does.
-
-1. You may copy and distribute verbatim copies of the Program's source code as
-you receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice and
-disclaimer of warranty; keep intact all the notices that refer to this License
-and to the absence of any warranty; and give any other recipients of the
-Program a copy of this License along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and you may
-at your option offer warranty protection in exchange for a fee.
-
-2. You may modify your copy or copies of the Program or any portion of it, thus
-forming a work based on the Program, and copy and distribute such modifications
-or work under the terms of Section 1 above, provided that you also meet all of
-these conditions:
-
- a) You must cause the modified files to carry prominent notices stating
- that you changed the files and the date of any change.
-
- b) You must cause any work that you distribute or publish, that in whole or
- in part contains or is derived from the Program or any part thereof, to be
- licensed as a whole at no charge to all third parties under the terms of
- this License.
-
- c) If the modified program normally reads commands interactively when run,
- you must cause it, when started running for such interactive use in the
- most ordinary way, to print or display an announcement including an
- appropriate copyright notice and a notice that there is no warranty (or
- else, saying that you provide a warranty) and that users may redistribute
- the program under these conditions, and telling the user how to view a copy
- of this License. (Exception: if the Program itself is interactive but does
- not normally print such an announcement, your work based on the Program is
- not required to print an announcement.)
-
-These requirements apply to the modified work as a whole. If identifiable
-sections of that work are not derived from the Program, and can be reasonably
-considered independent and separate works in themselves, then this License, and
-its terms, do not apply to those sections when you distribute them as separate
-works. But when you distribute the same sections as part of a whole which is a
-work based on the Program, the distribution of the whole must be on the terms
-of this License, whose permissions for other licensees extend to the entire
-whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest your
-rights to work written entirely by you; rather, the intent is to exercise the
-right to control the distribution of derivative or collective works based on
-the Program.
-
-In addition, mere aggregation of another work not based on the Program with the
-Program (or with a work based on the Program) on a volume of a storage or
-distribution medium does not bring the other work under the scope of this
-License.
-
-3. You may copy and distribute the Program (or a work based on it, under
-Section 2) in object code or executable form under the terms of Sections 1 and
-2 above provided that you also do one of the following:
-
- a) Accompany it with the complete corresponding machine-readable source
- code, which must be distributed under the terms of Sections 1 and 2 above
- on a medium customarily used for software interchange; or,
-
- b) Accompany it with a written offer, valid for at least three years, to
- give any third party, for a charge no more than your cost of physically
- performing source distribution, a complete machine-readable copy of the
- corresponding source code, to be distributed under the terms of Sections 1
- and 2 above on a medium customarily used for software interchange; or,
-
- c) Accompany it with the information you received as to the offer to
- distribute corresponding source code. (This alternative is allowed only
- for noncommercial distribution and only if you received the program in
- object code or executable form with such an offer, in accord with
- Subsection b above.)
-
-The source code for a work means the preferred form of the work for making
-modifications to it. For an executable work, complete source code means all
-the source code for all modules it contains, plus any associated interface
-definition files, plus the scripts used to control compilation and installation
-of the executable. However, as a special exception, the source code
-distributed need not include anything that is normally distributed (in either
-source or binary form) with the major components (compiler, kernel, and so on)
-of the operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering access to copy
-from a designated place, then offering equivalent access to copy the source
-code from the same place counts as distribution of the source code, even though
-third parties are not compelled to copy the source along with the object code.
-
-4. You may not copy, modify, sublicense, or distribute the Program except as
-expressly provided under this License. Any attempt otherwise to copy, modify,
-sublicense or distribute the Program is void, and will automatically terminate
-your rights under this License. However, parties who have received copies, or
-rights, from you under this License will not have their licenses terminated so
-long as such parties remain in full compliance.
-
-5. You are not required to accept this License, since you have not signed it.
-However, nothing else grants you permission to modify or distribute the Program
-or its derivative works. These actions are prohibited by law if you do not
-accept this License. Therefore, by modifying or distributing the Program (or
-any work based on the Program), you indicate your acceptance of this License to
-do so, and all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-6. Each time you redistribute the Program (or any work based on the Program),
-the recipient automatically receives a license from the original licensor to
-copy, distribute or modify the Program subject to these terms and conditions.
-You may not impose any further restrictions on the recipients' exercise of the
-rights granted herein. You are not responsible for enforcing compliance by
-third parties to this License.
-
-7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues), conditions
-are imposed on you (whether by court order, agreement or otherwise) that
-contradict the conditions of this License, they do not excuse you from the
-conditions of this License. If you cannot distribute so as to satisfy
-simultaneously your obligations under this License and any other pertinent
-obligations, then as a consequence you may not distribute the Program at all.
-For example, if a patent license would not permit royalty-free redistribution
-of the Program by all those who receive copies directly or indirectly through
-you, then the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under any
-particular circumstance, the balance of the section is intended to apply and
-the section as a whole is intended to apply in other circumstances.
-
-It is not the purpose of this section to induce you to infringe any patents or
-other property right claims or to contest validity of any such claims; this
-section has the sole purpose of protecting the integrity of the free software
-distribution system, which is implemented by public license practices. Many
-people have made generous contributions to the wide range of software
-distributed through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing to
-distribute software through any other system and a licensee cannot impose that
-choice.
-
-This section is intended to make thoroughly clear what is believed to be a
-consequence of the rest of this License.
-
-8. If the distribution and/or use of the Program is restricted in certain
-countries either by patents or by copyrighted interfaces, the original
-copyright holder who places the Program under this License may add an explicit
-geographical distribution limitation excluding those countries, so that
-distribution is permitted only in or among countries not thus excluded. In
-such case, this License incorporates the limitation as if written in the body
-of this License.
-
-9. The Free Software Foundation may publish revised and/or new versions of the
-General Public License from time to time. Such new versions will be similar in
-spirit to the present version, but may differ in detail to address new problems
-or concerns.
-
-Each version is given a distinguishing version number. If the Program
-specifies a version number of this License which applies to it and "any later
-version", you have the option of following the terms and conditions either of
-that version or of any later version published by the Free Software Foundation.
-If the Program does not specify a version number of this License, you may
-choose any version ever published by the Free Software Foundation.
-
-10. If you wish to incorporate parts of the Program into other free programs
-whose distribution conditions are different, write to the author to ask for
-permission. For software which is copyrighted by the Free Software Foundation,
-write to the Free Software Foundation; we sometimes make exceptions for this.
-Our decision will be guided by the two goals of preserving the free status of
-all derivatives of our free software and of promoting the sharing and reuse of
-software generally.
-
-NO WARRANTY
-
-11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
-THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
-STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE
-PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
-INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
-FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
-PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE,
-YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
-ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE
-PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
-INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA
-BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
-FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER
-OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-END OF TERMS AND CONDITIONS
-
-How to Apply These Terms to Your New Programs
-
-If you develop a new program, and you want it to be of the greatest possible
-use to the public, the best way to achieve this is to make it free software
-which everyone can redistribute and change under these terms.
-
-To do so, attach the following notices to the program. It is safest to attach
-them to the start of each source file to most effectively convey the exclusion
-of warranty; and each file should have at least the "copyright" line and a
-pointer to where the full notice is found.
-
- One line to give the program's name and a brief idea of what it does.
-
- Copyright (C)
-
- This program is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the Free
- Software Foundation; either version 2 of the License, or (at your option)
- any later version.
-
- This program is distributed in the hope that it will be useful, but WITHOUT
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this when it
-starts in an interactive mode:
-
- Gnomovision version 69, Copyright (C) year name of author Gnomovision comes
- with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free
- software, and you are welcome to redistribute it under certain conditions;
- type 'show c' for details.
-
-The hypothetical commands 'show w' and 'show c' should show the appropriate
-parts of the General Public License. Of course, the commands you use may be
-called something other than 'show w' and 'show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your school,
-if any, to sign a "copyright disclaimer" for the program, if necessary. Here
-is a sample; alter the names:
-
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
- 'Gnomovision' (which makes passes at compilers) written by James Hacker.
-
- signature of Ty Coon, 1 April 1989
-
- Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs. If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library. If this is what you want to do, use the GNU Library General Public
-License instead of this License.
-
-
-"CLASSPATH" EXCEPTION TO THE GPL
-
-Certain source files distributed by Oracle America and/or its affiliates are
-subject to the following clarification and special exception to the GPL, but
-only where Oracle has expressly included in the particular source file's header
-the words "Oracle designates this particular file as subject to the "Classpath"
-exception as provided by Oracle in the LICENSE file that accompanied this code."
-
- Linking this library statically or dynamically with other modules is making
- a combined work based on this library. Thus, the terms and conditions of
- the GNU General Public License cover the whole combination.
-
- As a special exception, the copyright holders of this library give you
- permission to link this library with independent modules to produce an
- executable, regardless of the license terms of these independent modules,
- and to copy and distribute the resulting executable under terms of your
- choice, provided that you also meet, for each linked independent module,
- the terms and conditions of the license of that module. An independent
- module is a module which is not derived from or based on this library. If
- you modify this library, you may extend this exception to your version of
- the library, but you are not obligated to do so. If you do not wish to do
- so, delete this exception statement from your version.
diff --git a/website/static/apidocs/javadoc/legal/jquery.md b/website/static/apidocs/javadoc/legal/jquery.md
deleted file mode 100644
index d468b3183a..0000000000
--- a/website/static/apidocs/javadoc/legal/jquery.md
+++ /dev/null
@@ -1,72 +0,0 @@
-## jQuery v3.6.1
-
-### jQuery License
-```
-jQuery v 3.6.1
-Copyright OpenJS Foundation and other contributors, https://openjsf.org/
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-******************************************
-
-The jQuery JavaScript Library v3.6.1 also includes Sizzle.js
-
-Sizzle.js includes the following license:
-
-Copyright JS Foundation and other contributors, https://js.foundation/
-
-This software consists of voluntary contributions made by many
-individuals. For exact contribution history, see the revision history
-available at https://github.com/jquery/sizzle
-
-The following license applies to all parts of this software except as
-documented below:
-
-====
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-====
-
-All files located in the node_modules and external directories are
-externally maintained libraries used by this software which have their
-own licenses; we recommend you read them, as their terms may differ from
-the terms above.
-
-*********************
-
-```
diff --git a/website/static/apidocs/javadoc/legal/jqueryUI.md b/website/static/apidocs/javadoc/legal/jqueryUI.md
deleted file mode 100644
index 8bda9d7a85..0000000000
--- a/website/static/apidocs/javadoc/legal/jqueryUI.md
+++ /dev/null
@@ -1,49 +0,0 @@
-## jQuery UI v1.13.2
-
-### jQuery UI License
-```
-Copyright jQuery Foundation and other contributors, https://jquery.org/
-
-This software consists of voluntary contributions made by many
-individuals. For exact contribution history, see the revision history
-available at https://github.com/jquery/jquery-ui
-
-The following license applies to all parts of this software except as
-documented below:
-
-====
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-====
-
-Copyright and related rights for sample code are waived via CC0. Sample
-code is defined as all source code contained within the demos directory.
-
-CC0: http://creativecommons.org/publicdomain/zero/1.0/
-
-====
-
-All files located in the node_modules and external directories are
-externally maintained libraries used by this software which have their
-own licenses; we recommend you read them, as their terms may differ from
-the terms above.
-
-```
diff --git a/website/static/apidocs/javadoc/member-search-index.js b/website/static/apidocs/javadoc/member-search-index.js
deleted file mode 100644
index 3780ab487a..0000000000
--- a/website/static/apidocs/javadoc/member-search-index.js
+++ /dev/null
@@ -1 +0,0 @@
-memberSearchIndex = [{"p":"io.openlineage.client","c":"OpenLineage.RunEvent.EventType","l":"ABORT"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent.EventType","l":"ABORT"},{"p":"io.openlineage.client.metrics","c":"MicrometerProvider","l":"addMeterRegistry(MeterRegistry)","u":"addMeterRegistry(io.micrometer.core.instrument.MeterRegistry)"},{"p":"io.openlineage.client.metrics","c":"MicrometerProvider","l":"addMeterRegistryFromConfig(Map)","u":"addMeterRegistryFromConfig(java.util.Map)"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange","l":"ALTER"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"apiKey(String)","u":"apiKey(java.lang.String)"},{"p":"io.openlineage.client.transports","c":"ApiKeyTokenProvider","l":"ApiKeyTokenProvider()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder","l":"assertion(String)","u":"assertion(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacetBuilder","l":"assertions(List)","u":"assertions(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacetBuilder","l":"branch(String)","u":"branch(java.lang.String)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerFactory","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.Builder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetEventBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacetsBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetVersionDatasetFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasourceDatasetFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationDatasetFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationJobFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ErrorMessageRunFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ExternalQueryRunFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetErrorsBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacetOriginBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetInputFacetsBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.JobBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.JobEventBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacetsBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.NominalTimeRunFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetOutputFacetsBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputStatisticsOutputDatasetFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacetOwnersBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacetOwnersBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetJobBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetRunBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.ProcessingEngineRunFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.RunBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.RunEventBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacetsBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetFieldsBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeJobFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.SQLJobFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.StaticDatasetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.StorageDatasetFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacetBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacetIdentifiersBuilder","l":"build()"},{"p":"io.openlineage.client","c":"OpenLineageClient.Builder","l":"build()"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"build()"},{"p":"io.openlineage.client.transports","c":"TransportFactory","l":"build()"},{"p":"io.openlineage.server","c":"OpenLineage.Builder","l":"build()"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerBuilder","l":"build(CircuitBreakerConfig)","u":"build(io.openlineage.client.circuitBreaker.CircuitBreakerConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerBuilder","l":"build(CircuitBreakerConfig)","u":"build(io.openlineage.client.circuitBreaker.CircuitBreakerConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"NoOpCircuitBreakerBuilder","l":"build(CircuitBreakerConfig)","u":"build(io.openlineage.client.circuitBreaker.CircuitBreakerConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerBuilder","l":"build(CircuitBreakerConfig)","u":"build(io.openlineage.client.circuitBreaker.CircuitBreakerConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerBuilder","l":"build(CircuitBreakerConfig)","u":"build(io.openlineage.client.circuitBreaker.CircuitBreakerConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverBuilder","l":"build(String, DatasetNamespaceResolverConfig)","u":"build(java.lang.String,io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverBuilder","l":"build(String, DatasetNamespaceResolverConfig)","u":"build(java.lang.String,io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverBuilder","l":"build(String, DatasetNamespaceResolverConfig)","u":"build(java.lang.String,io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverBuilder","l":"build(String, DatasetNamespaceResolverConfig)","u":"build(java.lang.String,io.openlineage.client.dataset.namespace.resolver.DatasetNamespaceResolverConfig)"},{"p":"io.openlineage.client.transports","c":"ConsoleTransportBuilder","l":"build(TransportConfig)","u":"build(io.openlineage.client.transports.TransportConfig)"},{"p":"io.openlineage.client.transports","c":"FileTransportBuilder","l":"build(TransportConfig)","u":"build(io.openlineage.client.transports.TransportConfig)"},{"p":"io.openlineage.client.transports","c":"HttpTransportBuilder","l":"build(TransportConfig)","u":"build(io.openlineage.client.transports.TransportConfig)"},{"p":"io.openlineage.client.transports","c":"KafkaTransportBuilder","l":"build(TransportConfig)","u":"build(io.openlineage.client.transports.TransportConfig)"},{"p":"io.openlineage.client.transports","c":"KinesisTransportBuilder","l":"build(TransportConfig)","u":"build(io.openlineage.client.transports.TransportConfig)"},{"p":"io.openlineage.client.transports","c":"TransportBuilder","l":"build(TransportConfig)","u":"build(io.openlineage.client.transports.TransportConfig)"},{"p":"io.openlineage.client","c":"OpenLineageClient","l":"builder()"},{"p":"io.openlineage.client.transports","c":"HttpTransport","l":"builder()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetBuilder","l":"bytes(Long)","u":"bytes(java.lang.Long)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerState","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverConfig","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverConfig","l":"canEqual(Object)","u":"canEqual(java.lang.Object)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreaker","l":"CIRCUIT_CHECK_INTERVAL_IN_MILLIS"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"circuitBreaker"},{"p":"io.openlineage.client","c":"OpenLineageClient.Builder","l":"circuitBreaker(CircuitBreaker)","u":"circuitBreaker(io.openlineage.client.circuitBreaker.CircuitBreaker)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerConfigTypeIdResolver","l":"CircuitBreakerConfigTypeIdResolver()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerFactory","l":"CircuitBreakerFactory(CircuitBreakerConfig)","u":"%3Cinit%3E(io.openlineage.client.circuitBreaker.CircuitBreakerConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerResolver","l":"CircuitBreakerResolver()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerState","l":"CircuitBreakerState(boolean)","u":"%3Cinit%3E(boolean)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerState","l":"CircuitBreakerState(boolean, Optional)","u":"%3Cinit%3E(boolean,java.util.Optional)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerState","l":"CircuitBreakerState(boolean, String)","u":"%3Cinit%3E(boolean,java.lang.String)"},{"p":"io.openlineage.client.metrics","c":"MicrometerProvider","l":"clear()"},{"p":"io.openlineage.client.transports","c":"HttpTransport","l":"close()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder","l":"column(String)","u":"column(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacetsBuilder","l":"columnLineage(OpenLineage.ColumnLineageDatasetFacet)","u":"columnLineage(io.openlineage.client.OpenLineage.ColumnLineageDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetBuilder","l":"ColumnLineageDatasetFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder","l":"ColumnLineageDatasetFacetFieldsAdditionalBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder","l":"ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder","l":"ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsBuilder","l":"ColumnLineageDatasetFacetFieldsBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetBuilder","l":"columnMetrics(OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics)","u":"columnMetrics(io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent.EventType","l":"COMPLETE"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent.EventType","l":"COMPLETE"},{"p":"io.openlineage.client.metrics","c":"CompositeMeterRegistryFactory","l":"CompositeMeterRegistryFactory()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils","l":"configureObjectMapper(String...)","u":"configureObjectMapper(java.lang.String...)"},{"p":"io.openlineage.client.transports","c":"ConsoleConfig","l":"ConsoleConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"ConsoleTransport","l":"ConsoleTransport()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"ConsoleTransportBuilder","l":"ConsoleTransportBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils","l":"convertValue(Object, Class)","u":"convertValue(java.lang.Object,java.lang.Class)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder","l":"count(Double)","u":"count(java.lang.Double)"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange","l":"CREATE"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreaker","l":"currentState()"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreaker","l":"currentState()"},{"p":"io.openlineage.client.circuitBreaker","c":"NoOpCircuitBreaker","l":"currentState()"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreaker","l":"currentState()"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreaker","l":"currentState()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetInputFacetsBuilder","l":"dataQualityAssertions(OpenLineage.DataQualityAssertionsDatasetFacet)","u":"dataQualityAssertions(io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder","l":"DataQualityAssertionsDatasetFacetAssertionsBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacetBuilder","l":"DataQualityAssertionsDatasetFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetInputFacetsBuilder","l":"dataQualityMetrics(OpenLineage.DataQualityMetricsInputDatasetFacet)","u":"dataQualityMetrics(io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetBuilder","l":"DataQualityMetricsInputDatasetFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder","l":"DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder","l":"DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder","l":"DataQualityMetricsInputDatasetFacetColumnMetricsBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetEventBuilder","l":"dataset(OpenLineage.StaticDataset)","u":"dataset(io.openlineage.client.OpenLineage.StaticDataset)"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"datasetConfig"},{"p":"io.openlineage.client.dataset","c":"DatasetConfig","l":"DatasetConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.dataset","c":"DatasetConfig","l":"DatasetConfig(Map)","u":"%3Cinit%3E(java.util.Map)"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetEvent","l":"DatasetEvent(ZonedDateTime, URI, URI, OpenLineage.StaticDataset)","u":"%3Cinit%3E(java.time.ZonedDateTime,java.net.URI,java.net.URI,io.openlineage.server.OpenLineage.StaticDataset)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetEventBuilder","l":"DatasetEventBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetFacet","l":"DatasetFacet(URI, URI)","u":"%3Cinit%3E(java.net.URI,java.net.URI)"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetFacets","l":"DatasetFacets()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacetsBuilder","l":"DatasetFacetsBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier","l":"DatasetIdentifier(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier","l":"DatasetIdentifier(String, String, List)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.util.List)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceCombinedResolver","l":"DatasetNamespaceCombinedResolver(DatasetConfig)","u":"%3Cinit%3E(io.openlineage.client.dataset.DatasetConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceCombinedResolver","l":"DatasetNamespaceCombinedResolver(OpenLineageConfig)","u":"%3Cinit%3E(io.openlineage.client.OpenLineageConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverConfigTypeIdResolver","l":"DatasetNamespaceResolverConfigTypeIdResolver()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverLoader","l":"DatasetNamespaceResolverLoader()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetVersionDatasetFacetBuilder","l":"datasetVersion(String)","u":"datasetVersion(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetVersionDatasetFacetBuilder","l":"DatasetVersionDatasetFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacetsBuilder","l":"dataSource(OpenLineage.DatasourceDatasetFacet)","u":"dataSource(io.openlineage.client.OpenLineage.DatasourceDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasourceDatasetFacetBuilder","l":"DatasourceDatasetFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"DEFAULT_GC_CPU_THRESHOLD"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"DEFAULT_MEMORY_THRESHOLD"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"DEFAULT_MEMORY_THRESHOLD"},{"p":"io.openlineage.client","c":"DefaultConfigPathProvider","l":"DefaultConfigPathProvider()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultDatasetFacet","l":"DefaultDatasetFacet(URI, Boolean)","u":"%3Cinit%3E(java.net.URI,java.lang.Boolean)"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultInputDatasetFacet","l":"DefaultInputDatasetFacet(URI)","u":"%3Cinit%3E(java.net.URI)"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultJobFacet","l":"DefaultJobFacet(URI, Boolean)","u":"%3Cinit%3E(java.net.URI,java.lang.Boolean)"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultOutputDatasetFacet","l":"DefaultOutputDatasetFacet(URI)","u":"%3Cinit%3E(java.net.URI)"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultRunFacet","l":"DefaultRunFacet(URI)","u":"%3Cinit%3E(java.net.URI)"},{"p":"io.openlineage.client.utils.jdbc","c":"DerbyJdbcExtractor","l":"DerbyJdbcExtractor()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder","l":"description(String)","u":"description(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationDatasetFacetBuilder","l":"description(String)","u":"description(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationJobFacetBuilder","l":"description(String)","u":"description(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetFieldsBuilder","l":"description(String)","u":"description(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils.DisabledFacetsMixin","l":"DisabledFacetsMixin()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineageClient.Builder","l":"disableFacets(String...)","u":"disableFacets(java.lang.String...)"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacetBuilder","l":"displayName(String)","u":"displayName(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder","l":"distinctCount(Long)","u":"distinctCount(java.lang.Long)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacetsBuilder","l":"documentation(OpenLineage.DocumentationDatasetFacet)","u":"documentation(io.openlineage.client.OpenLineage.DocumentationDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacetsBuilder","l":"documentation(OpenLineage.DocumentationJobFacet)","u":"documentation(io.openlineage.client.OpenLineage.DocumentationJobFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationDatasetFacetBuilder","l":"DocumentationDatasetFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationJobFacetBuilder","l":"DocumentationJobFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange","l":"DROP"},{"p":"io.openlineage.client","c":"OpenLineageClient","l":"emit(OpenLineage.DatasetEvent)","u":"emit(io.openlineage.client.OpenLineage.DatasetEvent)"},{"p":"io.openlineage.client.transports","c":"ConsoleTransport","l":"emit(OpenLineage.DatasetEvent)","u":"emit(io.openlineage.client.OpenLineage.DatasetEvent)"},{"p":"io.openlineage.client.transports","c":"FileTransport","l":"emit(OpenLineage.DatasetEvent)","u":"emit(io.openlineage.client.OpenLineage.DatasetEvent)"},{"p":"io.openlineage.client.transports","c":"HttpTransport","l":"emit(OpenLineage.DatasetEvent)","u":"emit(io.openlineage.client.OpenLineage.DatasetEvent)"},{"p":"io.openlineage.client.transports","c":"KafkaTransport","l":"emit(OpenLineage.DatasetEvent)","u":"emit(io.openlineage.client.OpenLineage.DatasetEvent)"},{"p":"io.openlineage.client.transports","c":"KinesisTransport","l":"emit(OpenLineage.DatasetEvent)","u":"emit(io.openlineage.client.OpenLineage.DatasetEvent)"},{"p":"io.openlineage.client.transports","c":"NoopTransport","l":"emit(OpenLineage.DatasetEvent)","u":"emit(io.openlineage.client.OpenLineage.DatasetEvent)"},{"p":"io.openlineage.client.transports","c":"Transport","l":"emit(OpenLineage.DatasetEvent)","u":"emit(io.openlineage.client.OpenLineage.DatasetEvent)"},{"p":"io.openlineage.client","c":"OpenLineageClient","l":"emit(OpenLineage.JobEvent)","u":"emit(io.openlineage.client.OpenLineage.JobEvent)"},{"p":"io.openlineage.client.transports","c":"ConsoleTransport","l":"emit(OpenLineage.JobEvent)","u":"emit(io.openlineage.client.OpenLineage.JobEvent)"},{"p":"io.openlineage.client.transports","c":"FileTransport","l":"emit(OpenLineage.JobEvent)","u":"emit(io.openlineage.client.OpenLineage.JobEvent)"},{"p":"io.openlineage.client.transports","c":"HttpTransport","l":"emit(OpenLineage.JobEvent)","u":"emit(io.openlineage.client.OpenLineage.JobEvent)"},{"p":"io.openlineage.client.transports","c":"KafkaTransport","l":"emit(OpenLineage.JobEvent)","u":"emit(io.openlineage.client.OpenLineage.JobEvent)"},{"p":"io.openlineage.client.transports","c":"KinesisTransport","l":"emit(OpenLineage.JobEvent)","u":"emit(io.openlineage.client.OpenLineage.JobEvent)"},{"p":"io.openlineage.client.transports","c":"NoopTransport","l":"emit(OpenLineage.JobEvent)","u":"emit(io.openlineage.client.OpenLineage.JobEvent)"},{"p":"io.openlineage.client.transports","c":"Transport","l":"emit(OpenLineage.JobEvent)","u":"emit(io.openlineage.client.OpenLineage.JobEvent)"},{"p":"io.openlineage.client","c":"OpenLineageClient","l":"emit(OpenLineage.RunEvent)","u":"emit(io.openlineage.client.OpenLineage.RunEvent)"},{"p":"io.openlineage.client.transports","c":"ConsoleTransport","l":"emit(OpenLineage.RunEvent)","u":"emit(io.openlineage.client.OpenLineage.RunEvent)"},{"p":"io.openlineage.client.transports","c":"FileTransport","l":"emit(OpenLineage.RunEvent)","u":"emit(io.openlineage.client.OpenLineage.RunEvent)"},{"p":"io.openlineage.client.transports","c":"HttpTransport","l":"emit(OpenLineage.RunEvent)","u":"emit(io.openlineage.client.OpenLineage.RunEvent)"},{"p":"io.openlineage.client.transports","c":"KafkaTransport","l":"emit(OpenLineage.RunEvent)","u":"emit(io.openlineage.client.OpenLineage.RunEvent)"},{"p":"io.openlineage.client.transports","c":"KinesisTransport","l":"emit(OpenLineage.RunEvent)","u":"emit(io.openlineage.client.OpenLineage.RunEvent)"},{"p":"io.openlineage.client.transports","c":"NoopTransport","l":"emit(OpenLineage.RunEvent)","u":"emit(io.openlineage.client.OpenLineage.RunEvent)"},{"p":"io.openlineage.client.transports","c":"Transport","l":"emit(OpenLineage.RunEvent)","u":"emit(io.openlineage.client.OpenLineage.RunEvent)"},{"p":"io.openlineage.client","c":"Environment","l":"Environment()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerState","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerConfig","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverConfig","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverConfig","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier.Symlink","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacetsBuilder","l":"errorMessage(OpenLineage.ErrorMessageRunFacet)","u":"errorMessage(io.openlineage.client.OpenLineage.ErrorMessageRunFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetErrorsBuilder","l":"errorMessage(String)","u":"errorMessage(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ErrorMessageRunFacetBuilder","l":"ErrorMessageRunFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetBuilder","l":"errors(List)","u":"errors(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetEventBuilder","l":"eventTime(ZonedDateTime)","u":"eventTime(java.time.ZonedDateTime)"},{"p":"io.openlineage.client","c":"OpenLineage.JobEventBuilder","l":"eventTime(ZonedDateTime)","u":"eventTime(java.time.ZonedDateTime)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEventBuilder","l":"eventTime(ZonedDateTime)","u":"eventTime(java.time.ZonedDateTime)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEventBuilder","l":"eventType(OpenLineage.RunEvent.EventType)","u":"eventType(io.openlineage.client.OpenLineage.RunEvent.EventType)"},{"p":"io.openlineage.client.circuitBreaker","c":"ExecutorCircuitBreaker","l":"ExecutorCircuitBreaker(Integer)","u":"%3Cinit%3E(java.lang.Integer)"},{"p":"io.openlineage.client.circuitBreaker","c":"ExecutorCircuitBreaker","l":"ExecutorCircuitBreaker(Integer, Duration)","u":"%3Cinit%3E(java.lang.Integer,java.time.Duration)"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacetsBuilder","l":"externalQuery(OpenLineage.ExternalQueryRunFacet)","u":"externalQuery(io.openlineage.client.OpenLineage.ExternalQueryRunFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.ExternalQueryRunFacetBuilder","l":"externalQueryId(String)","u":"externalQueryId(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ExternalQueryRunFacetBuilder","l":"ExternalQueryRunFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.utils.jdbc","c":"DerbyJdbcExtractor","l":"extract(String, Properties)","u":"extract(java.lang.String,java.util.Properties)"},{"p":"io.openlineage.client.utils.jdbc","c":"GenericJdbcExtractor","l":"extract(String, Properties)","u":"extract(java.lang.String,java.util.Properties)"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcExtractor","l":"extract(String, Properties)","u":"extract(java.lang.String,java.util.Properties)"},{"p":"io.openlineage.client.utils.jdbc","c":"MySqlJdbcExtractor","l":"extract(String, Properties)","u":"extract(java.lang.String,java.util.Properties)"},{"p":"io.openlineage.client.utils.jdbc","c":"OracleJdbcExtractor","l":"extract(String, Properties)","u":"extract(java.lang.String,java.util.Properties)"},{"p":"io.openlineage.client.utils.jdbc","c":"OverridingJdbcExtractor","l":"extract(String, Properties)","u":"extract(java.lang.String,java.util.Properties)"},{"p":"io.openlineage.client.utils.jdbc","c":"PostgresJdbcExtractor","l":"extract(String, Properties)","u":"extract(java.lang.String,java.util.Properties)"},{"p":"io.openlineage.client.utils.jdbc","c":"SqlServerJdbcExtractor","l":"extract(String, Properties)","u":"extract(java.lang.String,java.util.Properties)"},{"p":"io.openlineage.client.utils.jdbc","c":"TeradataJdbcExtractor","l":"extract(String, Properties)","u":"extract(java.lang.String,java.util.Properties)"},{"p":"io.openlineage.client.utils.filesystem","c":"FilesystemDatasetExtractor","l":"extract(URI)","u":"extract(java.net.URI)"},{"p":"io.openlineage.client.utils.filesystem","c":"GenericFilesystemDatasetExtractor","l":"extract(URI)","u":"extract(java.net.URI)"},{"p":"io.openlineage.client.utils.filesystem","c":"LocalFilesystemDatasetExtractor","l":"extract(URI)","u":"extract(java.net.URI)"},{"p":"io.openlineage.client.utils.filesystem","c":"ObjectStorageDatasetExtractor","l":"extract(URI)","u":"extract(java.net.URI)"},{"p":"io.openlineage.client.utils.filesystem","c":"FilesystemDatasetExtractor","l":"extract(URI, String)","u":"extract(java.net.URI,java.lang.String)"},{"p":"io.openlineage.client.utils.filesystem","c":"GenericFilesystemDatasetExtractor","l":"extract(URI, String)","u":"extract(java.net.URI,java.lang.String)"},{"p":"io.openlineage.client.utils.filesystem","c":"LocalFilesystemDatasetExtractor","l":"extract(URI, String)","u":"extract(java.net.URI,java.lang.String)"},{"p":"io.openlineage.client.utils.filesystem","c":"ObjectStorageDatasetExtractor","l":"extract(URI, String)","u":"extract(java.net.URI,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacetsBuilder","l":"extractionError(OpenLineage.ExtractionErrorRunFacet)","u":"extractionError(io.openlineage.client.OpenLineage.ExtractionErrorRunFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetBuilder","l":"ExtractionErrorRunFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetErrorsBuilder","l":"ExtractionErrorRunFacetErrorsBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetBuilder","l":"facets(OpenLineage.DatasetFacets)","u":"facets(io.openlineage.client.OpenLineage.DatasetFacets)"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetBuilder","l":"facets(OpenLineage.DatasetFacets)","u":"facets(io.openlineage.client.OpenLineage.DatasetFacets)"},{"p":"io.openlineage.client","c":"OpenLineage.StaticDatasetBuilder","l":"facets(OpenLineage.DatasetFacets)","u":"facets(io.openlineage.client.OpenLineage.DatasetFacets)"},{"p":"io.openlineage.client","c":"OpenLineage.JobBuilder","l":"facets(OpenLineage.JobFacets)","u":"facets(io.openlineage.client.OpenLineage.JobFacets)"},{"p":"io.openlineage.client","c":"OpenLineage.RunBuilder","l":"facets(OpenLineage.RunFacets)","u":"facets(io.openlineage.client.OpenLineage.RunFacets)"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"facetsConfig"},{"p":"io.openlineage.client.transports","c":"FacetsConfig","l":"FacetsConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"FacetsConfig","l":"FacetsConfig(String[], String[], Map)","u":"%3Cinit%3E(java.lang.String[],java.lang.String[],java.util.Map)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent.EventType","l":"FAIL"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent.EventType","l":"FAIL"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetBuilder","l":"failedTasks(Long)","u":"failedTasks(java.lang.Long)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder","l":"field(String)","u":"field(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetBuilder","l":"fields(List)","u":"fields(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetFieldsBuilder","l":"fields(List)","u":"fields(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetBuilder","l":"fields(OpenLineage.ColumnLineageDatasetFacetFields)","u":"fields(io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFields)"},{"p":"io.openlineage.client.transports","c":"FileConfig","l":"FileConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"FileConfig","l":"FileConfig(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetBuilder","l":"fileCount(Long)","u":"fileCount(java.lang.Long)"},{"p":"io.openlineage.client","c":"OpenLineage.OutputStatisticsOutputDatasetFacetBuilder","l":"fileCount(Long)","u":"fileCount(java.lang.Long)"},{"p":"io.openlineage.client","c":"OpenLineage.StorageDatasetFacetBuilder","l":"fileFormat(String)","u":"fileFormat(java.lang.String)"},{"p":"io.openlineage.client.utils.filesystem","c":"FilesystemDatasetUtils","l":"FilesystemDatasetUtils()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"FileTransport","l":"FileTransport(FileConfig)","u":"%3Cinit%3E(io.openlineage.client.transports.FileConfig)"},{"p":"io.openlineage.client.transports","c":"FileTransportBuilder","l":"FileTransportBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.utils","c":"RuntimeUtils","l":"freeMemory()"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils","l":"fromJson(String, TypeReference)","u":"fromJson(java.lang.String,com.fasterxml.jackson.core.type.TypeReference)"},{"p":"io.openlineage.client.utils.filesystem","c":"FilesystemDatasetUtils","l":"fromLocation(URI)","u":"fromLocation(java.net.URI)"},{"p":"io.openlineage.client.utils.filesystem","c":"FilesystemDatasetUtils","l":"fromLocationAndName(URI, String)","u":"fromLocationAndName(java.net.URI,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacetsBuilder","l":"gcp_common(OpenLineage.GcpCommonJobFacet)","u":"gcp_common(io.openlineage.client.OpenLineage.GcpCommonJobFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacetBuilder","l":"GcpCommonJobFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacetOriginBuilder","l":"GcpCommonJobFacetOriginBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.utils","c":"UUIDUtils","l":"generateNewUUID()"},{"p":"io.openlineage.client.utils","c":"UUIDUtils","l":"generateNewUUID(Instant)","u":"generateNewUUID(java.time.Instant)"},{"p":"io.openlineage.client.utils.filesystem","c":"GenericFilesystemDatasetExtractor","l":"GenericFilesystemDatasetExtractor()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.utils.jdbc","c":"GenericJdbcExtractor","l":"GenericJdbcExtractor()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetVersionDatasetFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasourceDatasetFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultDatasetFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultJobFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationDatasetFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationJobFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeJobFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.SQLJobFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.StorageDatasetFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacet","l":"get_deleted()"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetFacet","l":"get_deleted()"},{"p":"io.openlineage.server","c":"OpenLineage.JobFacet","l":"get_deleted()"},{"p":"io.openlineage.client","c":"OpenLineage.BaseFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetVersionDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasourceDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultInputDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultJobFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultOutputDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultRunFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationJobFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.ErrorMessageRunFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.ExternalQueryRunFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.NominalTimeRunFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputStatisticsOutputDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.ProcessingEngineRunFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeJobFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.SQLJobFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.StorageDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.server","c":"OpenLineage.BaseFacet","l":"get_producer()"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetFacet","l":"get_producer()"},{"p":"io.openlineage.server","c":"OpenLineage.InputDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.server","c":"OpenLineage.JobFacet","l":"get_producer()"},{"p":"io.openlineage.server","c":"OpenLineage.OutputDatasetFacet","l":"get_producer()"},{"p":"io.openlineage.server","c":"OpenLineage.RunFacet","l":"get_producer()"},{"p":"io.openlineage.client","c":"OpenLineage.BaseFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetVersionDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasourceDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultInputDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultJobFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultOutputDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultRunFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationJobFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.ErrorMessageRunFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.ExternalQueryRunFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.NominalTimeRunFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputStatisticsOutputDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.ProcessingEngineRunFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeJobFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.SQLJobFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.StorageDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.server","c":"OpenLineage.BaseFacet","l":"get_schemaURL()"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.server","c":"OpenLineage.InputDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.server","c":"OpenLineage.JobFacet","l":"get_schemaURL()"},{"p":"io.openlineage.server","c":"OpenLineage.OutputDatasetFacet","l":"get_schemaURL()"},{"p":"io.openlineage.server","c":"OpenLineage.RunFacet","l":"get_schemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.BaseFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFields","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditional","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacets","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetVersionDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasourceDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultInputDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultJobFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultOutputDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DefaultRunFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationJobFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.ErrorMessageRunFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.ExternalQueryRunFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetInputFacets","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacets","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.NominalTimeRunFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetOutputFacets","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputStatisticsOutputDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.ProcessingEngineRunFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacets","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeJobFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.SQLJobFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.StorageDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.BaseEvent","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.BaseFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.Dataset","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetEvent","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetFacets","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.InputDataset","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.InputDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.InputDatasetInputFacets","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.Job","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.JobEvent","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.JobFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.JobFacets","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.OutputDataset","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.OutputDatasetFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.OutputDatasetOutputFacets","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.Run","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.RunFacet","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.RunFacets","l":"getAdditionalProperties()"},{"p":"io.openlineage.server","c":"OpenLineage.StaticDataset","l":"getAdditionalProperties()"},{"p":"io.openlineage.client.transports","c":"ApiKeyTokenProvider","l":"getApiKey()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacetAssertions","l":"getAssertion()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacet","l":"getAssertions()"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"getAuth()"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"getAuth()"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcLocation","l":"getAuthority()"},{"p":"io.openlineage.client.transports","c":"HttpTransportResponseException","l":"getBody()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacet","l":"getBranch()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacet","l":"getBytes()"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreaker","l":"getCheckIntervalMillis()"},{"p":"io.openlineage.client.circuitBreaker","c":"ExecutorCircuitBreaker","l":"getCheckIntervalMillis()"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"getCircuitBreaker()"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"getCircuitCheckIntervalInMillis()"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"getCircuitCheckIntervalInMillis()"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerConfig","l":"getCircuitCheckIntervalInMillis()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacetAssertions","l":"getColumn()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacets","l":"getColumnLineage()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacet","l":"getColumnMetrics()"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"getCompression()"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"getCompression()"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerBuilder","l":"getConfig()"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerBuilder","l":"getConfig()"},{"p":"io.openlineage.client.circuitBreaker","c":"NoOpCircuitBreakerBuilder","l":"getConfig()"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerBuilder","l":"getConfig()"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerBuilder","l":"getConfig()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverBuilder","l":"getConfig()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverBuilder","l":"getConfig()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverBuilder","l":"getConfig()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverBuilder","l":"getConfig()"},{"p":"io.openlineage.client.transports","c":"ConsoleTransportBuilder","l":"getConfig()"},{"p":"io.openlineage.client.transports","c":"FileTransportBuilder","l":"getConfig()"},{"p":"io.openlineage.client.transports","c":"HttpTransportBuilder","l":"getConfig()"},{"p":"io.openlineage.client.transports","c":"KafkaTransportBuilder","l":"getConfig()"},{"p":"io.openlineage.client.transports","c":"KinesisTransportBuilder","l":"getConfig()"},{"p":"io.openlineage.client.transports","c":"TransportBuilder","l":"getConfig()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional","l":"getCount()"},{"p":"io.openlineage.client.transports","c":"FacetsConfig","l":"getCustomEnvironmentVariables()"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcLocation","l":"getDatabase()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetInputFacets","l":"getDataQualityAssertions()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetInputFacets","l":"getDataQualityMetrics()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetEvent","l":"getDataset()"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetEvent","l":"getDataset()"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"getDatasetConfig()"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcDatasetUtils","l":"getDatasetIdentifier(String, List, Properties)","u":"getDatasetIdentifier(java.lang.String,java.util.List,java.util.Properties)"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcDatasetUtils","l":"getDatasetIdentifier(String, String, Properties)","u":"getDatasetIdentifier(java.lang.String,java.lang.String,java.util.Properties)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetVersionDatasetFacet","l":"getDatasetVersion()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacets","l":"getDataSource()"},{"p":"io.openlineage.client.transports","c":"FacetsConfig","l":"getDeprecatedDisabledFacets()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations","l":"getDescription()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationDatasetFacet","l":"getDescription()"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationJobFacet","l":"getDescription()"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetFields","l":"getDescription()"},{"p":"io.openlineage.client.transports","c":"FacetsConfig","l":"getDisabledFacets()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacet","l":"getDisplayName()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional","l":"getDistinctCount()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacets","l":"getDocumentation()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacets","l":"getDocumentation()"},{"p":"io.openlineage.client.transports","c":"FacetsConfig","l":"getEffectiveDisabledFacets()"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"getEndpoint()"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"getEndpoint()"},{"p":"io.openlineage.client","c":"Environment","l":"getEnvironmentVariable(String)","u":"getEnvironmentVariable(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetErrors","l":"getErrorMessage()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacets","l":"getErrorMessage()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacet","l":"getErrors()"},{"p":"io.openlineage.client","c":"OpenLineage.BaseEvent","l":"getEventTime()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetEvent","l":"getEventTime()"},{"p":"io.openlineage.client","c":"OpenLineage.JobEvent","l":"getEventTime()"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent","l":"getEventTime()"},{"p":"io.openlineage.server","c":"OpenLineage.BaseEvent","l":"getEventTime()"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetEvent","l":"getEventTime()"},{"p":"io.openlineage.server","c":"OpenLineage.JobEvent","l":"getEventTime()"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent","l":"getEventTime()"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent","l":"getEventType()"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent","l":"getEventType()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacets","l":"getExternalQuery()"},{"p":"io.openlineage.client","c":"OpenLineage.ExternalQueryRunFacet","l":"getExternalQueryId()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacets","l":"getExtractionError()"},{"p":"io.openlineage.client","c":"OpenLineage.Dataset","l":"getFacets()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDataset","l":"getFacets()"},{"p":"io.openlineage.client","c":"OpenLineage.Job","l":"getFacets()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDataset","l":"getFacets()"},{"p":"io.openlineage.client","c":"OpenLineage.Run","l":"getFacets()"},{"p":"io.openlineage.client","c":"OpenLineage.StaticDataset","l":"getFacets()"},{"p":"io.openlineage.server","c":"OpenLineage.Dataset","l":"getFacets()"},{"p":"io.openlineage.server","c":"OpenLineage.InputDataset","l":"getFacets()"},{"p":"io.openlineage.server","c":"OpenLineage.Job","l":"getFacets()"},{"p":"io.openlineage.server","c":"OpenLineage.OutputDataset","l":"getFacets()"},{"p":"io.openlineage.server","c":"OpenLineage.Run","l":"getFacets()"},{"p":"io.openlineage.server","c":"OpenLineage.StaticDataset","l":"getFacets()"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"getFacetsConfig()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacet","l":"getFailedTasks()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields","l":"getField()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacet","l":"getFields()"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacet","l":"getFields()"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetFields","l":"getFields()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacet","l":"getFileCount()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputStatisticsOutputDatasetFacet","l":"getFileCount()"},{"p":"io.openlineage.client","c":"OpenLineage.StorageDatasetFacet","l":"getFileFormat()"},{"p":"io.openlineage.client.utils","c":"RuntimeUtils","l":"getGarbageCollectorMXBeans()"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"getGcCpuThreshold()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacets","l":"getGcp_common()"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"getHeaders()"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"getHeaders()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverConfig","l":"getHosts()"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacet","l":"getIdentifiers()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDataset","l":"getInputFacets()"},{"p":"io.openlineage.server","c":"OpenLineage.InputDataset","l":"getInputFacets()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditional","l":"getInputFields()"},{"p":"io.openlineage.client","c":"OpenLineage.JobEvent","l":"getInputs()"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent","l":"getInputs()"},{"p":"io.openlineage.server","c":"OpenLineage.JobEvent","l":"getInputs()"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent","l":"getInputs()"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcLocation","l":"getInstance()"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacet","l":"getIntegration()"},{"p":"io.openlineage.client","c":"OpenLineage.JobEvent","l":"getJob()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacet","l":"getJob()"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent","l":"getJob()"},{"p":"io.openlineage.server","c":"OpenLineage.JobEvent","l":"getJob()"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent","l":"getJob()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacets","l":"getJobType()"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacet","l":"getJobType()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeJobFacet","l":"getLanguage()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacets","l":"getLifecycleStateChange()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet","l":"getLifecycleStateChange()"},{"p":"io.openlineage.client.transports","c":"FileConfig","l":"getLocation()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations","l":"getMasking()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"getMatchingGroup()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional","l":"getMax()"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerConfigTypeIdResolver","l":"getMechanism()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverConfigTypeIdResolver","l":"getMechanism()"},{"p":"io.openlineage.client.transports","c":"TokenProviderTypeIdResolver","l":"getMechanism()"},{"p":"io.openlineage.client.transports","c":"TransportConfigTypeIdResolver","l":"getMechanism()"},{"p":"io.openlineage.client.utils","c":"RuntimeUtils","l":"getMemoryFractionUsage()"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"getMemoryThreshold()"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"getMemoryThreshold()"},{"p":"io.openlineage.client","c":"OpenLineage.ErrorMessageRunFacet","l":"getMessage()"},{"p":"io.openlineage.client.transports","c":"KafkaConfig","l":"getMessageKey()"},{"p":"io.openlineage.client.metrics","c":"MicrometerProvider","l":"getMeterRegistry()"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"getMetricsConfig()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional","l":"getMin()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.Dataset","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasourceDatasetFacet","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacetOrigin","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDataset","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.Job","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDataset","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacetOwners","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacetOwners","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetJob","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.ProcessingEngineRunFacet","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetFields","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.StaticDataset","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacetIdentifiers","l":"getName()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier","l":"getName()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier.Symlink","l":"getName()"},{"p":"io.openlineage.server","c":"OpenLineage.Dataset","l":"getName()"},{"p":"io.openlineage.server","c":"OpenLineage.InputDataset","l":"getName()"},{"p":"io.openlineage.server","c":"OpenLineage.Job","l":"getName()"},{"p":"io.openlineage.server","c":"OpenLineage.OutputDataset","l":"getName()"},{"p":"io.openlineage.server","c":"OpenLineage.StaticDataset","l":"getName()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields","l":"getNamespace()"},{"p":"io.openlineage.client","c":"OpenLineage.Dataset","l":"getNamespace()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDataset","l":"getNamespace()"},{"p":"io.openlineage.client","c":"OpenLineage.Job","l":"getNamespace()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier","l":"getNamespace()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDataset","l":"getNamespace()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetJob","l":"getNamespace()"},{"p":"io.openlineage.client","c":"OpenLineage.StaticDataset","l":"getNamespace()"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacetIdentifiers","l":"getNamespace()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier","l":"getNamespace()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier.Symlink","l":"getNamespace()"},{"p":"io.openlineage.server","c":"OpenLineage.Dataset","l":"getNamespace()"},{"p":"io.openlineage.server","c":"OpenLineage.InputDataset","l":"getNamespace()"},{"p":"io.openlineage.server","c":"OpenLineage.Job","l":"getNamespace()"},{"p":"io.openlineage.server","c":"OpenLineage.OutputDataset","l":"getNamespace()"},{"p":"io.openlineage.server","c":"OpenLineage.StaticDataset","l":"getNamespace()"},{"p":"io.openlineage.client.dataset","c":"DatasetConfig","l":"getNamespaceResolvers()"},{"p":"io.openlineage.client","c":"OpenLineage.NominalTimeRunFacet","l":"getNominalEndTime()"},{"p":"io.openlineage.client","c":"OpenLineage.NominalTimeRunFacet","l":"getNominalStartTime()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacets","l":"getNominalTime()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional","l":"getNullCount()"},{"p":"io.openlineage.client","c":"OpenLineage.ProcessingEngineRunFacet","l":"getOpenlineageAdapterVersion()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacet","l":"getOrigin()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDataset","l":"getOutputFacets()"},{"p":"io.openlineage.server","c":"OpenLineage.OutputDataset","l":"getOutputFacets()"},{"p":"io.openlineage.client","c":"OpenLineage.JobEvent","l":"getOutputs()"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent","l":"getOutputs()"},{"p":"io.openlineage.server","c":"OpenLineage.JobEvent","l":"getOutputs()"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent","l":"getOutputs()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetOutputFacets","l":"getOutputStatistics()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacet","l":"getOwners()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacet","l":"getOwners()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacets","l":"getOwnership()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacets","l":"getOwnership()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacets","l":"getParent()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacet","l":"getPath()"},{"p":"io.openlineage.client","c":"ConfigPathProvider","l":"getPaths()"},{"p":"io.openlineage.client","c":"DefaultConfigPathProvider","l":"getPaths()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet","l":"getPreviousIdentifier()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacets","l":"getProcessing_engine()"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacet","l":"getProcessingType()"},{"p":"io.openlineage.client","c":"OpenLineage.BaseEvent","l":"getProducer()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetEvent","l":"getProducer()"},{"p":"io.openlineage.client","c":"OpenLineage.JobEvent","l":"getProducer()"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent","l":"getProducer()"},{"p":"io.openlineage.server","c":"OpenLineage.BaseEvent","l":"getProducer()"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetEvent","l":"getProducer()"},{"p":"io.openlineage.server","c":"OpenLineage.JobEvent","l":"getProducer()"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent","l":"getProducer()"},{"p":"io.openlineage.client","c":"OpenLineage.ErrorMessageRunFacet","l":"getProgrammingLanguage()"},{"p":"io.openlineage.client.transports","c":"KafkaConfig","l":"getProperties()"},{"p":"io.openlineage.client.transports","c":"KinesisConfig","l":"getProperties()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional","l":"getQuantiles()"},{"p":"io.openlineage.client","c":"OpenLineage.SQLJobFacet","l":"getQuery()"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerState","l":"getReason()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"getRegex()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverConfig","l":"getRegex()"},{"p":"io.openlineage.client.transports","c":"KinesisConfig","l":"getRegion()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacet","l":"getRepoUrl()"},{"p":"io.openlineage.client.transports","c":"KinesisConfig","l":"getRoleArn()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacet","l":"getRowCount()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputStatisticsOutputDatasetFacet","l":"getRowCount()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacet","l":"getRun()"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent","l":"getRun()"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent","l":"getRun()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetRun","l":"getRunId()"},{"p":"io.openlineage.client","c":"OpenLineage.Run","l":"getRunId()"},{"p":"io.openlineage.server","c":"OpenLineage.Run","l":"getRunId()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverConfig","l":"getSchema()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"getSchema()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverConfig","l":"getSchema()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacets","l":"getSchema()"},{"p":"io.openlineage.client","c":"OpenLineage.BaseEvent","l":"getSchemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetEvent","l":"getSchemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.JobEvent","l":"getSchemaURL()"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent","l":"getSchemaURL()"},{"p":"io.openlineage.server","c":"OpenLineage.BaseEvent","l":"getSchemaURL()"},{"p":"io.openlineage.server","c":"OpenLineage.DatasetEvent","l":"getSchemaURL()"},{"p":"io.openlineage.server","c":"OpenLineage.JobEvent","l":"getSchemaURL()"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent","l":"getSchemaURL()"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcLocation","l":"getScheme()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputStatisticsOutputDatasetFacet","l":"getSize()"},{"p":"io.openlineage.client","c":"OpenLineage.ExternalQueryRunFacet","l":"getSource()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacets","l":"getSourceCode()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeJobFacet","l":"getSourceCode()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacets","l":"getSourceCodeLocation()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacetOrigin","l":"getSourceType()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacets","l":"getSql()"},{"p":"io.openlineage.client","c":"OpenLineage.ErrorMessageRunFacet","l":"getStackTrace()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetErrors","l":"getStackTrace()"},{"p":"io.openlineage.client.transports","c":"HttpTransportResponseException","l":"getStatusCode()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacets","l":"getStorage()"},{"p":"io.openlineage.client","c":"OpenLineage.StorageDatasetFacet","l":"getStorageLayer()"},{"p":"io.openlineage.client.transports","c":"KinesisConfig","l":"getStreamName()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations","l":"getSubtype()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacetAssertions","l":"getSuccess()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional","l":"getSum()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacets","l":"getSymlinks()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier","l":"getSymlinks()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacet","l":"getTag()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetErrors","l":"getTask()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetErrors","l":"getTaskNumber()"},{"p":"io.openlineage.client.circuitBreaker","c":"ExecutorCircuitBreaker","l":"getTimeout()"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"getTimeout()"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"getTimeout()"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"getTimeoutInMillis()"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"getTimeoutInMillis()"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"getTimeoutInSeconds()"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"getTimeoutInSeconds()"},{"p":"io.openlineage.client.transports","c":"ApiKeyTokenProvider","l":"getToken()"},{"p":"io.openlineage.client.transports","c":"TokenProvider","l":"getToken()"},{"p":"io.openlineage.client.transports","c":"KafkaConfig","l":"getTopicName()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacet","l":"getTotalTasks()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditional","l":"getTransformationDescription()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields","l":"getTransformations()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditional","l":"getTransformationType()"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"getTransportConfig()"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerBuilder","l":"getType()"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerBuilder","l":"getType()"},{"p":"io.openlineage.client.circuitBreaker","c":"NoOpCircuitBreakerBuilder","l":"getType()"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerBuilder","l":"getType()"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerBuilder","l":"getType()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverBuilder","l":"getType()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverBuilder","l":"getType()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverBuilder","l":"getType()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverBuilder","l":"getType()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations","l":"getType()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacetOwners","l":"getType()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacetOwners","l":"getType()"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetFields","l":"getType()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacet","l":"getType()"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacetIdentifiers","l":"getType()"},{"p":"io.openlineage.client.transports","c":"ConsoleTransportBuilder","l":"getType()"},{"p":"io.openlineage.client.transports","c":"FileTransportBuilder","l":"getType()"},{"p":"io.openlineage.client.transports","c":"HttpTransportBuilder","l":"getType()"},{"p":"io.openlineage.client.transports","c":"KafkaTransportBuilder","l":"getType()"},{"p":"io.openlineage.client.transports","c":"KinesisTransportBuilder","l":"getType()"},{"p":"io.openlineage.client.transports","c":"TransportBuilder","l":"getType()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier.Symlink","l":"getType()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasourceDatasetFacet","l":"getUri()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacet","l":"getUrl()"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"getUrl()"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"getUrl()"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"getUrlParams()"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"getUrlParams()"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerConfig","l":"getValuesReturned()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacets","l":"getVersion()"},{"p":"io.openlineage.client","c":"OpenLineage.ProcessingEngineRunFacet","l":"getVersion()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacet","l":"getVersion()"},{"p":"io.openlineage.client.transports","c":"HttpConfig.Compression","l":"GZIP"},{"p":"io.openlineage.client.utils","c":"ReflectionUtils","l":"hasClass(String)","u":"hasClass(java.lang.String)"},{"p":"io.openlineage.client.utils","c":"ReflectionUtils","l":"hasClasses(String...)","u":"hasClasses(java.lang.String...)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerState","l":"hashCode()"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"hashCode()"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"hashCode()"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerConfig","l":"hashCode()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverConfig","l":"hashCode()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"hashCode()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverConfig","l":"hashCode()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier","l":"hashCode()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier.Symlink","l":"hashCode()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolver","l":"HostListNamespaceResolver(String, HostListNamespaceResolverConfig)","u":"%3Cinit%3E(java.lang.String,io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverBuilder","l":"HostListNamespaceResolverBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverConfig","l":"HostListNamespaceResolverConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverConfig","l":"HostListNamespaceResolverConfig(List, String)","u":"%3Cinit%3E(java.util.List,java.lang.String)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"http(CloseableHttpClient)","u":"http(org.apache.http.impl.client.CloseableHttpClient)"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"HttpConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"HttpConfig(URI, String, Double, Integer, TokenProvider, Map, Map, HttpConfig.Compression)","u":"%3Cinit%3E(java.net.URI,java.lang.String,java.lang.Double,java.lang.Integer,io.openlineage.client.transports.TokenProvider,java.util.Map,java.util.Map,io.openlineage.client.transports.HttpConfig.Compression)"},{"p":"io.openlineage.client.transports","c":"HttpTransport","l":"HttpTransport(CloseableHttpClient, HttpConfig)","u":"%3Cinit%3E(org.apache.http.impl.client.CloseableHttpClient,io.openlineage.client.transports.HttpConfig)"},{"p":"io.openlineage.client.transports","c":"HttpTransport","l":"HttpTransport(HttpConfig)","u":"%3Cinit%3E(io.openlineage.client.transports.HttpConfig)"},{"p":"io.openlineage.client.transports","c":"HttpTransportBuilder","l":"HttpTransportBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"HttpTransportResponseException","l":"HttpTransportResponseException(int, String)","u":"%3Cinit%3E(int,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacetBuilder","l":"identifiers(List)","u":"identifiers(java.util.List)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerConfigTypeIdResolver","l":"idFromValue(Object)","u":"idFromValue(java.lang.Object)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverConfigTypeIdResolver","l":"idFromValue(Object)","u":"idFromValue(java.lang.Object)"},{"p":"io.openlineage.client.transports","c":"TokenProviderTypeIdResolver","l":"idFromValue(Object)","u":"idFromValue(java.lang.Object)"},{"p":"io.openlineage.client.transports","c":"TransportConfigTypeIdResolver","l":"idFromValue(Object)","u":"idFromValue(java.lang.Object)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerConfigTypeIdResolver","l":"idFromValueAndType(Object, Class>)","u":"idFromValueAndType(java.lang.Object,java.lang.Class)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverConfigTypeIdResolver","l":"idFromValueAndType(Object, Class>)","u":"idFromValueAndType(java.lang.Object,java.lang.Class)"},{"p":"io.openlineage.client.transports","c":"TokenProviderTypeIdResolver","l":"idFromValueAndType(Object, Class>)","u":"idFromValueAndType(java.lang.Object,java.lang.Class)"},{"p":"io.openlineage.client.transports","c":"TransportConfigTypeIdResolver","l":"idFromValueAndType(Object, Class>)","u":"idFromValueAndType(java.lang.Object,java.lang.Class)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerConfigTypeIdResolver","l":"init(JavaType)","u":"init(com.fasterxml.jackson.databind.JavaType)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverConfigTypeIdResolver","l":"init(JavaType)","u":"init(com.fasterxml.jackson.databind.JavaType)"},{"p":"io.openlineage.client.transports","c":"TokenProviderTypeIdResolver","l":"init(JavaType)","u":"init(com.fasterxml.jackson.databind.JavaType)"},{"p":"io.openlineage.client.transports","c":"TransportConfigTypeIdResolver","l":"init(JavaType)","u":"init(com.fasterxml.jackson.databind.JavaType)"},{"p":"io.openlineage.client","c":"OpenLineageClient","l":"initializeMetrics()"},{"p":"io.openlineage.server","c":"OpenLineage.InputDataset","l":"InputDataset(String, String, OpenLineage.DatasetFacets, OpenLineage.InputDatasetInputFacets)","u":"%3Cinit%3E(java.lang.String,java.lang.String,io.openlineage.server.OpenLineage.DatasetFacets,io.openlineage.server.OpenLineage.InputDatasetInputFacets)"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetBuilder","l":"InputDatasetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.server","c":"OpenLineage.InputDatasetFacet","l":"InputDatasetFacet(URI, URI)","u":"%3Cinit%3E(java.net.URI,java.net.URI)"},{"p":"io.openlineage.server","c":"OpenLineage.InputDatasetInputFacets","l":"InputDatasetInputFacets()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetInputFacetsBuilder","l":"InputDatasetInputFacetsBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetBuilder","l":"inputFacets(OpenLineage.InputDatasetInputFacets)","u":"inputFacets(io.openlineage.client.OpenLineage.InputDatasetInputFacets)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder","l":"inputFields(List)","u":"inputFields(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.JobEventBuilder","l":"inputs(List)","u":"inputs(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEventBuilder","l":"inputs(List)","u":"inputs(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacetBuilder","l":"integration(String)","u":"integration(java.lang.String)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerState","l":"isClosed()"},{"p":"io.openlineage.client.utils.jdbc","c":"DerbyJdbcExtractor","l":"isDefinedAt(String)","u":"isDefinedAt(java.lang.String)"},{"p":"io.openlineage.client.utils.jdbc","c":"GenericJdbcExtractor","l":"isDefinedAt(String)","u":"isDefinedAt(java.lang.String)"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcExtractor","l":"isDefinedAt(String)","u":"isDefinedAt(java.lang.String)"},{"p":"io.openlineage.client.utils.jdbc","c":"MySqlJdbcExtractor","l":"isDefinedAt(String)","u":"isDefinedAt(java.lang.String)"},{"p":"io.openlineage.client.utils.jdbc","c":"OracleJdbcExtractor","l":"isDefinedAt(String)","u":"isDefinedAt(java.lang.String)"},{"p":"io.openlineage.client.utils.jdbc","c":"OverridingJdbcExtractor","l":"isDefinedAt(String)","u":"isDefinedAt(java.lang.String)"},{"p":"io.openlineage.client.utils.jdbc","c":"PostgresJdbcExtractor","l":"isDefinedAt(String)","u":"isDefinedAt(java.lang.String)"},{"p":"io.openlineage.client.utils.jdbc","c":"SqlServerJdbcExtractor","l":"isDefinedAt(String)","u":"isDefinedAt(java.lang.String)"},{"p":"io.openlineage.client.utils.jdbc","c":"TeradataJdbcExtractor","l":"isDefinedAt(String)","u":"isDefinedAt(java.lang.String)"},{"p":"io.openlineage.client.utils.filesystem","c":"FilesystemDatasetExtractor","l":"isDefinedAt(URI)","u":"isDefinedAt(java.net.URI)"},{"p":"io.openlineage.client.utils.filesystem","c":"GenericFilesystemDatasetExtractor","l":"isDefinedAt(URI)","u":"isDefinedAt(java.net.URI)"},{"p":"io.openlineage.client.utils.filesystem","c":"LocalFilesystemDatasetExtractor","l":"isDefinedAt(URI)","u":"isDefinedAt(java.net.URI)"},{"p":"io.openlineage.client.utils.filesystem","c":"ObjectStorageDatasetExtractor","l":"isDefinedAt(URI)","u":"isDefinedAt(java.net.URI)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacet","l":"isDeleted()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacet","l":"isDeleted()"},{"p":"io.openlineage.client.circuitBreaker","c":"ExecutorCircuitBreaker","l":"isPercentageValueValid(Integer)","u":"isPercentageValueValid(java.lang.Integer)"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreaker","l":"JavaRuntimeCircuitBreaker(JavaRuntimeCircuitBreakerConfig)","u":"%3Cinit%3E(io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerBuilder","l":"JavaRuntimeCircuitBreakerBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"JavaRuntimeCircuitBreakerConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"JavaRuntimeCircuitBreakerConfig(int, int)","u":"%3Cinit%3E(int,int)"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"JavaRuntimeCircuitBreakerConfig(int, int, int)","u":"%3Cinit%3E(int,int,int)"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"JavaRuntimeCircuitBreakerConfig(Integer, Integer, Integer, Integer)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcDatasetUtils","l":"JdbcDatasetUtils()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcLocation","l":"JdbcLocation(String, Optional, Optional, Optional)","u":"%3Cinit%3E(java.lang.String,java.util.Optional,java.util.Optional,java.util.Optional)"},{"p":"io.openlineage.client","c":"OpenLineage.JobEventBuilder","l":"job(OpenLineage.Job)","u":"job(io.openlineage.client.OpenLineage.Job)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEventBuilder","l":"job(OpenLineage.Job)","u":"job(io.openlineage.client.OpenLineage.Job)"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetBuilder","l":"job(OpenLineage.ParentRunFacetJob)","u":"job(io.openlineage.client.OpenLineage.ParentRunFacetJob)"},{"p":"io.openlineage.server","c":"OpenLineage.Job","l":"Job(String, String, OpenLineage.JobFacets)","u":"%3Cinit%3E(java.lang.String,java.lang.String,io.openlineage.server.OpenLineage.JobFacets)"},{"p":"io.openlineage.client","c":"OpenLineage.JobBuilder","l":"JobBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.server","c":"OpenLineage.JobEvent","l":"JobEvent(ZonedDateTime, URI, URI, OpenLineage.Job, List, List)","u":"%3Cinit%3E(java.time.ZonedDateTime,java.net.URI,java.net.URI,io.openlineage.server.OpenLineage.Job,java.util.List,java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.JobEventBuilder","l":"JobEventBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.server","c":"OpenLineage.JobFacet","l":"JobFacet(URI, URI)","u":"%3Cinit%3E(java.net.URI,java.net.URI)"},{"p":"io.openlineage.server","c":"OpenLineage.JobFacets","l":"JobFacets()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacetsBuilder","l":"JobFacetsBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacetsBuilder","l":"jobType(OpenLineage.JobTypeJobFacet)","u":"jobType(io.openlineage.client.OpenLineage.JobTypeJobFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacetBuilder","l":"jobType(String)","u":"jobType(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacetBuilder","l":"JobTypeJobFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"KafkaConfig","l":"KafkaConfig(String, String, Properties)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.util.Properties)"},{"p":"io.openlineage.client.transports","c":"KafkaTransport","l":"KafkaTransport(KafkaConfig)","u":"%3Cinit%3E(io.openlineage.client.transports.KafkaConfig)"},{"p":"io.openlineage.client.transports","c":"KafkaTransport","l":"KafkaTransport(KafkaProducer, KafkaConfig)","u":"%3Cinit%3E(org.apache.kafka.clients.producer.KafkaProducer,io.openlineage.client.transports.KafkaConfig)"},{"p":"io.openlineage.client.transports","c":"KafkaTransportBuilder","l":"KafkaTransportBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"KinesisConfig","l":"KinesisConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"KinesisConfig","l":"KinesisConfig(String, String, String, Properties)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.util.Properties)"},{"p":"io.openlineage.client.transports","c":"KinesisTransport","l":"KinesisTransport(KinesisConfig)","u":"%3Cinit%3E(io.openlineage.client.transports.KinesisConfig)"},{"p":"io.openlineage.client.transports","c":"KinesisTransport","l":"KinesisTransport(KinesisProducer, KinesisConfig)","u":"%3Cinit%3E(com.amazonaws.services.kinesis.producer.KinesisProducer,io.openlineage.client.transports.KinesisConfig)"},{"p":"io.openlineage.client.transports","c":"KinesisTransportBuilder","l":"KinesisTransportBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeJobFacetBuilder","l":"language(String)","u":"language(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacetsBuilder","l":"lifecycleStateChange(OpenLineage.LifecycleStateChangeDatasetFacet)","u":"lifecycleStateChange(io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacetBuilder","l":"lifecycleStateChange(OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange)","u":"lifecycleStateChange(io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange)"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacetBuilder","l":"LifecycleStateChangeDatasetFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder","l":"LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverLoader","l":"loadDatasetNamespaceResolverConfigByType(String)","u":"loadDatasetNamespaceResolverConfigByType(java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverLoader","l":"loadDatasetNamespaceResolvers(DatasetConfig)","u":"loadDatasetNamespaceResolvers(io.openlineage.client.dataset.DatasetConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverLoader","l":"loadDatasetNamespaceResolverTypeByConfigClass(Class)","u":"loadDatasetNamespaceResolverTypeByConfigClass(java.lang.Class)"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils","l":"loadOpenLineageConfigJson(InputStream, TypeReference)","u":"loadOpenLineageConfigJson(java.io.InputStream,com.fasterxml.jackson.core.type.TypeReference)"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils","l":"loadOpenLineageConfigYaml(ConfigPathProvider, TypeReference)","u":"loadOpenLineageConfigYaml(io.openlineage.client.ConfigPathProvider,com.fasterxml.jackson.core.type.TypeReference)"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils","l":"loadOpenLineageConfigYaml(InputStream, TypeReference)","u":"loadOpenLineageConfigYaml(java.io.InputStream,com.fasterxml.jackson.core.type.TypeReference)"},{"p":"io.openlineage.client.utils.filesystem","c":"LocalFilesystemDatasetExtractor","l":"LocalFilesystemDatasetExtractor()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder","l":"masking(Boolean)","u":"masking(java.lang.Boolean)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder","l":"max(Double)","u":"max(java.lang.Double)"},{"p":"io.openlineage.client.utils","c":"RuntimeUtils","l":"maxMemory()"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils","l":"mergeFacets(Map, T, Class)","u":"mergeFacets(java.util.Map,T,java.lang.Class)"},{"p":"io.openlineage.client","c":"MergeConfig","l":"mergePropertyWith(Map, Map)","u":"mergePropertyWith(java.util.Map,java.util.Map)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"mergePropertyWith(Map, Map)","u":"mergePropertyWith(java.util.Map,java.util.Map)"},{"p":"io.openlineage.client","c":"MergeConfig","l":"mergePropertyWith(T, T)","u":"mergePropertyWith(T,T)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"mergePropertyWith(T, T)","u":"mergePropertyWith(T,T)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"mergeWith(HttpConfig)","u":"mergeWith(io.openlineage.client.transports.HttpConfig)"},{"p":"io.openlineage.client","c":"MergeConfig","l":"mergeWith(T)"},{"p":"io.openlineage.client","c":"MergeConfig","l":"mergeWithDefaultValue(T, T, T)","u":"mergeWithDefaultValue(T,T,T)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"mergeWithDefaultValue(T, T, T)","u":"mergeWithDefaultValue(T,T,T)"},{"p":"io.openlineage.client.dataset","c":"DatasetConfig","l":"mergeWithNonNull(DatasetConfig)","u":"mergeWithNonNull(io.openlineage.client.dataset.DatasetConfig)"},{"p":"io.openlineage.client.transports","c":"FacetsConfig","l":"mergeWithNonNull(FacetsConfig)","u":"mergeWithNonNull(io.openlineage.client.transports.FacetsConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverConfig","l":"mergeWithNonNull(HostListNamespaceResolverConfig)","u":"mergeWithNonNull(io.openlineage.client.dataset.namespace.resolver.HostListNamespaceResolverConfig)"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"mergeWithNonNull(HttpConfig)","u":"mergeWithNonNull(io.openlineage.client.transports.HttpConfig)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"mergeWithNonNull(HttpConfig)","u":"mergeWithNonNull(io.openlineage.client.transports.HttpConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"mergeWithNonNull(JavaRuntimeCircuitBreakerConfig)","u":"mergeWithNonNull(io.openlineage.client.circuitBreaker.JavaRuntimeCircuitBreakerConfig)"},{"p":"io.openlineage.client.transports","c":"KafkaConfig","l":"mergeWithNonNull(KafkaConfig)","u":"mergeWithNonNull(io.openlineage.client.transports.KafkaConfig)"},{"p":"io.openlineage.client.transports","c":"KinesisConfig","l":"mergeWithNonNull(KinesisConfig)","u":"mergeWithNonNull(io.openlineage.client.transports.KinesisConfig)"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"mergeWithNonNull(OpenLineageConfig)","u":"mergeWithNonNull(io.openlineage.client.OpenLineageConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"mergeWithNonNull(PatternMatchingGroupNamespaceResolverConfig)","u":"mergeWithNonNull(io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverConfig","l":"mergeWithNonNull(PatternNamespaceResolverConfig)","u":"mergeWithNonNull(io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"mergeWithNonNull(SimpleMemoryCircuitBreakerConfig)","u":"mergeWithNonNull(io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig)"},{"p":"io.openlineage.client","c":"MergeConfig","l":"mergeWithNonNull(T)"},{"p":"io.openlineage.client","c":"OpenLineage.ErrorMessageRunFacetBuilder","l":"message(String)","u":"message(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineageClient.Builder","l":"meterRegistry(MeterRegistry)","u":"meterRegistry(io.micrometer.core.instrument.MeterRegistry)"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"metricsConfig"},{"p":"io.openlineage.client.metrics","c":"MicrometerProvider","l":"MicrometerProvider()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder","l":"min(Double)","u":"min(java.lang.Double)"},{"p":"io.openlineage.client.utils.jdbc","c":"MySqlJdbcExtractor","l":"MySqlJdbcExtractor()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasourceDatasetFacetBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacetOriginBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.JobBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacetOwnersBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacetOwnersBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetJobBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ProcessingEngineRunFacetBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetFieldsBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.StaticDatasetBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacetIdentifiersBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder","l":"namespace(String)","u":"namespace(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetBuilder","l":"namespace(String)","u":"namespace(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.JobBuilder","l":"namespace(String)","u":"namespace(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder","l":"namespace(String)","u":"namespace(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetBuilder","l":"namespace(String)","u":"namespace(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetJobBuilder","l":"namespace(String)","u":"namespace(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.StaticDatasetBuilder","l":"namespace(String)","u":"namespace(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacetIdentifiersBuilder","l":"namespace(String)","u":"namespace(java.lang.String)"},{"p":"io.openlineage.client","c":"Clients","l":"newClient()"},{"p":"io.openlineage.client","c":"Clients","l":"newClient(ConfigPathProvider)","u":"newClient(io.openlineage.client.ConfigPathProvider)"},{"p":"io.openlineage.client","c":"Clients","l":"newClient(OpenLineageConfig)","u":"newClient(io.openlineage.client.OpenLineageConfig)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newColumnLineageDatasetFacet(OpenLineage.ColumnLineageDatasetFacetFields)","u":"newColumnLineageDatasetFacet(io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFields)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newColumnLineageDatasetFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newColumnLineageDatasetFacetFields()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newColumnLineageDatasetFacetFieldsAdditional(List, String, String)","u":"newColumnLineageDatasetFacetFieldsAdditional(java.util.List,java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newColumnLineageDatasetFacetFieldsAdditionalBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newColumnLineageDatasetFacetFieldsAdditionalInputFields(String, String, String, List)","u":"newColumnLineageDatasetFacetFieldsAdditionalInputFields(java.lang.String,java.lang.String,java.lang.String,java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations(String, String, String, Boolean)","u":"newColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations(java.lang.String,java.lang.String,java.lang.String,java.lang.Boolean)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newColumnLineageDatasetFacetFieldsBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDataQualityAssertionsDatasetFacet(List)","u":"newDataQualityAssertionsDatasetFacet(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDataQualityAssertionsDatasetFacetAssertions(String, Boolean, String)","u":"newDataQualityAssertionsDatasetFacetAssertions(java.lang.String,java.lang.Boolean,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDataQualityAssertionsDatasetFacetAssertionsBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDataQualityAssertionsDatasetFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDataQualityMetricsInputDatasetFacet(Long, Long, Long, OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics)","u":"newDataQualityMetricsInputDatasetFacet(java.lang.Long,java.lang.Long,java.lang.Long,io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDataQualityMetricsInputDatasetFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDataQualityMetricsInputDatasetFacetColumnMetrics()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDataQualityMetricsInputDatasetFacetColumnMetricsAdditional(Long, Long, Double, Double, Double, Double, OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles)","u":"newDataQualityMetricsInputDatasetFacetColumnMetricsAdditional(java.lang.Long,java.lang.Long,java.lang.Double,java.lang.Double,java.lang.Double,java.lang.Double,io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDataQualityMetricsInputDatasetFacetColumnMetricsBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDatasetEvent(ZonedDateTime, OpenLineage.StaticDataset)","u":"newDatasetEvent(java.time.ZonedDateTime,io.openlineage.client.OpenLineage.StaticDataset)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDatasetEventBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDatasetFacet()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDatasetFacets(OpenLineage.DocumentationDatasetFacet, OpenLineage.DatasourceDatasetFacet, OpenLineage.DatasetVersionDatasetFacet, OpenLineage.SchemaDatasetFacet, OpenLineage.OwnershipDatasetFacet, OpenLineage.StorageDatasetFacet, OpenLineage.ColumnLineageDatasetFacet, OpenLineage.SymlinksDatasetFacet, OpenLineage.LifecycleStateChangeDatasetFacet)","u":"newDatasetFacets(io.openlineage.client.OpenLineage.DocumentationDatasetFacet,io.openlineage.client.OpenLineage.DatasourceDatasetFacet,io.openlineage.client.OpenLineage.DatasetVersionDatasetFacet,io.openlineage.client.OpenLineage.SchemaDatasetFacet,io.openlineage.client.OpenLineage.OwnershipDatasetFacet,io.openlineage.client.OpenLineage.StorageDatasetFacet,io.openlineage.client.OpenLineage.ColumnLineageDatasetFacet,io.openlineage.client.OpenLineage.SymlinksDatasetFacet,io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDatasetFacetsBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDatasetVersionDatasetFacet(String)","u":"newDatasetVersionDatasetFacet(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDatasetVersionDatasetFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDatasourceDatasetFacet(String, URI)","u":"newDatasourceDatasetFacet(java.lang.String,java.net.URI)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDatasourceDatasetFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDeletedDatasetFacet()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDeletedJobFacet()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDocumentationDatasetFacet(String)","u":"newDocumentationDatasetFacet(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDocumentationDatasetFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDocumentationJobFacet(String)","u":"newDocumentationJobFacet(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newDocumentationJobFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newErrorMessageRunFacet(String, String, String)","u":"newErrorMessageRunFacet(java.lang.String,java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newErrorMessageRunFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newExternalQueryRunFacet(String, String)","u":"newExternalQueryRunFacet(java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newExternalQueryRunFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newExtractionErrorRunFacet(Long, Long, List)","u":"newExtractionErrorRunFacet(java.lang.Long,java.lang.Long,java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newExtractionErrorRunFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newExtractionErrorRunFacetErrors(String, String, String, Long)","u":"newExtractionErrorRunFacetErrors(java.lang.String,java.lang.String,java.lang.String,java.lang.Long)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newExtractionErrorRunFacetErrorsBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newGcpCommonJobFacet(String, OpenLineage.GcpCommonJobFacetOrigin)","u":"newGcpCommonJobFacet(java.lang.String,io.openlineage.client.OpenLineage.GcpCommonJobFacetOrigin)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newGcpCommonJobFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newGcpCommonJobFacetOrigin(String, String)","u":"newGcpCommonJobFacetOrigin(java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newGcpCommonJobFacetOriginBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newInputDataset(String, String, OpenLineage.DatasetFacets, OpenLineage.InputDatasetInputFacets)","u":"newInputDataset(java.lang.String,java.lang.String,io.openlineage.client.OpenLineage.DatasetFacets,io.openlineage.client.OpenLineage.InputDatasetInputFacets)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newInputDatasetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newInputDatasetFacet()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newInputDatasetInputFacets(OpenLineage.DataQualityAssertionsDatasetFacet, OpenLineage.DataQualityMetricsInputDatasetFacet)","u":"newInputDatasetInputFacets(io.openlineage.client.OpenLineage.DataQualityAssertionsDatasetFacet,io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newInputDatasetInputFacetsBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newJob(String, String, OpenLineage.JobFacets)","u":"newJob(java.lang.String,java.lang.String,io.openlineage.client.OpenLineage.JobFacets)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newJobBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newJobEvent(ZonedDateTime, OpenLineage.Job, List, List)","u":"newJobEvent(java.time.ZonedDateTime,io.openlineage.client.OpenLineage.Job,java.util.List,java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newJobEventBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newJobFacet()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newJobFacets(OpenLineage.JobTypeJobFacet, OpenLineage.GcpCommonJobFacet, OpenLineage.SourceCodeJobFacet, OpenLineage.OwnershipJobFacet, OpenLineage.SQLJobFacet, OpenLineage.SourceCodeLocationJobFacet, OpenLineage.DocumentationJobFacet)","u":"newJobFacets(io.openlineage.client.OpenLineage.JobTypeJobFacet,io.openlineage.client.OpenLineage.GcpCommonJobFacet,io.openlineage.client.OpenLineage.SourceCodeJobFacet,io.openlineage.client.OpenLineage.OwnershipJobFacet,io.openlineage.client.OpenLineage.SQLJobFacet,io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet,io.openlineage.client.OpenLineage.DocumentationJobFacet)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newJobFacetsBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newJobTypeJobFacet(String, String, String)","u":"newJobTypeJobFacet(java.lang.String,java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newJobTypeJobFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newLifecycleStateChangeDatasetFacet(OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange, OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier)","u":"newLifecycleStateChangeDatasetFacet(io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange,io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newLifecycleStateChangeDatasetFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newLifecycleStateChangeDatasetFacetPreviousIdentifier(String, String)","u":"newLifecycleStateChangeDatasetFacetPreviousIdentifier(java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newLifecycleStateChangeDatasetFacetPreviousIdentifierBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newNominalTimeRunFacet(ZonedDateTime, ZonedDateTime)","u":"newNominalTimeRunFacet(java.time.ZonedDateTime,java.time.ZonedDateTime)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newNominalTimeRunFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils","l":"newObjectMapper()"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils","l":"newObjectMapper(JsonFactory)","u":"newObjectMapper(com.fasterxml.jackson.core.JsonFactory)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOutputDataset(String, String, OpenLineage.DatasetFacets, OpenLineage.OutputDatasetOutputFacets)","u":"newOutputDataset(java.lang.String,java.lang.String,io.openlineage.client.OpenLineage.DatasetFacets,io.openlineage.client.OpenLineage.OutputDatasetOutputFacets)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOutputDatasetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOutputDatasetFacet()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOutputDatasetOutputFacets(OpenLineage.OutputStatisticsOutputDatasetFacet)","u":"newOutputDatasetOutputFacets(io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOutputDatasetOutputFacetsBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOutputStatisticsOutputDatasetFacet(Long, Long, Long)","u":"newOutputStatisticsOutputDatasetFacet(java.lang.Long,java.lang.Long,java.lang.Long)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOutputStatisticsOutputDatasetFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOwnershipDatasetFacet(List)","u":"newOwnershipDatasetFacet(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOwnershipDatasetFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOwnershipDatasetFacetOwners(String, String)","u":"newOwnershipDatasetFacetOwners(java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOwnershipDatasetFacetOwnersBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOwnershipJobFacet(List)","u":"newOwnershipJobFacet(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOwnershipJobFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOwnershipJobFacetOwners(String, String)","u":"newOwnershipJobFacetOwners(java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newOwnershipJobFacetOwnersBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newParentRunFacet(OpenLineage.ParentRunFacetRun, OpenLineage.ParentRunFacetJob)","u":"newParentRunFacet(io.openlineage.client.OpenLineage.ParentRunFacetRun,io.openlineage.client.OpenLineage.ParentRunFacetJob)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newParentRunFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newParentRunFacetJob(String, String)","u":"newParentRunFacetJob(java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newParentRunFacetJobBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newParentRunFacetRun(UUID)","u":"newParentRunFacetRun(java.util.UUID)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newParentRunFacetRunBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newProcessingEngineRunFacet(String, String, String)","u":"newProcessingEngineRunFacet(java.lang.String,java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newProcessingEngineRunFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newRun(UUID, OpenLineage.RunFacets)","u":"newRun(java.util.UUID,io.openlineage.client.OpenLineage.RunFacets)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newRunBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newRunEvent(ZonedDateTime, OpenLineage.RunEvent.EventType, OpenLineage.Run, OpenLineage.Job, List, List)","u":"newRunEvent(java.time.ZonedDateTime,io.openlineage.client.OpenLineage.RunEvent.EventType,io.openlineage.client.OpenLineage.Run,io.openlineage.client.OpenLineage.Job,java.util.List,java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newRunEventBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newRunFacet()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newRunFacets(OpenLineage.ErrorMessageRunFacet, OpenLineage.ExternalQueryRunFacet, OpenLineage.ExtractionErrorRunFacet, OpenLineage.ParentRunFacet, OpenLineage.NominalTimeRunFacet, OpenLineage.ProcessingEngineRunFacet)","u":"newRunFacets(io.openlineage.client.OpenLineage.ErrorMessageRunFacet,io.openlineage.client.OpenLineage.ExternalQueryRunFacet,io.openlineage.client.OpenLineage.ExtractionErrorRunFacet,io.openlineage.client.OpenLineage.ParentRunFacet,io.openlineage.client.OpenLineage.NominalTimeRunFacet,io.openlineage.client.OpenLineage.ProcessingEngineRunFacet)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newRunFacetsBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSchemaDatasetFacet(List)","u":"newSchemaDatasetFacet(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSchemaDatasetFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSchemaDatasetFacetFields(String, String, String, List)","u":"newSchemaDatasetFacetFields(java.lang.String,java.lang.String,java.lang.String,java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSchemaDatasetFacetFieldsBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSourceCodeJobFacet(String, String)","u":"newSourceCodeJobFacet(java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSourceCodeJobFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSourceCodeLocationJobFacet(String, URI, String, String, String, String, String)","u":"newSourceCodeLocationJobFacet(java.lang.String,java.net.URI,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSourceCodeLocationJobFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSQLJobFacet(String)","u":"newSQLJobFacet(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSQLJobFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newStaticDataset(String, String, OpenLineage.DatasetFacets)","u":"newStaticDataset(java.lang.String,java.lang.String,io.openlineage.client.OpenLineage.DatasetFacets)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newStaticDatasetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newStorageDatasetFacet(String, String)","u":"newStorageDatasetFacet(java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newStorageDatasetFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSymlinksDatasetFacet(List)","u":"newSymlinksDatasetFacet(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSymlinksDatasetFacetBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSymlinksDatasetFacetIdentifiers(String, String, String)","u":"newSymlinksDatasetFacetIdentifiers(java.lang.String,java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage","l":"newSymlinksDatasetFacetIdentifiersBuilder()"},{"p":"io.openlineage.client","c":"OpenLineage.NominalTimeRunFacetBuilder","l":"nominalEndTime(ZonedDateTime)","u":"nominalEndTime(java.time.ZonedDateTime)"},{"p":"io.openlineage.client","c":"OpenLineage.NominalTimeRunFacetBuilder","l":"nominalStartTime(ZonedDateTime)","u":"nominalStartTime(java.time.ZonedDateTime)"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacetsBuilder","l":"nominalTime(OpenLineage.NominalTimeRunFacet)","u":"nominalTime(io.openlineage.client.OpenLineage.NominalTimeRunFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.NominalTimeRunFacetBuilder","l":"NominalTimeRunFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"NoOpCircuitBreaker","l":"NoOpCircuitBreaker()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"NoOpCircuitBreakerBuilder","l":"NoOpCircuitBreakerBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"NoopTransport","l":"NoopTransport()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder","l":"nullCount(Long)","u":"nullCount(java.lang.Long)"},{"p":"io.openlineage.client.utils.filesystem","c":"ObjectStorageDatasetExtractor","l":"ObjectStorageDatasetExtractor(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"io.openlineage.client.transports","c":"FacetsConfig","l":"onOtherProperty(String, Object)","u":"onOtherProperty(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.server","c":"OpenLineage","l":"OpenLineage()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage","l":"OpenLineage(URI)","u":"%3Cinit%3E(java.net.URI)"},{"p":"io.openlineage.client","c":"OpenLineage.ProcessingEngineRunFacetBuilder","l":"openlineageAdapterVersion(String)","u":"openlineageAdapterVersion(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineageClient","l":"OpenLineageClient()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineageClient","l":"OpenLineageClient(Transport)","u":"%3Cinit%3E(io.openlineage.client.transports.Transport)"},{"p":"io.openlineage.client","c":"OpenLineageClient","l":"OpenLineageClient(Transport, CircuitBreaker, MeterRegistry, String...)","u":"%3Cinit%3E(io.openlineage.client.transports.Transport,io.openlineage.client.circuitBreaker.CircuitBreaker,io.micrometer.core.instrument.MeterRegistry,java.lang.String...)"},{"p":"io.openlineage.client","c":"OpenLineageClient","l":"OpenLineageClient(Transport, String...)","u":"%3Cinit%3E(io.openlineage.client.transports.Transport,java.lang.String...)"},{"p":"io.openlineage.client","c":"OpenLineageClientException","l":"OpenLineageClientException()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineageClientException","l":"OpenLineageClientException(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineageClientException","l":"OpenLineageClientException(String, Throwable)","u":"%3Cinit%3E(java.lang.String,java.lang.Throwable)"},{"p":"io.openlineage.client","c":"OpenLineageClientException","l":"OpenLineageClientException(Throwable)","u":"%3Cinit%3E(java.lang.Throwable)"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"OpenLineageConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"OpenLineageConfig(TransportConfig, FacetsConfig, DatasetConfig, CircuitBreakerConfig, Map)","u":"%3Cinit%3E(io.openlineage.client.transports.TransportConfig,io.openlineage.client.transports.FacetsConfig,io.openlineage.client.dataset.DatasetConfig,io.openlineage.client.circuitBreaker.CircuitBreakerConfig,java.util.Map)"},{"p":"io.openlineage.client.utils.jdbc","c":"OracleJdbcExtractor","l":"OracleJdbcExtractor()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacetBuilder","l":"origin(OpenLineage.GcpCommonJobFacetOrigin)","u":"origin(io.openlineage.client.OpenLineage.GcpCommonJobFacetOrigin)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent.EventType","l":"OTHER"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent.EventType","l":"OTHER"},{"p":"io.openlineage.server","c":"OpenLineage.OutputDataset","l":"OutputDataset(String, String, OpenLineage.DatasetFacets, OpenLineage.OutputDatasetOutputFacets)","u":"%3Cinit%3E(java.lang.String,java.lang.String,io.openlineage.server.OpenLineage.DatasetFacets,io.openlineage.server.OpenLineage.OutputDatasetOutputFacets)"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetBuilder","l":"OutputDatasetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.server","c":"OpenLineage.OutputDatasetFacet","l":"OutputDatasetFacet(URI, URI)","u":"%3Cinit%3E(java.net.URI,java.net.URI)"},{"p":"io.openlineage.server","c":"OpenLineage.OutputDatasetOutputFacets","l":"OutputDatasetOutputFacets()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetOutputFacetsBuilder","l":"OutputDatasetOutputFacetsBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetBuilder","l":"outputFacets(OpenLineage.OutputDatasetOutputFacets)","u":"outputFacets(io.openlineage.client.OpenLineage.OutputDatasetOutputFacets)"},{"p":"io.openlineage.client","c":"OpenLineage.JobEventBuilder","l":"outputs(List)","u":"outputs(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEventBuilder","l":"outputs(List)","u":"outputs(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetOutputFacetsBuilder","l":"outputStatistics(OpenLineage.OutputStatisticsOutputDatasetFacet)","u":"outputStatistics(io.openlineage.client.OpenLineage.OutputStatisticsOutputDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.OutputStatisticsOutputDatasetFacetBuilder","l":"OutputStatisticsOutputDatasetFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.utils.jdbc","c":"OverridingJdbcExtractor","l":"OverridingJdbcExtractor(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"io.openlineage.client.utils.jdbc","c":"OverridingJdbcExtractor","l":"OverridingJdbcExtractor(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange","l":"OVERWRITE"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacetBuilder","l":"owners(List)","u":"owners(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacetBuilder","l":"owners(List)","u":"owners(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacetsBuilder","l":"ownership(OpenLineage.OwnershipDatasetFacet)","u":"ownership(io.openlineage.client.OpenLineage.OwnershipDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacetsBuilder","l":"ownership(OpenLineage.OwnershipJobFacet)","u":"ownership(io.openlineage.client.OpenLineage.OwnershipJobFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacetBuilder","l":"OwnershipDatasetFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacetOwnersBuilder","l":"OwnershipDatasetFacetOwnersBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacetBuilder","l":"OwnershipJobFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacetOwnersBuilder","l":"OwnershipJobFacetOwnersBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacetsBuilder","l":"parent(OpenLineage.ParentRunFacet)","u":"parent(io.openlineage.client.OpenLineage.ParentRunFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetBuilder","l":"ParentRunFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetJobBuilder","l":"ParentRunFacetJobBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetRunBuilder","l":"ParentRunFacetRunBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.metrics","c":"MicrometerProvider","l":"parseMeterRegistryConfig(Map)","u":"parseMeterRegistryConfig(java.util.Map)"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacetBuilder","l":"path(String)","u":"path(java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolver","l":"PatternMatchingGroupNamespaceResolver(PatternMatchingGroupNamespaceResolverConfig)","u":"%3Cinit%3E(io.openlineage.client.dataset.namespace.resolver.PatternMatchingGroupNamespaceResolverConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverBuilder","l":"PatternMatchingGroupNamespaceResolverBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"PatternMatchingGroupNamespaceResolverConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"PatternMatchingGroupNamespaceResolverConfig(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolver","l":"PatternNamespaceResolver(String, PatternNamespaceResolverConfig)","u":"%3Cinit%3E(java.lang.String,io.openlineage.client.dataset.namespace.resolver.PatternNamespaceResolverConfig)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverBuilder","l":"PatternNamespaceResolverBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverConfig","l":"PatternNamespaceResolverConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverConfig","l":"PatternNamespaceResolverConfig(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"io.openlineage.client.utils.jdbc","c":"PostgresJdbcExtractor","l":"PostgresJdbcExtractor()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacetBuilder","l":"previousIdentifier(OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier)","u":"previousIdentifier(io.openlineage.client.OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier)"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacetsBuilder","l":"processing_engine(OpenLineage.ProcessingEngineRunFacet)","u":"processing_engine(io.openlineage.client.OpenLineage.ProcessingEngineRunFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.ProcessingEngineRunFacetBuilder","l":"ProcessingEngineRunFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacetBuilder","l":"processingType(String)","u":"processingType(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ErrorMessageRunFacetBuilder","l":"programmingLanguage(String)","u":"programmingLanguage(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder","l":"put(String, Double)","u":"put(java.lang.String,java.lang.Double)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetVersionDatasetFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasourceDatasetFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationDatasetFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.DocumentationJobFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.ErrorMessageRunFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.ExternalQueryRunFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.JobTypeJobFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.NominalTimeRunFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.OutputStatisticsOutputDatasetFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.ProcessingEngineRunFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeJobFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.SQLJobFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.StorageDatasetFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacetBuilder","l":"put(String, Object)","u":"put(java.lang.String,java.lang.Object)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsBuilder","l":"put(String, OpenLineage.ColumnLineageDatasetFacetFieldsAdditional)","u":"put(java.lang.String,io.openlineage.client.OpenLineage.ColumnLineageDatasetFacetFieldsAdditional)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder","l":"put(String, OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional)","u":"put(java.lang.String,io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacetsBuilder","l":"put(String, OpenLineage.DatasetFacet)","u":"put(java.lang.String,io.openlineage.client.OpenLineage.DatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.InputDatasetInputFacetsBuilder","l":"put(String, OpenLineage.InputDatasetFacet)","u":"put(java.lang.String,io.openlineage.client.OpenLineage.InputDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacetsBuilder","l":"put(String, OpenLineage.JobFacet)","u":"put(java.lang.String,io.openlineage.client.OpenLineage.JobFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.OutputDatasetOutputFacetsBuilder","l":"put(String, OpenLineage.OutputDatasetFacet)","u":"put(java.lang.String,io.openlineage.client.OpenLineage.OutputDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacetsBuilder","l":"put(String, OpenLineage.RunFacet)","u":"put(java.lang.String,io.openlineage.client.OpenLineage.RunFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder","l":"quantiles(OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles)","u":"quantiles(io.openlineage.client.OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles)"},{"p":"io.openlineage.client","c":"OpenLineage.SQLJobFacetBuilder","l":"query(String)","u":"query(java.lang.String)"},{"p":"io.openlineage.client.utils","c":"ReflectionUtils","l":"ReflectionUtils()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.metrics","c":"CompositeMeterRegistryFactory","l":"registry(Map)","u":"registry(java.util.Map)"},{"p":"io.openlineage.client.metrics","c":"MeterRegistryFactory","l":"registry(Map)","u":"registry(java.util.Map)"},{"p":"io.openlineage.client.metrics","c":"SimpleMeterRegistryFactory","l":"registry(Map)","u":"registry(java.util.Map)"},{"p":"io.openlineage.client.metrics","c":"StatsDMeterRegistryFactory","l":"registry(Map)","u":"registry(java.util.Map)"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange","l":"RENAME"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacetBuilder","l":"repoUrl(String)","u":"repoUrl(java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceCombinedResolver","l":"resolve(DatasetIdentifier)","u":"resolve(io.openlineage.client.utils.DatasetIdentifier)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceCombinedResolver","l":"resolve(String)","u":"resolve(java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolver","l":"resolve(String)","u":"resolve(java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolver","l":"resolve(String)","u":"resolve(java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolver","l":"resolve(String)","u":"resolve(java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolver","l":"resolve(String)","u":"resolve(java.lang.String)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerResolver","l":"resolveCircuitBreakerByConfig(CircuitBreakerConfig)","u":"resolveCircuitBreakerByConfig(io.openlineage.client.circuitBreaker.CircuitBreakerConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerResolver","l":"resolveCircuitBreakerConfigByType(String)","u":"resolveCircuitBreakerConfigByType(java.lang.String)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerResolver","l":"resolveCircuitBreakerTypeByConfigClass(Class)","u":"resolveCircuitBreakerTypeByConfigClass(java.lang.Class)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceCombinedResolver","l":"resolveHost(URI)","u":"resolveHost(java.net.URI)"},{"p":"io.openlineage.client.transports","c":"TransportResolver","l":"resolveTransportByConfig(TransportConfig)","u":"resolveTransportByConfig(io.openlineage.client.transports.TransportConfig)"},{"p":"io.openlineage.client.transports","c":"TransportResolver","l":"resolveTransportConfigByType(String)","u":"resolveTransportConfigByType(java.lang.String)"},{"p":"io.openlineage.client.transports","c":"TransportResolver","l":"resolveTransportTypeByConfigClass(Class)","u":"resolveTransportTypeByConfigClass(java.lang.Class)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetBuilder","l":"rowCount(Long)","u":"rowCount(java.lang.Long)"},{"p":"io.openlineage.client","c":"OpenLineage.OutputStatisticsOutputDatasetFacetBuilder","l":"rowCount(Long)","u":"rowCount(java.lang.Long)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreaker","l":"run(Callable)","u":"run(java.util.concurrent.Callable)"},{"p":"io.openlineage.client.circuitBreaker","c":"ExecutorCircuitBreaker","l":"run(Callable)","u":"run(java.util.concurrent.Callable)"},{"p":"io.openlineage.client.circuitBreaker","c":"NoOpCircuitBreaker","l":"run(Callable)","u":"run(java.util.concurrent.Callable)"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetBuilder","l":"run(OpenLineage.ParentRunFacetRun)","u":"run(io.openlineage.client.OpenLineage.ParentRunFacetRun)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEventBuilder","l":"run(OpenLineage.Run)","u":"run(io.openlineage.client.OpenLineage.Run)"},{"p":"io.openlineage.server","c":"OpenLineage.Run","l":"Run(UUID, OpenLineage.RunFacets)","u":"%3Cinit%3E(java.util.UUID,io.openlineage.server.OpenLineage.RunFacets)"},{"p":"io.openlineage.client","c":"OpenLineage.RunBuilder","l":"RunBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent","l":"RunEvent(ZonedDateTime, URI, URI, OpenLineage.RunEvent.EventType, OpenLineage.Run, OpenLineage.Job, List, List)","u":"%3Cinit%3E(java.time.ZonedDateTime,java.net.URI,java.net.URI,io.openlineage.server.OpenLineage.RunEvent.EventType,io.openlineage.server.OpenLineage.Run,io.openlineage.server.OpenLineage.Job,java.util.List,java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEventBuilder","l":"RunEventBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils","l":"runEventFromJson(String)","u":"runEventFromJson(java.lang.String)"},{"p":"io.openlineage.server","c":"OpenLineage.RunFacet","l":"RunFacet(URI, URI)","u":"%3Cinit%3E(java.net.URI,java.net.URI)"},{"p":"io.openlineage.server","c":"OpenLineage.RunFacets","l":"RunFacets()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.RunFacetsBuilder","l":"RunFacetsBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ParentRunFacetRunBuilder","l":"runId(UUID)","u":"runId(java.util.UUID)"},{"p":"io.openlineage.client","c":"OpenLineage.RunBuilder","l":"runId(UUID)","u":"runId(java.util.UUID)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent.EventType","l":"RUNNING"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent.EventType","l":"RUNNING"},{"p":"io.openlineage.client.utils","c":"RuntimeUtils","l":"RuntimeUtils()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacetsBuilder","l":"schema(OpenLineage.SchemaDatasetFacet)","u":"schema(io.openlineage.client.OpenLineage.SchemaDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetBuilder","l":"SchemaDatasetFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetFieldsBuilder","l":"SchemaDatasetFacetFieldsBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"ApiKeyTokenProvider","l":"setApiKey(String)","u":"setApiKey(java.lang.String)"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"setAuth(TokenProvider)","u":"setAuth(io.openlineage.client.transports.TokenProvider)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"setAuth(TokenProvider)","u":"setAuth(io.openlineage.client.transports.TokenProvider)"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcLocation","l":"setAuthority(Optional)","u":"setAuthority(java.util.Optional)"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"setCircuitBreaker(CircuitBreakerConfig)","u":"setCircuitBreaker(io.openlineage.client.circuitBreaker.CircuitBreakerConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"setCircuitCheckIntervalInMillis(Integer)","u":"setCircuitCheckIntervalInMillis(java.lang.Integer)"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"setCircuitCheckIntervalInMillis(Integer)","u":"setCircuitCheckIntervalInMillis(java.lang.Integer)"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerConfig","l":"setCircuitCheckIntervalInMillis(Integer)","u":"setCircuitCheckIntervalInMillis(java.lang.Integer)"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"setCompression(HttpConfig.Compression)","u":"setCompression(io.openlineage.client.transports.HttpConfig.Compression)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"setCompression(HttpConfig.Compression)","u":"setCompression(io.openlineage.client.transports.HttpConfig.Compression)"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcLocation","l":"setDatabase(Optional)","u":"setDatabase(java.util.Optional)"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"setDatasetConfig(DatasetConfig)","u":"setDatasetConfig(io.openlineage.client.dataset.DatasetConfig)"},{"p":"io.openlineage.client.transports","c":"FacetsConfig","l":"setDeprecatedDisabledFacets(String[])","u":"setDeprecatedDisabledFacets(java.lang.String[])"},{"p":"io.openlineage.client.transports","c":"FacetsConfig","l":"setDisabledFacets(Map)","u":"setDisabledFacets(java.util.Map)"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"setEndpoint(String)","u":"setEndpoint(java.lang.String)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"setEndpoint(String)","u":"setEndpoint(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"setFacetsConfig(FacetsConfig)","u":"setFacetsConfig(io.openlineage.client.transports.FacetsConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"setGcCpuThreshold(Integer)","u":"setGcCpuThreshold(java.lang.Integer)"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"setHeaders(Map)","u":"setHeaders(java.util.Map)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"setHeaders(Map)","u":"setHeaders(java.util.Map)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverConfig","l":"setHosts(List)","u":"setHosts(java.util.List)"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcLocation","l":"setInstance(Optional)","u":"setInstance(java.util.Optional)"},{"p":"io.openlineage.client.transports","c":"FileConfig","l":"setLocation(String)","u":"setLocation(java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"setMatchingGroup(String)","u":"setMatchingGroup(java.lang.String)"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"setMemoryThreshold(Integer)","u":"setMemoryThreshold(java.lang.Integer)"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"setMemoryThreshold(Integer)","u":"setMemoryThreshold(java.lang.Integer)"},{"p":"io.openlineage.client.transports","c":"KafkaConfig","l":"setMessageKey(String)","u":"setMessageKey(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"setMetricsConfig(Map)","u":"setMetricsConfig(java.util.Map)"},{"p":"io.openlineage.client.dataset","c":"DatasetConfig","l":"setNamespaceResolvers(Map)","u":"setNamespaceResolvers(java.util.Map)"},{"p":"io.openlineage.client.transports","c":"KafkaConfig","l":"setProperties(Properties)","u":"setProperties(java.util.Properties)"},{"p":"io.openlineage.client.transports","c":"KinesisConfig","l":"setProperties(Properties)","u":"setProperties(java.util.Properties)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"setRegex(String)","u":"setRegex(java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverConfig","l":"setRegex(String)","u":"setRegex(java.lang.String)"},{"p":"io.openlineage.client.transports","c":"KinesisConfig","l":"setRegion(String)","u":"setRegion(java.lang.String)"},{"p":"io.openlineage.client.transports","c":"KinesisConfig","l":"setRoleArn(String)","u":"setRoleArn(java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverConfig","l":"setSchema(String)","u":"setSchema(java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"setSchema(String)","u":"setSchema(java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverConfig","l":"setSchema(String)","u":"setSchema(java.lang.String)"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcLocation","l":"setScheme(String)","u":"setScheme(java.lang.String)"},{"p":"io.openlineage.client.transports","c":"KinesisConfig","l":"setStreamName(String)","u":"setStreamName(java.lang.String)"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"setTimeout(Double)","u":"setTimeout(java.lang.Double)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"setTimeout(Double)","u":"setTimeout(java.lang.Double)"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"setTimeoutInMillis(Integer)","u":"setTimeoutInMillis(java.lang.Integer)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"setTimeoutInMillis(Integer)","u":"setTimeoutInMillis(java.lang.Integer)"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"setTimeoutInSeconds(Integer)","u":"setTimeoutInSeconds(java.lang.Integer)"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"setTimeoutInSeconds(Integer)","u":"setTimeoutInSeconds(java.lang.Integer)"},{"p":"io.openlineage.client.transports","c":"KafkaConfig","l":"setTopicName(String)","u":"setTopicName(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"setTransportConfig(TransportConfig)","u":"setTransportConfig(io.openlineage.client.transports.TransportConfig)"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"setUrl(URI)","u":"setUrl(java.net.URI)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"setUrl(URI)","u":"setUrl(java.net.URI)"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"setUrlParams(Map)","u":"setUrlParams(java.util.Map)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"setUrlParams(Map)","u":"setUrlParams(java.util.Map)"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerConfig","l":"setValuesReturned(String)","u":"setValuesReturned(java.lang.String)"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreaker","l":"SimpleMemoryCircuitBreaker(SimpleMemoryCircuitBreakerConfig)","u":"%3Cinit%3E(io.openlineage.client.circuitBreaker.SimpleMemoryCircuitBreakerConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerBuilder","l":"SimpleMemoryCircuitBreakerBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"SimpleMemoryCircuitBreakerConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"SimpleMemoryCircuitBreakerConfig(int)","u":"%3Cinit%3E(int)"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"SimpleMemoryCircuitBreakerConfig(int, int)","u":"%3Cinit%3E(int,int)"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"SimpleMemoryCircuitBreakerConfig(Integer, Integer, Integer)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"io.openlineage.client.metrics","c":"SimpleMeterRegistryFactory","l":"SimpleMeterRegistryFactory()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.OutputStatisticsOutputDatasetFacetBuilder","l":"size(Long)","u":"size(java.lang.Long)"},{"p":"io.openlineage.client","c":"OpenLineage.ExternalQueryRunFacetBuilder","l":"source(String)","u":"source(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacetsBuilder","l":"sourceCode(OpenLineage.SourceCodeJobFacet)","u":"sourceCode(io.openlineage.client.OpenLineage.SourceCodeJobFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeJobFacetBuilder","l":"sourceCode(String)","u":"sourceCode(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeJobFacetBuilder","l":"SourceCodeJobFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacetsBuilder","l":"sourceCodeLocation(OpenLineage.SourceCodeLocationJobFacet)","u":"sourceCodeLocation(io.openlineage.client.OpenLineage.SourceCodeLocationJobFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacetBuilder","l":"SourceCodeLocationJobFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.GcpCommonJobFacetOriginBuilder","l":"sourceType(String)","u":"sourceType(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.JobFacetsBuilder","l":"sql(OpenLineage.SQLJobFacet)","u":"sql(io.openlineage.client.OpenLineage.SQLJobFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.SQLJobFacetBuilder","l":"SQLJobFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.utils.jdbc","c":"SqlServerJdbcExtractor","l":"SqlServerJdbcExtractor()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.ErrorMessageRunFacetBuilder","l":"stackTrace(String)","u":"stackTrace(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetErrorsBuilder","l":"stackTrace(String)","u":"stackTrace(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent.EventType","l":"START"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent.EventType","l":"START"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreaker","l":"StaticCircuitBreaker(StaticCircuitBreakerConfig)","u":"%3Cinit%3E(io.openlineage.client.circuitBreaker.StaticCircuitBreakerConfig)"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerBuilder","l":"StaticCircuitBreakerBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerConfig","l":"StaticCircuitBreakerConfig()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerConfig","l":"StaticCircuitBreakerConfig(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerConfig","l":"StaticCircuitBreakerConfig(String, Integer)","u":"%3Cinit%3E(java.lang.String,java.lang.Integer)"},{"p":"io.openlineage.server","c":"OpenLineage.StaticDataset","l":"StaticDataset(String, String, OpenLineage.DatasetFacets)","u":"%3Cinit%3E(java.lang.String,java.lang.String,io.openlineage.server.OpenLineage.DatasetFacets)"},{"p":"io.openlineage.client","c":"OpenLineage.StaticDatasetBuilder","l":"StaticDatasetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.metrics","c":"StatsDMeterRegistryFactory","l":"StatsDMeterRegistryFactory()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacetsBuilder","l":"storage(OpenLineage.StorageDatasetFacet)","u":"storage(io.openlineage.client.OpenLineage.StorageDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.StorageDatasetFacetBuilder","l":"StorageDatasetFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.StorageDatasetFacetBuilder","l":"storageLayer(String)","u":"storageLayer(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder","l":"subtype(String)","u":"subtype(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder","l":"success(Boolean)","u":"success(java.lang.Boolean)"},{"p":"io.openlineage.client","c":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder","l":"sum(Double)","u":"sum(java.lang.Double)"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier.Symlink","l":"Symlink(String, String, DatasetIdentifier.SymlinkType)","u":"%3Cinit%3E(java.lang.String,java.lang.String,io.openlineage.client.utils.DatasetIdentifier.SymlinkType)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacetsBuilder","l":"symlinks(OpenLineage.SymlinksDatasetFacet)","u":"symlinks(io.openlineage.client.OpenLineage.SymlinksDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacetBuilder","l":"SymlinksDatasetFacetBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacetIdentifiersBuilder","l":"SymlinksDatasetFacetIdentifiersBuilder()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier.SymlinkType","l":"TABLE"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacetBuilder","l":"tag(String)","u":"tag(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetErrorsBuilder","l":"task(String)","u":"task(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetErrorsBuilder","l":"taskNumber(Long)","u":"taskNumber(java.lang.Long)"},{"p":"io.openlineage.client.utils.jdbc","c":"TeradataJdbcExtractor","l":"TeradataJdbcExtractor()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.circuitBreaker","c":"ExecutorCircuitBreaker","l":"timeout"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"timeout(Double)","u":"timeout(java.lang.Double)"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils","l":"toJson(Object)","u":"toJson(java.lang.Object)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"tokenProvider(TokenProvider)","u":"tokenProvider(io.openlineage.client.transports.TokenProvider)"},{"p":"io.openlineage.client.transports","c":"TokenProviderTypeIdResolver","l":"TokenProviderTypeIdResolver()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.utils.filesystem","c":"FilesystemDatasetUtils","l":"toLocation(DatasetIdentifier)","u":"toLocation(io.openlineage.client.utils.DatasetIdentifier)"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcLocation","l":"toName(List)","u":"toName(java.util.List)"},{"p":"io.openlineage.client.utils.jdbc","c":"JdbcLocation","l":"toNamespace()"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerState","l":"toString()"},{"p":"io.openlineage.client.circuitBreaker","c":"JavaRuntimeCircuitBreakerConfig","l":"toString()"},{"p":"io.openlineage.client.circuitBreaker","c":"SimpleMemoryCircuitBreakerConfig","l":"toString()"},{"p":"io.openlineage.client.circuitBreaker","c":"StaticCircuitBreakerConfig","l":"toString()"},{"p":"io.openlineage.client.dataset","c":"DatasetConfig","l":"toString()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"HostListNamespaceResolverConfig","l":"toString()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternMatchingGroupNamespaceResolverConfig","l":"toString()"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"PatternNamespaceResolverConfig","l":"toString()"},{"p":"io.openlineage.client.transports","c":"ApiKeyTokenProvider","l":"toString()"},{"p":"io.openlineage.client.transports","c":"FacetsConfig","l":"toString()"},{"p":"io.openlineage.client.transports","c":"FileConfig","l":"toString()"},{"p":"io.openlineage.client.transports","c":"HttpConfig","l":"toString()"},{"p":"io.openlineage.client.transports","c":"KafkaConfig","l":"toString()"},{"p":"io.openlineage.client.transports","c":"KinesisConfig","l":"toString()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier.Symlink","l":"toString()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier","l":"toString()"},{"p":"io.openlineage.client.utils","c":"RuntimeUtils","l":"totalMemory()"},{"p":"io.openlineage.client","c":"OpenLineage.ExtractionErrorRunFacetBuilder","l":"totalTasks(Long)","u":"totalTasks(java.lang.Long)"},{"p":"io.openlineage.client","c":"OpenLineageClientUtils","l":"toUri(String)","u":"toUri(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder","l":"transformationDescription(String)","u":"transformationDescription(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder","l":"transformations(List)","u":"transformations(java.util.List)"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder","l":"transformationType(String)","u":"transformationType(java.lang.String)"},{"p":"io.openlineage.client.transports","c":"Transport","l":"Transport()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineageClient.Builder","l":"transport(Transport)","u":"transport(io.openlineage.client.transports.Transport)"},{"p":"io.openlineage.client","c":"OpenLineageConfig","l":"transportConfig"},{"p":"io.openlineage.client.transports","c":"TransportConfigTypeIdResolver","l":"TransportConfigTypeIdResolver()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client.transports","c":"TransportFactory","l":"TransportFactory(TransportConfig)","u":"%3Cinit%3E(io.openlineage.client.transports.TransportConfig)"},{"p":"io.openlineage.client.transports","c":"TransportResolver","l":"TransportResolver()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange","l":"TRUNCATE"},{"p":"io.openlineage.client.utils","c":"ReflectionUtils","l":"tryExecuteMethod(Object, String, Object...)","u":"tryExecuteMethod(java.lang.Object,java.lang.String,java.lang.Object...)"},{"p":"io.openlineage.client.utils","c":"ReflectionUtils","l":"tryExecuteStaticMethodForClassName(String, String, Object...)","u":"tryExecuteStaticMethodForClassName(java.lang.String,java.lang.String,java.lang.Object...)"},{"p":"io.openlineage.client.metrics","c":"CompositeMeterRegistryFactory","l":"type()"},{"p":"io.openlineage.client.metrics","c":"MeterRegistryFactory","l":"type()"},{"p":"io.openlineage.client.metrics","c":"SimpleMeterRegistryFactory","l":"type()"},{"p":"io.openlineage.client.metrics","c":"StatsDMeterRegistryFactory","l":"type()"},{"p":"io.openlineage.client","c":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder","l":"type(String)","u":"type(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipDatasetFacetOwnersBuilder","l":"type(String)","u":"type(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.OwnershipJobFacetOwnersBuilder","l":"type(String)","u":"type(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.SchemaDatasetFacetFieldsBuilder","l":"type(String)","u":"type(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacetBuilder","l":"type(String)","u":"type(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.SymlinksDatasetFacetIdentifiersBuilder","l":"type(String)","u":"type(java.lang.String)"},{"p":"io.openlineage.client.circuitBreaker","c":"CircuitBreakerConfigTypeIdResolver","l":"typeFromId(DatabindContext, String)","u":"typeFromId(com.fasterxml.jackson.databind.DatabindContext,java.lang.String)"},{"p":"io.openlineage.client.dataset.namespace.resolver","c":"DatasetNamespaceResolverConfigTypeIdResolver","l":"typeFromId(DatabindContext, String)","u":"typeFromId(com.fasterxml.jackson.databind.DatabindContext,java.lang.String)"},{"p":"io.openlineage.client.transports","c":"TokenProviderTypeIdResolver","l":"typeFromId(DatabindContext, String)","u":"typeFromId(com.fasterxml.jackson.databind.DatabindContext,java.lang.String)"},{"p":"io.openlineage.client.transports","c":"TransportConfigTypeIdResolver","l":"typeFromId(DatabindContext, String)","u":"typeFromId(com.fasterxml.jackson.databind.DatabindContext,java.lang.String)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"uri(String)","u":"uri(java.lang.String)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"uri(String, Map)","u":"uri(java.lang.String,java.util.Map)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"uri(URI)","u":"uri(java.net.URI)"},{"p":"io.openlineage.client","c":"OpenLineage.DatasourceDatasetFacetBuilder","l":"uri(URI)","u":"uri(java.net.URI)"},{"p":"io.openlineage.client.transports","c":"HttpTransport.Builder","l":"uri(URI, Map)","u":"uri(java.net.URI,java.util.Map)"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacetBuilder","l":"url(URI)","u":"url(java.net.URI)"},{"p":"io.openlineage.client.utils","c":"UUIDUtils","l":"UUIDUtils()","u":"%3Cinit%3E()"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent.EventType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"io.openlineage.client.transports","c":"HttpConfig.Compression","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier.SymlinkType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent.EventType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange","l":"values()"},{"p":"io.openlineage.client","c":"OpenLineage.RunEvent.EventType","l":"values()"},{"p":"io.openlineage.client.transports","c":"HttpConfig.Compression","l":"values()"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier.SymlinkType","l":"values()"},{"p":"io.openlineage.server","c":"OpenLineage.RunEvent.EventType","l":"values()"},{"p":"io.openlineage.client","c":"OpenLineage.DatasetFacetsBuilder","l":"version(OpenLineage.DatasetVersionDatasetFacet)","u":"version(io.openlineage.client.OpenLineage.DatasetVersionDatasetFacet)"},{"p":"io.openlineage.client","c":"OpenLineage.ProcessingEngineRunFacetBuilder","l":"version(String)","u":"version(java.lang.String)"},{"p":"io.openlineage.client","c":"OpenLineage.SourceCodeLocationJobFacetBuilder","l":"version(String)","u":"version(java.lang.String)"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier","l":"withSymlink(DatasetIdentifier.Symlink)","u":"withSymlink(io.openlineage.client.utils.DatasetIdentifier.Symlink)"},{"p":"io.openlineage.client.utils","c":"DatasetIdentifier","l":"withSymlink(String, String, DatasetIdentifier.SymlinkType)","u":"withSymlink(java.lang.String,java.lang.String,io.openlineage.client.utils.DatasetIdentifier.SymlinkType)"}];updateSearchResults();
\ No newline at end of file
diff --git a/website/static/apidocs/javadoc/module-search-index.js b/website/static/apidocs/javadoc/module-search-index.js
deleted file mode 100644
index 0d59754fc4..0000000000
--- a/website/static/apidocs/javadoc/module-search-index.js
+++ /dev/null
@@ -1 +0,0 @@
-moduleSearchIndex = [];updateSearchResults();
\ No newline at end of file
diff --git a/website/static/apidocs/javadoc/overview-summary.html b/website/static/apidocs/javadoc/overview-summary.html
deleted file mode 100644
index d7a20dcc28..0000000000
--- a/website/static/apidocs/javadoc/overview-summary.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-openlineage-java 1.20.0-SNAPSHOT API
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-index.html
-
-
-
diff --git a/website/static/apidocs/javadoc/overview-tree.html b/website/static/apidocs/javadoc/overview-tree.html
deleted file mode 100644
index 798cc7ad3f..0000000000
--- a/website/static/apidocs/javadoc/overview-tree.html
+++ /dev/null
@@ -1,378 +0,0 @@
-
-
-
-
-Class Hierarchy (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-Enum Class Hierarchy
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/package-search-index.js b/website/static/apidocs/javadoc/package-search-index.js
deleted file mode 100644
index bd652331b8..0000000000
--- a/website/static/apidocs/javadoc/package-search-index.js
+++ /dev/null
@@ -1 +0,0 @@
-packageSearchIndex = [{"l":"All Packages","u":"allpackages-index.html"},{"l":"io.openlineage.client"},{"l":"io.openlineage.client.circuitBreaker"},{"l":"io.openlineage.client.dataset"},{"l":"io.openlineage.client.dataset.namespace.resolver"},{"l":"io.openlineage.client.metrics"},{"l":"io.openlineage.client.transports"},{"l":"io.openlineage.client.utils"},{"l":"io.openlineage.client.utils.filesystem"},{"l":"io.openlineage.client.utils.jdbc"},{"l":"io.openlineage.server"}];updateSearchResults();
\ No newline at end of file
diff --git a/website/static/apidocs/javadoc/resources/glass.png b/website/static/apidocs/javadoc/resources/glass.png
deleted file mode 100644
index a7f591f467..0000000000
Binary files a/website/static/apidocs/javadoc/resources/glass.png and /dev/null differ
diff --git a/website/static/apidocs/javadoc/resources/x.png b/website/static/apidocs/javadoc/resources/x.png
deleted file mode 100644
index 30548a756e..0000000000
Binary files a/website/static/apidocs/javadoc/resources/x.png and /dev/null differ
diff --git a/website/static/apidocs/javadoc/script-dir/jquery-3.6.1.min.js b/website/static/apidocs/javadoc/script-dir/jquery-3.6.1.min.js
deleted file mode 100644
index 2c69bc908b..0000000000
--- a/website/static/apidocs/javadoc/script-dir/jquery-3.6.1.min.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/*! jQuery v3.6.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */
-!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&v(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ye(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],y=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML=" ",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||y.push(".#.+[+~]"),e.querySelectorAll("\\\f"),y.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML=" ";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),y=y.length&&new RegExp(y.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),v=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&v(p,e)?-1:t==C||t.ownerDocument==p&&v(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!y||!y.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),v.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",v.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML=" ",v.option=!!ce.lastChild;var ge={thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var me=/<|?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),v.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return B(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=_e(v.pixelPosition,function(e,t){if(t)return t=Be(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return B(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthC(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==x.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=x("
",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length
").append(x("").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1
").text(e))},100))}});x.ui.autocomplete});
\ No newline at end of file
diff --git a/website/static/apidocs/javadoc/script.js b/website/static/apidocs/javadoc/script.js
deleted file mode 100644
index 864989cf45..0000000000
--- a/website/static/apidocs/javadoc/script.js
+++ /dev/null
@@ -1,132 +0,0 @@
-/*
- * Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation. Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-var moduleSearchIndex;
-var packageSearchIndex;
-var typeSearchIndex;
-var memberSearchIndex;
-var tagSearchIndex;
-function loadScripts(doc, tag) {
- createElem(doc, tag, 'search.js');
-
- createElem(doc, tag, 'module-search-index.js');
- createElem(doc, tag, 'package-search-index.js');
- createElem(doc, tag, 'type-search-index.js');
- createElem(doc, tag, 'member-search-index.js');
- createElem(doc, tag, 'tag-search-index.js');
-}
-
-function createElem(doc, tag, path) {
- var script = doc.createElement(tag);
- var scriptElement = doc.getElementsByTagName(tag)[0];
- script.src = pathtoroot + path;
- scriptElement.parentNode.insertBefore(script, scriptElement);
-}
-
-function show(tableId, selected, columns) {
- if (tableId !== selected) {
- document.querySelectorAll('div.' + tableId + ':not(.' + selected + ')')
- .forEach(function(elem) {
- elem.style.display = 'none';
- });
- }
- document.querySelectorAll('div.' + selected)
- .forEach(function(elem, index) {
- elem.style.display = '';
- var isEvenRow = index % (columns * 2) < columns;
- elem.classList.remove(isEvenRow ? oddRowColor : evenRowColor);
- elem.classList.add(isEvenRow ? evenRowColor : oddRowColor);
- });
- updateTabs(tableId, selected);
-}
-
-function updateTabs(tableId, selected) {
- document.querySelector('div#' + tableId +' .summary-table')
- .setAttribute('aria-labelledby', selected);
- document.querySelectorAll('button[id^="' + tableId + '"]')
- .forEach(function(tab, index) {
- if (selected === tab.id || (tableId === selected && index === 0)) {
- tab.className = activeTableTab;
- tab.setAttribute('aria-selected', true);
- tab.setAttribute('tabindex',0);
- } else {
- tab.className = tableTab;
- tab.setAttribute('aria-selected', false);
- tab.setAttribute('tabindex',-1);
- }
- });
-}
-
-function switchTab(e) {
- var selected = document.querySelector('[aria-selected=true]');
- if (selected) {
- if ((e.keyCode === 37 || e.keyCode === 38) && selected.previousSibling) {
- // left or up arrow key pressed: move focus to previous tab
- selected.previousSibling.click();
- selected.previousSibling.focus();
- e.preventDefault();
- } else if ((e.keyCode === 39 || e.keyCode === 40) && selected.nextSibling) {
- // right or down arrow key pressed: move focus to next tab
- selected.nextSibling.click();
- selected.nextSibling.focus();
- e.preventDefault();
- }
- }
-}
-
-var updateSearchResults = function() {};
-
-function indexFilesLoaded() {
- return moduleSearchIndex
- && packageSearchIndex
- && typeSearchIndex
- && memberSearchIndex
- && tagSearchIndex;
-}
-
-// Workaround for scroll position not being included in browser history (8249133)
-document.addEventListener("DOMContentLoaded", function(e) {
- var contentDiv = document.querySelector("div.flex-content");
- window.addEventListener("popstate", function(e) {
- if (e.state !== null) {
- contentDiv.scrollTop = e.state;
- }
- });
- window.addEventListener("hashchange", function(e) {
- history.replaceState(contentDiv.scrollTop, document.title);
- });
- contentDiv.addEventListener("scroll", function(e) {
- var timeoutID;
- if (!timeoutID) {
- timeoutID = setTimeout(function() {
- history.replaceState(contentDiv.scrollTop, document.title);
- timeoutID = null;
- }, 100);
- }
- });
- if (!location.hash) {
- history.replaceState(contentDiv.scrollTop, document.title);
- }
-});
diff --git a/website/static/apidocs/javadoc/search.js b/website/static/apidocs/javadoc/search.js
deleted file mode 100644
index db3b2f4a64..0000000000
--- a/website/static/apidocs/javadoc/search.js
+++ /dev/null
@@ -1,354 +0,0 @@
-/*
- * Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation. Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-var noResult = {l: "No results found"};
-var loading = {l: "Loading search index..."};
-var catModules = "Modules";
-var catPackages = "Packages";
-var catTypes = "Classes and Interfaces";
-var catMembers = "Members";
-var catSearchTags = "Search Tags";
-var highlight = "$& ";
-var searchPattern = "";
-var fallbackPattern = "";
-var RANKING_THRESHOLD = 2;
-var NO_MATCH = 0xffff;
-var MIN_RESULTS = 3;
-var MAX_RESULTS = 500;
-var UNNAMED = "";
-function escapeHtml(str) {
- return str.replace(//g, ">");
-}
-function getHighlightedText(item, matcher, fallbackMatcher) {
- var escapedItem = escapeHtml(item);
- var highlighted = escapedItem.replace(matcher, highlight);
- if (highlighted === escapedItem) {
- highlighted = escapedItem.replace(fallbackMatcher, highlight)
- }
- return highlighted;
-}
-function getURLPrefix(ui) {
- var urlPrefix="";
- var slash = "/";
- if (ui.item.category === catModules) {
- return ui.item.l + slash;
- } else if (ui.item.category === catPackages && ui.item.m) {
- return ui.item.m + slash;
- } else if (ui.item.category === catTypes || ui.item.category === catMembers) {
- if (ui.item.m) {
- urlPrefix = ui.item.m + slash;
- } else {
- $.each(packageSearchIndex, function(index, item) {
- if (item.m && ui.item.p === item.l) {
- urlPrefix = item.m + slash;
- }
- });
- }
- }
- return urlPrefix;
-}
-function createSearchPattern(term) {
- var pattern = "";
- var isWordToken = false;
- term.replace(/,\s*/g, ", ").trim().split(/\s+/).forEach(function(w, index) {
- if (index > 0) {
- // whitespace between identifiers is significant
- pattern += (isWordToken && /^\w/.test(w)) ? "\\s+" : "\\s*";
- }
- var tokens = w.split(/(?=[A-Z,.()<>[\/])/);
- for (var i = 0; i < tokens.length; i++) {
- var s = tokens[i];
- if (s === "") {
- continue;
- }
- pattern += $.ui.autocomplete.escapeRegex(s);
- isWordToken = /\w$/.test(s);
- if (isWordToken) {
- pattern += "([a-z0-9_$<>\\[\\]]*?)";
- }
- }
- });
- return pattern;
-}
-function createMatcher(pattern, flags) {
- var isCamelCase = /[A-Z]/.test(pattern);
- return new RegExp(pattern, flags + (isCamelCase ? "" : "i"));
-}
-var watermark = 'Search';
-$(function() {
- var search = $("#search-input");
- var reset = $("#reset-button");
- search.val('');
- search.prop("disabled", false);
- reset.prop("disabled", false);
- search.val(watermark).addClass('watermark');
- search.blur(function() {
- if ($(this).val().length === 0) {
- $(this).val(watermark).addClass('watermark');
- }
- });
- search.on('click keydown paste', function() {
- if ($(this).val() === watermark) {
- $(this).val('').removeClass('watermark');
- }
- });
- reset.click(function() {
- search.val('').focus();
- });
- search.focus()[0].setSelectionRange(0, 0);
-});
-$.widget("custom.catcomplete", $.ui.autocomplete, {
- _create: function() {
- this._super();
- this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)");
- },
- _renderMenu: function(ul, items) {
- var rMenu = this;
- var currentCategory = "";
- rMenu.menu.bindings = $();
- $.each(items, function(index, item) {
- var li;
- if (item.category && item.category !== currentCategory) {
- ul.append("" + item.category + " ");
- currentCategory = item.category;
- }
- li = rMenu._renderItemData(ul, item);
- if (item.category) {
- li.attr("aria-label", item.category + " : " + item.l);
- li.attr("class", "result-item");
- } else {
- li.attr("aria-label", item.l);
- li.attr("class", "result-item");
- }
- });
- },
- _renderItem: function(ul, item) {
- var label = "";
- var matcher = createMatcher(escapeHtml(searchPattern), "g");
- var fallbackMatcher = new RegExp(fallbackPattern, "gi")
- if (item.category === catModules) {
- label = getHighlightedText(item.l, matcher, fallbackMatcher);
- } else if (item.category === catPackages) {
- label = getHighlightedText(item.l, matcher, fallbackMatcher);
- } else if (item.category === catTypes) {
- label = (item.p && item.p !== UNNAMED)
- ? getHighlightedText(item.p + "." + item.l, matcher, fallbackMatcher)
- : getHighlightedText(item.l, matcher, fallbackMatcher);
- } else if (item.category === catMembers) {
- label = (item.p && item.p !== UNNAMED)
- ? getHighlightedText(item.p + "." + item.c + "." + item.l, matcher, fallbackMatcher)
- : getHighlightedText(item.c + "." + item.l, matcher, fallbackMatcher);
- } else if (item.category === catSearchTags) {
- label = getHighlightedText(item.l, matcher, fallbackMatcher);
- } else {
- label = item.l;
- }
- var li = $(" ").appendTo(ul);
- var div = $("
").appendTo(li);
- if (item.category === catSearchTags && item.h) {
- if (item.d) {
- div.html(label + " (" + item.h + ") "
- + item.d + " ");
- } else {
- div.html(label + " (" + item.h + ") ");
- }
- } else {
- if (item.m) {
- div.html(item.m + "/" + label);
- } else {
- div.html(label);
- }
- }
- return li;
- }
-});
-function rankMatch(match, category) {
- if (!match) {
- return NO_MATCH;
- }
- var index = match.index;
- var input = match.input;
- var leftBoundaryMatch = 2;
- var periferalMatch = 0;
- // make sure match is anchored on a left word boundary
- if (index === 0 || /\W/.test(input[index - 1]) || "_" === input[index]) {
- leftBoundaryMatch = 0;
- } else if ("_" === input[index - 1] || (input[index] === input[index].toUpperCase() && !/^[A-Z0-9_$]+$/.test(input))) {
- leftBoundaryMatch = 1;
- }
- var matchEnd = index + match[0].length;
- var leftParen = input.indexOf("(");
- var endOfName = leftParen > -1 ? leftParen : input.length;
- // exclude peripheral matches
- if (category !== catModules && category !== catSearchTags) {
- var delim = category === catPackages ? "/" : ".";
- if (leftParen > -1 && leftParen < index) {
- periferalMatch += 2;
- } else if (input.lastIndexOf(delim, endOfName) >= matchEnd) {
- periferalMatch += 2;
- }
- }
- var delta = match[0].length === endOfName ? 0 : 1; // rank full match higher than partial match
- for (var i = 1; i < match.length; i++) {
- // lower ranking if parts of the name are missing
- if (match[i])
- delta += match[i].length;
- }
- if (category === catTypes) {
- // lower ranking if a type name contains unmatched camel-case parts
- if (/[A-Z]/.test(input.substring(matchEnd)))
- delta += 5;
- if (/[A-Z]/.test(input.substring(0, index)))
- delta += 5;
- }
- return leftBoundaryMatch + periferalMatch + (delta / 200);
-
-}
-function doSearch(request, response) {
- var result = [];
- searchPattern = createSearchPattern(request.term);
- fallbackPattern = createSearchPattern(request.term.toLowerCase());
- if (searchPattern === "") {
- return this.close();
- }
- var camelCaseMatcher = createMatcher(searchPattern, "");
- var fallbackMatcher = new RegExp(fallbackPattern, "i");
-
- function searchIndexWithMatcher(indexArray, matcher, category, nameFunc) {
- if (indexArray) {
- var newResults = [];
- $.each(indexArray, function (i, item) {
- item.category = category;
- var ranking = rankMatch(matcher.exec(nameFunc(item)), category);
- if (ranking < RANKING_THRESHOLD) {
- newResults.push({ranking: ranking, item: item});
- }
- return newResults.length <= MAX_RESULTS;
- });
- return newResults.sort(function(e1, e2) {
- return e1.ranking - e2.ranking;
- }).map(function(e) {
- return e.item;
- });
- }
- return [];
- }
- function searchIndex(indexArray, category, nameFunc) {
- var primaryResults = searchIndexWithMatcher(indexArray, camelCaseMatcher, category, nameFunc);
- result = result.concat(primaryResults);
- if (primaryResults.length <= MIN_RESULTS && !camelCaseMatcher.ignoreCase) {
- var secondaryResults = searchIndexWithMatcher(indexArray, fallbackMatcher, category, nameFunc);
- result = result.concat(secondaryResults.filter(function (item) {
- return primaryResults.indexOf(item) === -1;
- }));
- }
- }
-
- searchIndex(moduleSearchIndex, catModules, function(item) { return item.l; });
- searchIndex(packageSearchIndex, catPackages, function(item) {
- return (item.m && request.term.indexOf("/") > -1)
- ? (item.m + "/" + item.l) : item.l;
- });
- searchIndex(typeSearchIndex, catTypes, function(item) {
- return request.term.indexOf(".") > -1 ? item.p + "." + item.l : item.l;
- });
- searchIndex(memberSearchIndex, catMembers, function(item) {
- return request.term.indexOf(".") > -1
- ? item.p + "." + item.c + "." + item.l : item.l;
- });
- searchIndex(tagSearchIndex, catSearchTags, function(item) { return item.l; });
-
- if (!indexFilesLoaded()) {
- updateSearchResults = function() {
- doSearch(request, response);
- }
- result.unshift(loading);
- } else {
- updateSearchResults = function() {};
- }
- response(result);
-}
-$(function() {
- $("#search-input").catcomplete({
- minLength: 1,
- delay: 300,
- source: doSearch,
- response: function(event, ui) {
- if (!ui.content.length) {
- ui.content.push(noResult);
- } else {
- $("#search-input").empty();
- }
- },
- autoFocus: true,
- focus: function(event, ui) {
- return false;
- },
- position: {
- collision: "flip"
- },
- select: function(event, ui) {
- if (ui.item.category) {
- var url = getURLPrefix(ui);
- if (ui.item.category === catModules) {
- url += "module-summary.html";
- } else if (ui.item.category === catPackages) {
- if (ui.item.u) {
- url = ui.item.u;
- } else {
- url += ui.item.l.replace(/\./g, '/') + "/package-summary.html";
- }
- } else if (ui.item.category === catTypes) {
- if (ui.item.u) {
- url = ui.item.u;
- } else if (ui.item.p === UNNAMED) {
- url += ui.item.l + ".html";
- } else {
- url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html";
- }
- } else if (ui.item.category === catMembers) {
- if (ui.item.p === UNNAMED) {
- url += ui.item.c + ".html" + "#";
- } else {
- url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#";
- }
- if (ui.item.u) {
- url += ui.item.u;
- } else {
- url += ui.item.l;
- }
- } else if (ui.item.category === catSearchTags) {
- url += ui.item.u;
- }
- if (top !== window) {
- parent.classFrame.location = pathtoroot + url;
- } else {
- window.location.href = pathtoroot + url;
- }
- $("#search-input").focus();
- }
- }
- });
-});
diff --git a/website/static/apidocs/javadoc/serialized-form.html b/website/static/apidocs/javadoc/serialized-form.html
deleted file mode 100644
index 78c48151c2..0000000000
--- a/website/static/apidocs/javadoc/serialized-form.html
+++ /dev/null
@@ -1,110 +0,0 @@
-
-
-
-
-Serialized Form (openlineage-java 1.20.0-SNAPSHOT API)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-serialVersionUID:
-1L
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-serialVersionUID:
-1L
-
-
-
-
-Serialized Fields
-
-
-body
-String body
-
-
-statusCode
-int statusCode
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/static/apidocs/javadoc/stylesheet.css b/website/static/apidocs/javadoc/stylesheet.css
deleted file mode 100644
index 4a576bd24d..0000000000
--- a/website/static/apidocs/javadoc/stylesheet.css
+++ /dev/null
@@ -1,869 +0,0 @@
-/*
- * Javadoc style sheet
- */
-
-@import url('resources/fonts/dejavu.css');
-
-/*
- * Styles for individual HTML elements.
- *
- * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular
- * HTML element throughout the page.
- */
-
-body {
- background-color:#ffffff;
- color:#353833;
- font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
- font-size:14px;
- margin:0;
- padding:0;
- height:100%;
- width:100%;
-}
-iframe {
- margin:0;
- padding:0;
- height:100%;
- width:100%;
- overflow-y:scroll;
- border:none;
-}
-a:link, a:visited {
- text-decoration:none;
- color:#4A6782;
-}
-a[href]:hover, a[href]:focus {
- text-decoration:none;
- color:#bb7a2a;
-}
-a[name] {
- color:#353833;
-}
-pre {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
-}
-h1 {
- font-size:20px;
-}
-h2 {
- font-size:18px;
-}
-h3 {
- font-size:16px;
-}
-h4 {
- font-size:15px;
-}
-h5 {
- font-size:14px;
-}
-h6 {
- font-size:13px;
-}
-ul {
- list-style-type:disc;
-}
-code, tt {
- font-family:'DejaVu Sans Mono', monospace;
-}
-:not(h1, h2, h3, h4, h5, h6) > code,
-:not(h1, h2, h3, h4, h5, h6) > tt {
- font-size:14px;
- padding-top:4px;
- margin-top:8px;
- line-height:1.4em;
-}
-dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- padding-top:4px;
-}
-.summary-table dt code {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- vertical-align:top;
- padding-top:4px;
-}
-sup {
- font-size:8px;
-}
-button {
- font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
- font-size: 14px;
-}
-/*
- * Styles for HTML generated by javadoc.
- *
- * These are style classes that are used by the standard doclet to generate HTML documentation.
- */
-
-/*
- * Styles for document title and copyright.
- */
-.clear {
- clear:both;
- height:0;
- overflow:hidden;
-}
-.about-language {
- float:right;
- padding:0 21px 8px 8px;
- font-size:11px;
- margin-top:-9px;
- height:2.9em;
-}
-.legal-copy {
- margin-left:.5em;
-}
-.tab {
- background-color:#0066FF;
- color:#ffffff;
- padding:8px;
- width:5em;
- font-weight:bold;
-}
-/*
- * Styles for navigation bar.
- */
-@media screen {
- .flex-box {
- position:fixed;
- display:flex;
- flex-direction:column;
- height: 100%;
- width: 100%;
- }
- .flex-header {
- flex: 0 0 auto;
- }
- .flex-content {
- flex: 1 1 auto;
- overflow-y: auto;
- }
-}
-.top-nav {
- background-color:#4D7A97;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- min-height:2.8em;
- padding-top:10px;
- overflow:hidden;
- font-size:12px;
-}
-.sub-nav {
- background-color:#dee3e9;
- float:left;
- width:100%;
- overflow:hidden;
- font-size:12px;
-}
-.sub-nav div {
- clear:left;
- float:left;
- padding:0 0 5px 6px;
- text-transform:uppercase;
-}
-.sub-nav .nav-list {
- padding-top:5px;
-}
-ul.nav-list {
- display:block;
- margin:0 25px 0 0;
- padding:0;
-}
-ul.sub-nav-list {
- float:left;
- margin:0 25px 0 0;
- padding:0;
-}
-ul.nav-list li {
- list-style:none;
- float:left;
- padding: 5px 6px;
- text-transform:uppercase;
-}
-.sub-nav .nav-list-search {
- float:right;
- margin:0 0 0 0;
- padding:5px 6px;
- clear:none;
-}
-.nav-list-search label {
- position:relative;
- right:-16px;
-}
-ul.sub-nav-list li {
- list-style:none;
- float:left;
- padding-top:10px;
-}
-.top-nav a:link, .top-nav a:active, .top-nav a:visited {
- color:#FFFFFF;
- text-decoration:none;
- text-transform:uppercase;
-}
-.top-nav a:hover {
- text-decoration:none;
- color:#bb7a2a;
- text-transform:uppercase;
-}
-.nav-bar-cell1-rev {
- background-color:#F8981D;
- color:#253441;
- margin: auto 5px;
-}
-.skip-nav {
- position:absolute;
- top:auto;
- left:-9999px;
- overflow:hidden;
-}
-/*
- * Hide navigation links and search box in print layout
- */
-@media print {
- ul.nav-list, div.sub-nav {
- display:none;
- }
-}
-/*
- * Styles for page header and footer.
- */
-.title {
- color:#2c4557;
- margin:10px 0;
-}
-.sub-title {
- margin:5px 0 0 0;
-}
-.header ul {
- margin:0 0 15px 0;
- padding:0;
-}
-.header ul li, .footer ul li {
- list-style:none;
- font-size:13px;
-}
-/*
- * Styles for headings.
- */
-body.class-declaration-page .summary h2,
-body.class-declaration-page .details h2,
-body.class-use-page h2,
-body.module-declaration-page .block-list h2 {
- font-style: italic;
- padding:0;
- margin:15px 0;
-}
-body.class-declaration-page .summary h3,
-body.class-declaration-page .details h3,
-body.class-declaration-page .summary .inherited-list h2 {
- background-color:#dee3e9;
- border:1px solid #d0d9e0;
- margin:0 0 6px -8px;
- padding:7px 5px;
-}
-/*
- * Styles for page layout containers.
- */
-main {
- clear:both;
- padding:10px 20px;
- position:relative;
-}
-dl.notes > dt {
- font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
- font-size:12px;
- font-weight:bold;
- margin:10px 0 0 0;
- color:#4E4E4E;
-}
-dl.notes > dd {
- margin:5px 10px 10px 0;
- font-size:14px;
- font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
-}
-dl.name-value > dt {
- margin-left:1px;
- font-size:1.1em;
- display:inline;
- font-weight:bold;
-}
-dl.name-value > dd {
- margin:0 0 0 1px;
- font-size:1.1em;
- display:inline;
-}
-/*
- * Styles for lists.
- */
-li.circle {
- list-style:circle;
-}
-ul.horizontal li {
- display:inline;
- font-size:0.9em;
-}
-div.inheritance {
- margin:0;
- padding:0;
-}
-div.inheritance div.inheritance {
- margin-left:2em;
-}
-ul.block-list,
-ul.details-list,
-ul.member-list,
-ul.summary-list {
- margin:10px 0 10px 0;
- padding:0;
-}
-ul.block-list > li,
-ul.details-list > li,
-ul.member-list > li,
-ul.summary-list > li {
- list-style:none;
- margin-bottom:15px;
- line-height:1.4;
-}
-.summary-table dl, .summary-table dl dt, .summary-table dl dd {
- margin-top:0;
- margin-bottom:1px;
-}
-ul.see-list, ul.see-list-long {
- padding-left: 0;
- list-style: none;
-}
-ul.see-list li {
- display: inline;
-}
-ul.see-list li:not(:last-child):after,
-ul.see-list-long li:not(:last-child):after {
- content: ", ";
- white-space: pre-wrap;
-}
-/*
- * Styles for tables.
- */
-.summary-table, .details-table {
- width:100%;
- border-spacing:0;
- border-left:1px solid #EEE;
- border-right:1px solid #EEE;
- border-bottom:1px solid #EEE;
- padding:0;
-}
-.caption {
- position:relative;
- text-align:left;
- background-repeat:no-repeat;
- color:#253441;
- font-weight:bold;
- clear:none;
- overflow:hidden;
- padding:0;
- padding-top:10px;
- padding-left:1px;
- margin:0;
- white-space:pre;
-}
-.caption a:link, .caption a:visited {
- color:#1f389c;
-}
-.caption a:hover,
-.caption a:active {
- color:#FFFFFF;
-}
-.caption span {
- white-space:nowrap;
- padding-top:5px;
- padding-left:12px;
- padding-right:12px;
- padding-bottom:7px;
- display:inline-block;
- float:left;
- background-color:#F8981D;
- border: none;
- height:16px;
-}
-div.table-tabs {
- padding:10px 0 0 1px;
- margin:0;
-}
-div.table-tabs > button {
- border: none;
- cursor: pointer;
- padding: 5px 12px 7px 12px;
- font-weight: bold;
- margin-right: 3px;
-}
-div.table-tabs > button.active-table-tab {
- background: #F8981D;
- color: #253441;
-}
-div.table-tabs > button.table-tab {
- background: #4D7A97;
- color: #FFFFFF;
-}
-.two-column-summary {
- display: grid;
- grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
-}
-.three-column-summary {
- display: grid;
- grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, auto);
-}
-.four-column-summary {
- display: grid;
- grid-template-columns: minmax(10%, max-content) minmax(10%, max-content) minmax(10%, max-content) minmax(10%, auto);
-}
-@media screen and (max-width: 600px) {
- .two-column-summary {
- display: grid;
- grid-template-columns: 1fr;
- }
-}
-@media screen and (max-width: 800px) {
- .three-column-summary {
- display: grid;
- grid-template-columns: minmax(10%, max-content) minmax(25%, auto);
- }
- .three-column-summary .col-last {
- grid-column-end: span 2;
- }
-}
-@media screen and (max-width: 1000px) {
- .four-column-summary {
- display: grid;
- grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
- }
-}
-.summary-table > div, .details-table > div {
- text-align:left;
- padding: 8px 3px 3px 7px;
-}
-.col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name {
- vertical-align:top;
- padding-right:0;
- padding-top:8px;
- padding-bottom:3px;
-}
-.table-header {
- background:#dee3e9;
- font-weight: bold;
-}
-.col-first, .col-first {
- font-size:13px;
-}
-.col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last {
- font-size:13px;
-}
-.col-first, .col-second, .col-constructor-name {
- vertical-align:top;
- overflow: auto;
-}
-.col-last {
- white-space:normal;
-}
-.col-first a:link, .col-first a:visited,
-.col-second a:link, .col-second a:visited,
-.col-first a:link, .col-first a:visited,
-.col-second a:link, .col-second a:visited,
-.col-constructor-name a:link, .col-constructor-name a:visited,
-.col-summary-item-name a:link, .col-summary-item-name a:visited,
-.constant-values-container a:link, .constant-values-container a:visited,
-.all-classes-container a:link, .all-classes-container a:visited,
-.all-packages-container a:link, .all-packages-container a:visited {
- font-weight:bold;
-}
-.table-sub-heading-color {
- background-color:#EEEEFF;
-}
-.even-row-color, .even-row-color .table-header {
- background-color:#FFFFFF;
-}
-.odd-row-color, .odd-row-color .table-header {
- background-color:#EEEEEF;
-}
-/*
- * Styles for contents.
- */
-.deprecated-content {
- margin:0;
- padding:10px 0;
-}
-div.block {
- font-size:14px;
- font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
-}
-.col-last div {
- padding-top:0;
-}
-.col-last a {
- padding-bottom:3px;
-}
-.module-signature,
-.package-signature,
-.type-signature,
-.member-signature {
- font-family:'DejaVu Sans Mono', monospace;
- font-size:14px;
- margin:14px 0;
- white-space: pre-wrap;
-}
-.module-signature,
-.package-signature,
-.type-signature {
- margin-top: 0;
-}
-.member-signature .type-parameters-long,
-.member-signature .parameters,
-.member-signature .exceptions {
- display: inline-block;
- vertical-align: top;
- white-space: pre;
-}
-.member-signature .type-parameters {
- white-space: normal;
-}
-/*
- * Styles for formatting effect.
- */
-.source-line-no {
- color:green;
- padding:0 30px 0 0;
-}
-h1.hidden {
- visibility:hidden;
- overflow:hidden;
- font-size:10px;
-}
-.block {
- display:block;
- margin:0 10px 5px 0;
- color:#474747;
-}
-.deprecated-label, .descfrm-type-label, .implementation-label, .member-name-label, .member-name-link,
-.module-label-in-package, .module-label-in-type, .override-specify-label, .package-label-in-type,
-.package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label {
- font-weight:bold;
-}
-.deprecation-comment, .help-footnote, .preview-comment {
- font-style:italic;
-}
-.deprecation-block {
- font-size:14px;
- font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
- border-style:solid;
- border-width:thin;
- border-radius:10px;
- padding:10px;
- margin-bottom:10px;
- margin-right:10px;
- display:inline-block;
-}
-.preview-block {
- font-size:14px;
- font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
- border-style:solid;
- border-width:thin;
- border-radius:10px;
- padding:10px;
- margin-bottom:10px;
- margin-right:10px;
- display:inline-block;
-}
-div.block div.deprecation-comment {
- font-style:normal;
-}
-/*
- * Styles specific to HTML5 elements.
- */
-main, nav, header, footer, section {
- display:block;
-}
-/*
- * Styles for javadoc search.
- */
-.ui-autocomplete-category {
- font-weight:bold;
- font-size:15px;
- padding:7px 0 7px 3px;
- background-color:#4D7A97;
- color:#FFFFFF;
-}
-.result-item {
- font-size:13px;
-}
-.ui-autocomplete {
- max-height:85%;
- max-width:65%;
- overflow-y:scroll;
- overflow-x:scroll;
- white-space:nowrap;
- box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
-}
-ul.ui-autocomplete {
- position:fixed;
- z-index:999999;
- background-color: #FFFFFF;
-}
-ul.ui-autocomplete li {
- float:left;
- clear:both;
- width:100%;
-}
-.result-highlight {
- font-weight:bold;
-}
-.ui-autocomplete .result-item {
- font-size: inherit;
-}
-#search-input {
- background-image:url('resources/glass.png');
- background-size:13px;
- background-repeat:no-repeat;
- background-position:2px 3px;
- padding-left:20px;
- position:relative;
- right:-18px;
- width:400px;
-}
-#reset-button {
- background-color: rgb(255,255,255);
- background-image:url('resources/x.png');
- background-position:center;
- background-repeat:no-repeat;
- background-size:12px;
- border:0 none;
- width:16px;
- height:16px;
- position:relative;
- left:-4px;
- top:-4px;
- font-size:0px;
-}
-.watermark {
- color:#545454;
-}
-.search-tag-desc-result {
- font-style:italic;
- font-size:11px;
-}
-.search-tag-holder-result {
- font-style:italic;
- font-size:12px;
-}
-.search-tag-result:target {
- background-color:yellow;
-}
-.module-graph span {
- display:none;
- position:absolute;
-}
-.module-graph:hover span {
- display:block;
- margin: -100px 0 0 100px;
- z-index: 1;
-}
-.inherited-list {
- margin: 10px 0 10px 0;
-}
-section.class-description {
- line-height: 1.4;
-}
-.summary section[class$="-summary"], .details section[class$="-details"],
-.class-uses .detail, .serialized-class-details {
- padding: 0px 20px 5px 10px;
- border: 1px solid #ededed;
- background-color: #f8f8f8;
-}
-.inherited-list, section[class$="-details"] .detail {
- padding:0 0 5px 8px;
- background-color:#ffffff;
- border:none;
-}
-.vertical-separator {
- padding: 0 5px;
-}
-ul.help-section-list {
- margin: 0;
-}
-ul.help-subtoc > li {
- display: inline-block;
- padding-right: 5px;
- font-size: smaller;
-}
-ul.help-subtoc > li::before {
- content: "\2022" ;
- padding-right:2px;
-}
-span.help-note {
- font-style: italic;
-}
-/*
- * Indicator icon for external links.
- */
-main a[href*="://"]::after {
- content:"";
- display:inline-block;
- background-image:url('data:image/svg+xml; utf8, \
- \
- \
- ');
- background-size:100% 100%;
- width:7px;
- height:7px;
- margin-left:2px;
- margin-bottom:4px;
-}
-main a[href*="://"]:hover::after,
-main a[href*="://"]:focus::after {
- background-image:url('data:image/svg+xml; utf8, \
- \
- \
- ');
-}
-
-/*
- * Styles for user-provided tables.
- *
- * borderless:
- * No borders, vertical margins, styled caption.
- * This style is provided for use with existing doc comments.
- * In general, borderless tables should not be used for layout purposes.
- *
- * plain:
- * Plain borders around table and cells, vertical margins, styled caption.
- * Best for small tables or for complex tables for tables with cells that span
- * rows and columns, when the "striped" style does not work well.
- *
- * striped:
- * Borders around the table and vertical borders between cells, striped rows,
- * vertical margins, styled caption.
- * Best for tables that have a header row, and a body containing a series of simple rows.
- */
-
-table.borderless,
-table.plain,
-table.striped {
- margin-top: 10px;
- margin-bottom: 10px;
-}
-table.borderless > caption,
-table.plain > caption,
-table.striped > caption {
- font-weight: bold;
- font-size: smaller;
-}
-table.borderless th, table.borderless td,
-table.plain th, table.plain td,
-table.striped th, table.striped td {
- padding: 2px 5px;
-}
-table.borderless,
-table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th,
-table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td {
- border: none;
-}
-table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr {
- background-color: transparent;
-}
-table.plain {
- border-collapse: collapse;
- border: 1px solid black;
-}
-table.plain > thead > tr, table.plain > tbody tr, table.plain > tr {
- background-color: transparent;
-}
-table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th,
-table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td {
- border: 1px solid black;
-}
-table.striped {
- border-collapse: collapse;
- border: 1px solid black;
-}
-table.striped > thead {
- background-color: #E3E3E3;
-}
-table.striped > thead > tr > th, table.striped > thead > tr > td {
- border: 1px solid black;
-}
-table.striped > tbody > tr:nth-child(even) {
- background-color: #EEE
-}
-table.striped > tbody > tr:nth-child(odd) {
- background-color: #FFF
-}
-table.striped > tbody > tr > th, table.striped > tbody > tr > td {
- border-left: 1px solid black;
- border-right: 1px solid black;
-}
-table.striped > tbody > tr > th {
- font-weight: normal;
-}
-/**
- * Tweak font sizes and paddings for small screens.
- */
-@media screen and (max-width: 1050px) {
- #search-input {
- width: 300px;
- }
-}
-@media screen and (max-width: 800px) {
- #search-input {
- width: 200px;
- }
- .top-nav,
- .bottom-nav {
- font-size: 11px;
- padding-top: 6px;
- }
- .sub-nav {
- font-size: 11px;
- }
- .about-language {
- padding-right: 16px;
- }
- ul.nav-list li,
- .sub-nav .nav-list-search {
- padding: 6px;
- }
- ul.sub-nav-list li {
- padding-top: 5px;
- }
- main {
- padding: 10px;
- }
- .summary section[class$="-summary"], .details section[class$="-details"],
- .class-uses .detail, .serialized-class-details {
- padding: 0 8px 5px 8px;
- }
- body {
- -webkit-text-size-adjust: none;
- }
-}
-@media screen and (max-width: 500px) {
- #search-input {
- width: 150px;
- }
- .top-nav,
- .bottom-nav {
- font-size: 10px;
- }
- .sub-nav {
- font-size: 10px;
- }
- .about-language {
- font-size: 10px;
- padding-right: 12px;
- }
-}
diff --git a/website/static/apidocs/javadoc/tag-search-index.js b/website/static/apidocs/javadoc/tag-search-index.js
deleted file mode 100644
index bf10aaf6d1..0000000000
--- a/website/static/apidocs/javadoc/tag-search-index.js
+++ /dev/null
@@ -1 +0,0 @@
-tagSearchIndex = [{"l":"Constant Field Values","h":"","u":"constant-values.html"},{"l":"Serialized Form","h":"","u":"serialized-form.html"}];updateSearchResults();
\ No newline at end of file
diff --git a/website/static/apidocs/javadoc/type-search-index.js b/website/static/apidocs/javadoc/type-search-index.js
deleted file mode 100644
index 5d6b35b811..0000000000
--- a/website/static/apidocs/javadoc/type-search-index.js
+++ /dev/null
@@ -1 +0,0 @@
-typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"io.openlineage.client.transports","l":"ApiKeyTokenProvider"},{"p":"io.openlineage.client","l":"OpenLineage.BaseEvent"},{"p":"io.openlineage.server","l":"OpenLineage.BaseEvent"},{"p":"io.openlineage.client","l":"OpenLineage.BaseFacet"},{"p":"io.openlineage.server","l":"OpenLineage.BaseFacet"},{"p":"io.openlineage.client.transports","l":"HttpTransport.Builder"},{"p":"io.openlineage.client","l":"OpenLineage.Builder"},{"p":"io.openlineage.server","l":"OpenLineage.Builder"},{"p":"io.openlineage.client","l":"OpenLineageClient.Builder"},{"p":"io.openlineage.client.circuitBreaker","l":"CircuitBreaker"},{"p":"io.openlineage.client.circuitBreaker","l":"CircuitBreakerBuilder"},{"p":"io.openlineage.client.circuitBreaker","l":"CircuitBreakerConfig"},{"p":"io.openlineage.client.circuitBreaker","l":"CircuitBreakerConfigTypeIdResolver"},{"p":"io.openlineage.client.circuitBreaker","l":"CircuitBreakerFactory"},{"p":"io.openlineage.client.circuitBreaker","l":"CircuitBreakerResolver"},{"p":"io.openlineage.client.circuitBreaker","l":"CircuitBreakerState"},{"p":"io.openlineage.client","l":"Clients"},{"p":"io.openlineage.client","l":"OpenLineage.ColumnLineageDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.ColumnLineageDatasetFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.ColumnLineageDatasetFacetFields"},{"p":"io.openlineage.client","l":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditional"},{"p":"io.openlineage.client","l":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFields"},{"p":"io.openlineage.client","l":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformations"},{"p":"io.openlineage.client","l":"OpenLineage.ColumnLineageDatasetFacetFieldsAdditionalInputFieldsTransformationsBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.ColumnLineageDatasetFacetFieldsBuilder"},{"p":"io.openlineage.client.metrics","l":"CompositeMeterRegistryFactory"},{"p":"io.openlineage.client.transports","l":"HttpConfig.Compression"},{"p":"io.openlineage.client","l":"ConfigPathProvider"},{"p":"io.openlineage.client.transports","l":"ConsoleConfig"},{"p":"io.openlineage.client.transports","l":"ConsoleTransport"},{"p":"io.openlineage.client.transports","l":"ConsoleTransportBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.DataQualityAssertionsDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.DataQualityAssertionsDatasetFacetAssertions"},{"p":"io.openlineage.client","l":"OpenLineage.DataQualityAssertionsDatasetFacetAssertionsBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.DataQualityAssertionsDatasetFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.DataQualityMetricsInputDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.DataQualityMetricsInputDatasetFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetrics"},{"p":"io.openlineage.client","l":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditional"},{"p":"io.openlineage.client","l":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantiles"},{"p":"io.openlineage.client","l":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsAdditionalQuantilesBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.DataQualityMetricsInputDatasetFacetColumnMetricsBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.Dataset"},{"p":"io.openlineage.server","l":"OpenLineage.Dataset"},{"p":"io.openlineage.client.dataset","l":"DatasetConfig"},{"p":"io.openlineage.client","l":"OpenLineage.DatasetEvent"},{"p":"io.openlineage.server","l":"OpenLineage.DatasetEvent"},{"p":"io.openlineage.client","l":"OpenLineage.DatasetEventBuilder"},{"p":"io.openlineage.server","l":"OpenLineage.DatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.DatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.DatasetFacets"},{"p":"io.openlineage.server","l":"OpenLineage.DatasetFacets"},{"p":"io.openlineage.client","l":"OpenLineage.DatasetFacetsBuilder"},{"p":"io.openlineage.client.utils","l":"DatasetIdentifier"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"DatasetNamespaceCombinedResolver"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"DatasetNamespaceResolver"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"DatasetNamespaceResolverBuilder"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"DatasetNamespaceResolverConfig"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"DatasetNamespaceResolverConfigTypeIdResolver"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"DatasetNamespaceResolverLoader"},{"p":"io.openlineage.client","l":"OpenLineage.DatasetVersionDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.DatasetVersionDatasetFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.DatasourceDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.DatasourceDatasetFacetBuilder"},{"p":"io.openlineage.client","l":"DefaultConfigPathProvider"},{"p":"io.openlineage.client","l":"OpenLineage.DefaultDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.DefaultInputDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.DefaultJobFacet"},{"p":"io.openlineage.client","l":"OpenLineage.DefaultOutputDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.DefaultRunFacet"},{"p":"io.openlineage.client.utils.jdbc","l":"DerbyJdbcExtractor"},{"p":"io.openlineage.client","l":"OpenLineageClientUtils.DisabledFacetsMixin"},{"p":"io.openlineage.client","l":"OpenLineage.DocumentationDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.DocumentationDatasetFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.DocumentationJobFacet"},{"p":"io.openlineage.client","l":"OpenLineage.DocumentationJobFacetBuilder"},{"p":"io.openlineage.client","l":"Environment"},{"p":"io.openlineage.client","l":"OpenLineage.ErrorMessageRunFacet"},{"p":"io.openlineage.client","l":"OpenLineage.ErrorMessageRunFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.RunEvent.EventType"},{"p":"io.openlineage.server","l":"OpenLineage.RunEvent.EventType"},{"p":"io.openlineage.client.circuitBreaker","l":"ExecutorCircuitBreaker"},{"p":"io.openlineage.client","l":"OpenLineage.ExternalQueryRunFacet"},{"p":"io.openlineage.client","l":"OpenLineage.ExternalQueryRunFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.ExtractionErrorRunFacet"},{"p":"io.openlineage.client","l":"OpenLineage.ExtractionErrorRunFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.ExtractionErrorRunFacetErrors"},{"p":"io.openlineage.client","l":"OpenLineage.ExtractionErrorRunFacetErrorsBuilder"},{"p":"io.openlineage.client.transports","l":"FacetsConfig"},{"p":"io.openlineage.client.transports","l":"FileConfig"},{"p":"io.openlineage.client.utils.filesystem","l":"FilesystemDatasetExtractor"},{"p":"io.openlineage.client.utils.filesystem","l":"FilesystemDatasetUtils"},{"p":"io.openlineage.client.transports","l":"FileTransport"},{"p":"io.openlineage.client.transports","l":"FileTransportBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.GcpCommonJobFacet"},{"p":"io.openlineage.client","l":"OpenLineage.GcpCommonJobFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.GcpCommonJobFacetOrigin"},{"p":"io.openlineage.client","l":"OpenLineage.GcpCommonJobFacetOriginBuilder"},{"p":"io.openlineage.client.utils.filesystem","l":"GenericFilesystemDatasetExtractor"},{"p":"io.openlineage.client.utils.jdbc","l":"GenericJdbcExtractor"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"HostListNamespaceResolver"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"HostListNamespaceResolverBuilder"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"HostListNamespaceResolverConfig"},{"p":"io.openlineage.client.transports","l":"HttpConfig"},{"p":"io.openlineage.client.transports","l":"HttpTransport"},{"p":"io.openlineage.client.transports","l":"HttpTransportBuilder"},{"p":"io.openlineage.client.transports","l":"HttpTransportResponseException"},{"p":"io.openlineage.client","l":"OpenLineage.InputDataset"},{"p":"io.openlineage.server","l":"OpenLineage.InputDataset"},{"p":"io.openlineage.client","l":"OpenLineage.InputDatasetBuilder"},{"p":"io.openlineage.server","l":"OpenLineage.InputDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.InputDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.InputDatasetInputFacets"},{"p":"io.openlineage.server","l":"OpenLineage.InputDatasetInputFacets"},{"p":"io.openlineage.client","l":"OpenLineage.InputDatasetInputFacetsBuilder"},{"p":"io.openlineage.client.circuitBreaker","l":"JavaRuntimeCircuitBreaker"},{"p":"io.openlineage.client.circuitBreaker","l":"JavaRuntimeCircuitBreakerBuilder"},{"p":"io.openlineage.client.circuitBreaker","l":"JavaRuntimeCircuitBreakerConfig"},{"p":"io.openlineage.client.utils.jdbc","l":"JdbcDatasetUtils"},{"p":"io.openlineage.client.utils.jdbc","l":"JdbcExtractor"},{"p":"io.openlineage.client.utils.jdbc","l":"JdbcLocation"},{"p":"io.openlineage.client","l":"OpenLineage.Job"},{"p":"io.openlineage.server","l":"OpenLineage.Job"},{"p":"io.openlineage.client","l":"OpenLineage.JobBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.JobEvent"},{"p":"io.openlineage.server","l":"OpenLineage.JobEvent"},{"p":"io.openlineage.client","l":"OpenLineage.JobEventBuilder"},{"p":"io.openlineage.server","l":"OpenLineage.JobFacet"},{"p":"io.openlineage.client","l":"OpenLineage.JobFacet"},{"p":"io.openlineage.client","l":"OpenLineage.JobFacets"},{"p":"io.openlineage.server","l":"OpenLineage.JobFacets"},{"p":"io.openlineage.client","l":"OpenLineage.JobFacetsBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.JobTypeJobFacet"},{"p":"io.openlineage.client","l":"OpenLineage.JobTypeJobFacetBuilder"},{"p":"io.openlineage.client.transports","l":"KafkaConfig"},{"p":"io.openlineage.client.transports","l":"KafkaTransport"},{"p":"io.openlineage.client.transports","l":"KafkaTransportBuilder"},{"p":"io.openlineage.client.transports","l":"KinesisConfig"},{"p":"io.openlineage.client.transports","l":"KinesisTransport"},{"p":"io.openlineage.client.transports","l":"KinesisTransportBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.LifecycleStateChangeDatasetFacet.LifecycleStateChange"},{"p":"io.openlineage.client","l":"OpenLineage.LifecycleStateChangeDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.LifecycleStateChangeDatasetFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifier"},{"p":"io.openlineage.client","l":"OpenLineage.LifecycleStateChangeDatasetFacetPreviousIdentifierBuilder"},{"p":"io.openlineage.client.utils.filesystem","l":"LocalFilesystemDatasetExtractor"},{"p":"io.openlineage.client","l":"MergeConfig"},{"p":"io.openlineage.client.metrics","l":"MeterRegistryFactory"},{"p":"io.openlineage.client.metrics","l":"MicrometerProvider"},{"p":"io.openlineage.client.utils.jdbc","l":"MySqlJdbcExtractor"},{"p":"io.openlineage.client","l":"OpenLineage.NominalTimeRunFacet"},{"p":"io.openlineage.client","l":"OpenLineage.NominalTimeRunFacetBuilder"},{"p":"io.openlineage.client.circuitBreaker","l":"NoOpCircuitBreaker"},{"p":"io.openlineage.client.circuitBreaker","l":"NoOpCircuitBreakerBuilder"},{"p":"io.openlineage.client.transports","l":"NoopTransport"},{"p":"io.openlineage.client.utils.filesystem","l":"ObjectStorageDatasetExtractor"},{"p":"io.openlineage.client","l":"OpenLineage"},{"p":"io.openlineage.server","l":"OpenLineage"},{"p":"io.openlineage.client","l":"OpenLineageClient"},{"p":"io.openlineage.client","l":"OpenLineageClientException"},{"p":"io.openlineage.client","l":"OpenLineageClientUtils"},{"p":"io.openlineage.client","l":"OpenLineageConfig"},{"p":"io.openlineage.client.utils.jdbc","l":"OracleJdbcExtractor"},{"p":"io.openlineage.client","l":"OpenLineage.OutputDataset"},{"p":"io.openlineage.server","l":"OpenLineage.OutputDataset"},{"p":"io.openlineage.client","l":"OpenLineage.OutputDatasetBuilder"},{"p":"io.openlineage.server","l":"OpenLineage.OutputDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.OutputDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.OutputDatasetOutputFacets"},{"p":"io.openlineage.server","l":"OpenLineage.OutputDatasetOutputFacets"},{"p":"io.openlineage.client","l":"OpenLineage.OutputDatasetOutputFacetsBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.OutputStatisticsOutputDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.OutputStatisticsOutputDatasetFacetBuilder"},{"p":"io.openlineage.client.utils.jdbc","l":"OverridingJdbcExtractor"},{"p":"io.openlineage.client","l":"OpenLineage.OwnershipDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.OwnershipDatasetFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.OwnershipDatasetFacetOwners"},{"p":"io.openlineage.client","l":"OpenLineage.OwnershipDatasetFacetOwnersBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.OwnershipJobFacet"},{"p":"io.openlineage.client","l":"OpenLineage.OwnershipJobFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.OwnershipJobFacetOwners"},{"p":"io.openlineage.client","l":"OpenLineage.OwnershipJobFacetOwnersBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.ParentRunFacet"},{"p":"io.openlineage.client","l":"OpenLineage.ParentRunFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.ParentRunFacetJob"},{"p":"io.openlineage.client","l":"OpenLineage.ParentRunFacetJobBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.ParentRunFacetRun"},{"p":"io.openlineage.client","l":"OpenLineage.ParentRunFacetRunBuilder"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"PatternMatchingGroupNamespaceResolver"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"PatternMatchingGroupNamespaceResolverBuilder"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"PatternMatchingGroupNamespaceResolverConfig"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"PatternNamespaceResolver"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"PatternNamespaceResolverBuilder"},{"p":"io.openlineage.client.dataset.namespace.resolver","l":"PatternNamespaceResolverConfig"},{"p":"io.openlineage.client.utils.jdbc","l":"PostgresJdbcExtractor"},{"p":"io.openlineage.client","l":"OpenLineage.ProcessingEngineRunFacet"},{"p":"io.openlineage.client","l":"OpenLineage.ProcessingEngineRunFacetBuilder"},{"p":"io.openlineage.client.utils","l":"ReflectionUtils"},{"p":"io.openlineage.client","l":"OpenLineage.Run"},{"p":"io.openlineage.server","l":"OpenLineage.Run"},{"p":"io.openlineage.client","l":"OpenLineage.RunBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.RunEvent"},{"p":"io.openlineage.server","l":"OpenLineage.RunEvent"},{"p":"io.openlineage.client","l":"OpenLineage.RunEventBuilder"},{"p":"io.openlineage.server","l":"OpenLineage.RunFacet"},{"p":"io.openlineage.client","l":"OpenLineage.RunFacet"},{"p":"io.openlineage.client","l":"OpenLineage.RunFacets"},{"p":"io.openlineage.server","l":"OpenLineage.RunFacets"},{"p":"io.openlineage.client","l":"OpenLineage.RunFacetsBuilder"},{"p":"io.openlineage.client.utils","l":"RuntimeUtils"},{"p":"io.openlineage.client","l":"OpenLineage.SchemaDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.SchemaDatasetFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.SchemaDatasetFacetFields"},{"p":"io.openlineage.client","l":"OpenLineage.SchemaDatasetFacetFieldsBuilder"},{"p":"io.openlineage.client.circuitBreaker","l":"SimpleMemoryCircuitBreaker"},{"p":"io.openlineage.client.circuitBreaker","l":"SimpleMemoryCircuitBreakerBuilder"},{"p":"io.openlineage.client.circuitBreaker","l":"SimpleMemoryCircuitBreakerConfig"},{"p":"io.openlineage.client.metrics","l":"SimpleMeterRegistryFactory"},{"p":"io.openlineage.client","l":"OpenLineage.SourceCodeJobFacet"},{"p":"io.openlineage.client","l":"OpenLineage.SourceCodeJobFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.SourceCodeLocationJobFacet"},{"p":"io.openlineage.client","l":"OpenLineage.SourceCodeLocationJobFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.SQLJobFacet"},{"p":"io.openlineage.client","l":"OpenLineage.SQLJobFacetBuilder"},{"p":"io.openlineage.client.utils.jdbc","l":"SqlServerJdbcExtractor"},{"p":"io.openlineage.client.circuitBreaker","l":"StaticCircuitBreaker"},{"p":"io.openlineage.client.circuitBreaker","l":"StaticCircuitBreakerBuilder"},{"p":"io.openlineage.client.circuitBreaker","l":"StaticCircuitBreakerConfig"},{"p":"io.openlineage.client","l":"OpenLineage.StaticDataset"},{"p":"io.openlineage.server","l":"OpenLineage.StaticDataset"},{"p":"io.openlineage.client","l":"OpenLineage.StaticDatasetBuilder"},{"p":"io.openlineage.client.metrics","l":"StatsDMeterRegistryFactory"},{"p":"io.openlineage.client","l":"OpenLineage.StorageDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.StorageDatasetFacetBuilder"},{"p":"io.openlineage.client.utils","l":"DatasetIdentifier.Symlink"},{"p":"io.openlineage.client","l":"OpenLineage.SymlinksDatasetFacet"},{"p":"io.openlineage.client","l":"OpenLineage.SymlinksDatasetFacetBuilder"},{"p":"io.openlineage.client","l":"OpenLineage.SymlinksDatasetFacetIdentifiers"},{"p":"io.openlineage.client","l":"OpenLineage.SymlinksDatasetFacetIdentifiersBuilder"},{"p":"io.openlineage.client.utils","l":"DatasetIdentifier.SymlinkType"},{"p":"io.openlineage.client.utils.jdbc","l":"TeradataJdbcExtractor"},{"p":"io.openlineage.client.transports","l":"TokenProvider"},{"p":"io.openlineage.client.transports","l":"TokenProviderTypeIdResolver"},{"p":"io.openlineage.client.transports","l":"Transport"},{"p":"io.openlineage.client.transports","l":"TransportBuilder"},{"p":"io.openlineage.client.transports","l":"TransportConfig"},{"p":"io.openlineage.client.transports","l":"TransportConfigTypeIdResolver"},{"p":"io.openlineage.client.transports","l":"TransportFactory"},{"p":"io.openlineage.client.transports","l":"TransportResolver"},{"p":"io.openlineage.client.utils","l":"UUIDUtils"}];updateSearchResults();
\ No newline at end of file
diff --git a/website/static/apidocs/openapi/index.html b/website/static/apidocs/openapi/index.html
deleted file mode 100644
index 8fd69292ab..0000000000
--- a/website/static/apidocs/openapi/index.html
+++ /dev/null
@@ -1,2221 +0,0 @@
-
-
-
-
-
- OpenLineage API Docs
-
-
-
-
-
-
-
-
-
- OpenLineage (2-0-2) Download OpenAPI specification:Download
OpenLineage is an open source lineage and metadata collection API for the data ecosystem.
-
Send an event related to the state of a run Updates a run state for a job.
-
Request Body schema: application/json
One of RunEvent DatasetEvent JobEvent
eventTime required
string <date-time>
the time the event occurred at
-
producer required
string <uri>
URI identifying the producer of this metadata. For example this could be a git url with a given tag or sha
-
schemaURL required
eventType string
Enum: "START" "RUNNING" "COMPLETE" "ABORT" "FAIL" "OTHER"
the current transition of the run state. It is required to issue 1 START event and 1 of [ COMPLETE, ABORT, FAIL ] event per run. Additional events with OTHER eventType can be added to the same run. For example to send additional metadata after the run is complete
-
run required
job required
inputs Array of objects (InputDataset)
The set of input datasets.
-
outputs Array of objects (OutputDataset)
The set of output datasets.
-
Request samples Content type application/json
Example RunEvent DatasetEvent JobEvent RunEvent Copy
Expand all Collapse all { "eventTime" : "2019-08-24T14:15:22Z" ,
"eventType" : "START|RUNNING|COMPLETE|ABORT|FAIL|OTHER" ,
"inputs" :
[ { "namespace" : "my-datasource-namespace" ,
"name" : "instance.schema.table" ,
} ] , "outputs" :
[ { "namespace" : "my-datasource-namespace" ,
"name" : "instance.schema.table" ,
} ] }
-
-
-
-
\ No newline at end of file
diff --git a/website/static/javadoc/index.html b/website/static/javadoc/index.html
deleted file mode 100644
index c57a105b92..0000000000
--- a/website/static/javadoc/index.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/website/static/openapi/index.html b/website/static/openapi/index.html
deleted file mode 100644
index 6ce36d2922..0000000000
--- a/website/static/openapi/index.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
HttpConfig
instead